Skip to content

Commit

Permalink
up version
Browse files Browse the repository at this point in the history
Signed-off-by: fgl27 <fglfgl27@gmail.com>
  • Loading branch information
fgl27 committed Feb 20, 2022
1 parent 522fbc0 commit 8625a67
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
10 changes: 9 additions & 1 deletion app/general/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,19 @@
//Spacing for release maker not trow errors from jshint
var version = {
VersionBase: '3.0',
publishVersionCode: 329,//Always update (+1 to current value) Main_version_java after update publishVersionCode or a major update of the apk is released
publishVersionCode: 330,//Always update (+1 to current value) Main_version_java after update publishVersionCode or a major update of the apk is released
ApkUrl: 'https://github.com/fgl27/SmartTwitchTV/releases/download/329/SmartTV_twitch_3_0_329.apk',
WebVersion: 'December 04 2021',
WebTag: 605,//Always update (+1 to current value) Main_version_web after update Main_minversion or a major update of the web part of the app
changelog: [
{
title: "Apk Version 3.0.330",
changes: [
"Prepare the app for API changes",
"Twitch is about to shutdown some of they API, because of that the app sometimes doesn't load content, the next few days the app will receive updates to deal with the shutdown, make sure you are on latest APK version to not have problem",
"Update app dependencies to latest version included the player"
]
},
{
title: "Web Version December 04 2021",
changes: [
Expand Down
16 changes: 8 additions & 8 deletions app/specific/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -2187,14 +2187,14 @@ function Settings_DialogShowNotification(click) {
};

//TODO remove comments when apk is updated
//if (!Main_IsOn_OSInterface || OSInterface_getSDK() < 30) {
obj.live_notification_background = {
defaultValue: Settings_value.live_notification_background.defaultValue,
values: Settings_value.live_notification_background.values,
title: STR_NOW_BACKGROUND,
summary: STR_NOW_BACKGROUND_SUMMARY
};
// }
if (!Main_IsOn_OSInterface || OSInterface_getSDK() < 30) {
obj.live_notification_background = {
defaultValue: Settings_value.live_notification_background.defaultValue,
values: Settings_value.live_notification_background.values,
title: STR_NOW_BACKGROUND,
summary: STR_NOW_BACKGROUND_SUMMARY
};
}

Settings_DialogShow(obj, STR_NOTIFICATION_OPT, click);
}
Expand Down

0 comments on commit 8625a67

Please sign in to comment.