1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/moodle_ynh.git synced 2024-09-03 19:46:23 +02:00

Updated to version 3.5.1

This commit is contained in:
anmol26s 2018-09-01 16:36:21 +05:30
parent fdc6814920
commit 7642e9b15f
4 changed files with 16 additions and 8 deletions

View file

@ -1,7 +1,7 @@
# Moodle app for YunoHost # Moodle app for YunoHost
[![Install Moodle with YunoHost](https://install-app.yunohost.org/install-with-yunohost.png)](https://install-app.yunohost.org/?app=Moodle)<br><br> [![Install Moodle with YunoHost](https://install-app.yunohost.org/install-with-yunohost.png)](https://install-app.yunohost.org/?app=Moodle)<br><br>
Version: **3.5.1**
Moodle - the world's open source learning platform Moodle - the world's open source learning platform
Moodle <https://moodle.org> is a learning platform designed to provide Moodle <https://moodle.org> is a learning platform designed to provide

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://download.moodle.org/download.php/stable34/moodle-3.4.2.tgz SOURCE_URL=https://github.com/moodle/moodle/archive/v3.5.1.tar.gz
SOURCE_SUM=1856c045ee52aa97a13ae6c078ee2c270ee966cd80b79cd12f0d2395b592bd8f SOURCE_SUM=ccabd372fcdb253a404428196c1cf0a16529797717b443572250103a29ce1799
SOURCE_SUM_PRG=sha256sum SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR= SOURCE_IN_SUBDIR=

View file

@ -402,8 +402,10 @@ $CFG->admin = 'admin';
// example) in sites where the user theme should override all other theme // example) in sites where the user theme should override all other theme
// settings for accessibility reasons. You can also disable types of themes // settings for accessibility reasons. You can also disable types of themes
// (other than site) by removing them from the array. The default setting is: // (other than site) by removing them from the array. The default setting is:
// $CFG->themeorder = array('course', 'category', 'session', 'user', 'site'); //
// NOTE: course, category, session, user themes still require the // $CFG->themeorder = array('course', 'category', 'session', 'user', 'cohort', 'site');
//
// NOTE: course, category, session, user, cohort themes still require the
// respective settings to be enabled // respective settings to be enabled
// //
// It is possible to add extra themes directory stored outside of $CFG->dirroot. // It is possible to add extra themes directory stored outside of $CFG->dirroot.
@ -416,10 +418,16 @@ $CFG->admin = 'admin';
// Localcachedir is intended for server clusters, it does not have to be shared by cluster nodes. // Localcachedir is intended for server clusters, it does not have to be shared by cluster nodes.
// The directories must not be accessible via web. // The directories must not be accessible via web.
// //
// $CFG->tempdir = '/var/www/moodle/temp'; // Directory MUST BE SHARED by all clsuter nodes. // $CFG->tempdir = '/var/www/moodle/temp'; // Directory MUST BE SHARED by all cluster nodes.
// $CFG->cachedir = '/var/www/moodle/cache'; // Directory MUST BE SHARED by all cluster nodes, locking required. // $CFG->cachedir = '/var/www/moodle/cache'; // Directory MUST BE SHARED by all cluster nodes, locking required.
// $CFG->localcachedir = '/var/local/cache'; // Intended for local node caching. // $CFG->localcachedir = '/var/local/cache'; // Intended for local node caching.
// //
// It is possible to specify a different backup temp directory, use local fast filesystem
// for normal web servers. Server clusters MUST use shared filesystem for backuptempdir!
// The directory must not be accessible via web.
//
// $CFG->backuptempdir = '/var/www/moodle/backuptemp'; // Directory MUST BE SHARED by all cluster nodes.
//
// Some filesystems such as NFS may not support file locking operations. // Some filesystems such as NFS may not support file locking operations.
// Locking resolves race conditions and is strongly recommended for production servers. // Locking resolves race conditions and is strongly recommended for production servers.
// $CFG->preventfilelocking = false; // $CFG->preventfilelocking = false;

View file

@ -6,7 +6,7 @@
"en": "Moodle package for YunoHost application.", "en": "Moodle package for YunoHost application.",
"fr": "Moodle de package dapplication pour YunoHost." "fr": "Moodle de package dapplication pour YunoHost."
}, },
"version": "4.0", "version": "3.5.1",
"url": "https://moodle.org/", "url": "https://moodle.org/",
"license": "free", "license": "free",
"maintainer": { "maintainer": {
@ -14,7 +14,7 @@
"email": "anmol@datamol.org" "email": "anmol@datamol.org"
}, },
"requirements": { "requirements": {
"yunohost": ">= 2.7.2" "yunohost": ">= 3.0"
}, },
"multi_instance": true, "multi_instance": true,
"services": [ "services": [