Skip to content

Commit

Permalink
UP main files
Browse files Browse the repository at this point in the history
Signed-off-by: fgl27 <fglfgl27@gmail.com>
  • Loading branch information
fgl27 committed Jan 16, 2021
1 parent 08f56db commit 67d1227
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion app/specific/Play.js
Original file line number Diff line number Diff line change
Expand Up @@ -1814,7 +1814,7 @@ function Play_PannelEndStart(PlayVodClip, fail_type) { // Called only by JAVA
Play_PlayEndStart(PlayVodClip);
}
},
PlayVodClip === 1 ? 2000 : 0
PlayVodClip === 1 ? 2000 : 0//Allow a delay before check the host, to make sure the server has updated
);
}

Expand Down
2 changes: 1 addition & 1 deletion release/githubio/js/main.js

Large diffs are not rendered by default.

21 changes: 13 additions & 8 deletions release/githubio/js/main_uncompressed.js
Original file line number Diff line number Diff line change
Expand Up @@ -6904,10 +6904,10 @@
var Main_isDebug = false;

var Main_stringVersion = '3.0';
var Main_stringVersion_Min = '.295';
var Main_version_java = 295; //Always update (+1 to current value) Main_version_java after update Main_stringVersion_Min or a major update of the apk is released
var Main_stringVersion_Min = '.296';
var Main_version_java = 296; //Always update (+1 to current value) Main_version_java after update Main_stringVersion_Min or a major update of the apk is released
var Main_minversion = 'January 15 2020';
var Main_version_web = 563; //Always update (+1 to current value) Main_version_web after update Main_minversion or a major update of the web part of the app
var Main_version_web = 564; //Always update (+1 to current value) Main_version_web after update Main_minversion or a major update of the web part of the app
var Main_versionTag = Main_stringVersion + Main_stringVersion_Min + '-' + Main_minversion;

var Main_cursorYAddFocus = -1;
Expand Down Expand Up @@ -7514,7 +7514,7 @@
STR_DIV_LINK + STR_ABOUT_CHANGELOG + '</div><br><br>';

var changelogObj = [{
title: "Apk Version 3.0.295 and Web Version January 15 2020",
title: "Apk Version 3.0.295 to 3.0.296 and Web Version January 15 2020",
changes: [
"Add OLED Burn in protection option to Settings -> Interface customization's, color style, animations and related",
"General performance improves and bug fixes"
Expand Down Expand Up @@ -18569,11 +18569,16 @@
//called by android PlayerActivity
function Play_PannelEndStart(PlayVodClip, fail_type) { // Called only by JAVA

var reason = Play_data.data[1] + ' ' + STR_LIVE + STR_IS_OFFLINE + STR_CHECK_HOST;
if (fail_type === 1) reason = STR_PLAYER_ERROR;
if (fail_type === 2) reason = STR_PLAYER_LAG_ERRO;
//Stop all players to make sure no more end call happen
if (Main_IsOn_OSInterface && fail_type) {

if (fail_type) Play_showWarningDialog(reason, 2000);
OSInterface_stopVideo();
Play_showWarningDialog(
(fail_type === 1) ? STR_PLAYER_ERROR : STR_PLAYER_LAG_ERRO,
2000
);

}

Main_setTimeout(
function() {
Expand Down
2 changes: 1 addition & 1 deletion release/githubio/version/javaversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
295
296
2 changes: 1 addition & 1 deletion release/githubio/version/webversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
563
564

0 comments on commit 67d1227

Please sign in to comment.