diff --git a/CHANGELOG.md b/CHANGELOG.md index 68d55c495..542f82928 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ## [0.0.1-rtw.15] - Q2/2024 +May 22 - Forced the Add App icon to be present on the demo, or it may confuse website visitors new to the whole project May-22 - Adding the new client-side cache method to the GUI which doubles up as the homeserver GUI and online interactive demo May-21 - Modified the gui a bit with the new client-side cache method of showing/hiding apps - our alternative to install/uninstall May-20 - Fixed client-side cache app install - visible at static/gui-new/ diff --git a/static/gui/app-store/002-old.html b/static/gui/app-store/002-old.html deleted file mode 100755 index df4c340c5..000000000 --- a/static/gui/app-store/002-old.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - Hβnβ Entertainment Apps - - - - - - - - - - - - - - - - - - -
-
-
-
- -
-
-
-
- - - - - - -
-
-
-
-
- -
-
-
-
-
- - -
-
-
-
-
- -
-
-
-
-
- - -
-
-
-
-
- -
-
-
-
-
- - - - - - - - diff --git a/static/gui/dashboard/002-demo.html b/static/gui/dashboard/002-demo.html index 53315a8ad..d8b614eb7 100755 --- a/static/gui/dashboard/002-demo.html +++ b/static/gui/dashboard/002-demo.html @@ -178,7 +178,7 @@ appsContainer.innerHTML = ''; // Clear existing apps const appIds = ['002-001', '002-002', '999-999']; // Using class-based IDs appIds.forEach(appId => { - if (localStorage.getItem(appId) === 'added') { + if (localStorage.getItem(appId) === 'added' || appId === '999-999') { const appElement = document.createElement('a'); appElement.href = getAppLink(appId); // Set the hyperlink appElement.style.cursor = 'pointer';