Skip to content

Commit

Permalink
fixed #27
Browse files Browse the repository at this point in the history
  • Loading branch information
marcrobledo committed Jun 12, 2022
1 parent ae91860 commit 2418179
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _cache_service_worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ caches.keys().then(function(cacheNames){
});

var PRECACHE_ID='retroarch-playlist-editor';
var PRECACHE_VERSION='2beta2';
var PRECACHE_VERSION='2RC1';
var PRECACHE_URLS=[
'/retroarch-playlist-editor/','/retroarch-playlist-editor/index.html',

Expand Down
4 changes: 2 additions & 2 deletions app/retroarch-playlist-editor.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Retroarch Playlist Editor v20220418 - Marc Robledo 2016-2022 - http://www.marcrobledo.com/license */
/* Retroarch Playlist Editor v20220612 - Marc Robledo 2016-2022 - http://www.marcrobledo.com/license */
/* shortcuts */
function show(e){el(e).style.display='block'}
function hide(e){el(e).style.display='none'}
Expand Down Expand Up @@ -254,7 +254,7 @@ Playlist.prototype.export=function(legacyMode){
if(typeof this[ADDITIONAL_JSON_PROPERTIES_ORDER[i]]!='undefined'){
var val=this[ADDITIONAL_JSON_PROPERTIES_ORDER[i]];
if(typeof val==='string')
val='"'+val+'"';
val='"'+val.replace(/\\/g, '\\\\')+'"';
text+=' "'+ADDITIONAL_JSON_PROPERTIES_ORDER[i]+'": '+val+',\n';
}
}
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<div class="app-rows app-fill">
<div id="topbar">
<header>
<h1><img src="app/assets/favicon128.png" id="icon" /> RetroArch Playlist Editor <small class="hide-for-mobile">2.0 beta2</small></h1>
<h1><img src="app/assets/favicon128.png" id="icon" /> RetroArch Playlist Editor <small class="hide-for-mobile">2.0</small></h1>
<div id="topright">
<h2 class="hide-for-mobile">by <a href="/" tabindex="-1" class="author">Marc Robledo</a></h2>

Expand Down

0 comments on commit 2418179

Please sign in to comment.