Skip to content

Commit

Permalink
Release: Nightly 5.2.9
Browse files Browse the repository at this point in the history
- Fix android vidstream inject script
  • Loading branch information
amarullz committed Jul 16, 2024
1 parent 17723c7 commit 26d5ffe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 22 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
minSdk 22
targetSdk 34
versionCode 524
versionName "5.2.8-Nightly"
versionName "5.2.9-Nightly"


// Automatic Build Version
Expand Down
19 changes: 1 addition & 18 deletions app/src/main/assets/inject/view_player.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,11 @@
}
});
function jwgetdata(){
// console.log("ATVLOG jwpget data");
var med=null;
try{
med=__JWP.getConfig().playlist[0];
}catch(ee){}
if (med){
// console.log("ATVLOG jwpget has data");
if (med && med.sources && med.sources[0] && med.sources[0].file){
var dat={
result:{
sources:[
Expand All @@ -115,7 +113,6 @@
});
}
window.__JWMEDIA=dat;
// console.log("ATVLOG Got Data: "+JSON.stringify(dat));
$p('mediainfo',dat);
}
else{
Expand Down Expand Up @@ -166,20 +163,6 @@
setTimeout(findjw,200);
}

/*
if (location.hash!='#NOPLAY'){
findjw();
try{
if (!$('player')){
parent.postMessage('player.error','*');
}
}catch(e){}
}
else{
__NOPLAY=true;
console.log("NOPLAY");
}
*/
findjw();
})();
</script>
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "animetv",
"version": "5.2.8",
"version": "5.2.9",
"description": "AnimeTV for Desktop",
"main": "electron/src/animetv.js",
"scripts": {
Expand Down

0 comments on commit 26d5ffe

Please sign in to comment.