Skip to content

Commit

Permalink
see Changelog - minor edit to demo
Browse files Browse the repository at this point in the history
  • Loading branch information
unclehowell committed May 22, 2024
1 parent 0d8e08c commit c383bc2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 317 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down
316 changes: 0 additions & 316 deletions static/gui/app-store/002-old.html

This file was deleted.

2 changes: 1 addition & 1 deletion static/gui/dashboard/002-demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit c383bc2

Please sign in to comment.