Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MOBILE-4616 core: Set Moodle 4.5 release version #4198

Merged
merged 2 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version='1.0' encoding='utf-8'?>
<widget android-versionCode="45000" id="com.moodle.moodlemobile" ios-CFBundleVersion="4.5.0.0" version="4.5.0" versionCode="45000" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<widget android-versionCode="45001" id="com.moodle.moodlemobile" ios-CFBundleVersion="4.5.0.1" version="4.5.0" versionCode="45001" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Moodle</name>
<description>Moodle official app</description>
<author email="[email protected]" href="http://moodle.com">Moodle Mobile team</author>
Expand Down Expand Up @@ -28,7 +28,7 @@
<preference name="UIWebViewBounce" value="false" />
<preference name="DisallowOverscroll" value="true" />
<preference name="prerendered-icon" value="true" />
<preference name="AppendUserAgent" value="MoodleMobile 4.5.0 (45000)" />
<preference name="AppendUserAgent" value="MoodleMobile 4.5.0 (45001)" />
<preference name="BackupWebStorage" value="none" />
<preference name="ScrollEnabled" value="false" />
<preference name="KeyboardDisplayRequiresUserAction" value="false" />
Expand Down
2 changes: 1 addition & 1 deletion moodle.config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"app_id": "com.moodle.moodlemobile",
"appname": "Moodle Mobile",
"versioncode": 45000,
"versioncode": 45001,
"versionname": "4.5.0",
"cache_update_frequency_usually": 420000,
"cache_update_frequency_often": 1200000,
Expand Down
2 changes: 1 addition & 1 deletion src/core/classes/sites/authenticated-site.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class CoreAuthenticatedSite extends CoreUnauthenticatedSite {
'4.2': 2023042400,
'4.3': 2023100900,
'4.4': 2024042200,
'4.5': 2024081600, // @TODO correct the final release date.
'4.5': 2024100700,
};

// Possible cache update frequencies.
Expand Down