Skip to content

Commit

Permalink
Applied fixes after release testing
Browse files Browse the repository at this point in the history
  • Loading branch information
dwilding committed May 29, 2024
1 parent ff399dc commit 102d143
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/icon-normal.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@
</div>
</div>
</div>
<script src="main.js?sha1=aa89325a8f738ab24d1a5206d1f4bf1c6963b39d"></script>
<script src="main.js?sha1=71be5ed03650fa8e66ee8ef3ffddde89db1c4a5f"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion app/icon-notify.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@
</div>
</div>
</div>
<script src="main.js?sha1=aa89325a8f738ab24d1a5206d1f4bf1c6963b39d"></script>
<script src="main.js?sha1=71be5ed03650fa8e66ee8ef3ffddde89db1c4a5f"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@
</div>
</div>
</div>
<script src="main.js?sha1=aa89325a8f738ab24d1a5206d1f4bf1c6963b39d"></script>
<script src="main.js?sha1=71be5ed03650fa8e66ee8ef3ffddde89db1c4a5f"></script>
</body>
</html>
4 changes: 3 additions & 1 deletion app/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,9 @@ async function startApp() {
window.addEventListener("storage", async () => {
document.documentElement.setAttribute("data-theme", localStorage.getItem("ui.theme"));
setAchievements();
setConfigureSave();
if (document.documentElement.getAttribute("data-save") == "service") {
setConfigureSave();
}
if (!hasUserID && localStorage.getItem("user.userID") !== null) {
hasUserID = true;
await verifyUserAndAppendMessages();
Expand Down
4 changes: 2 additions & 2 deletions dev_create_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ sed -i 's/data-registration=\"long\"/data-registration=\"short\"/' static/help.h
sed -i 's/data-vibe=\"\"/data-vibe=\"👽 Send to your inbox…\"/' static/help.html
sed -i 's/data-save=\"browser\"/data-save=\"service\"/' static/help.html static/index.html static/icon-*.html

zip -r frogtab_local_v100.zip . -x .gitignore
mv frogtab_local_v100.zip ..
zip -r frogtab_local_v1xx.zip . -x .gitignore
mv frogtab_local_v1xx.zip ..

cd ..

0 comments on commit 102d143

Please sign in to comment.