Skip to content

Commit

Permalink
Local storage for settings, etc. (#86)
Browse files Browse the repository at this point in the history
* Use local storage instead of cookies to save user settings.
* Remove debugging alert accidentally left in code.
* Smarter default settings for remote temperature/humidity sensors.
  • Loading branch information
kshetline authored Oct 17, 2022
1 parent faca8b8 commit a3a247d
Show file tree
Hide file tree
Showing 30 changed files with 613 additions and 178 deletions.
56 changes: 11 additions & 45 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,50 +1,16 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
.DS_Store
.first-time-install
/coverage
/dist
/tsc-out
/e2e/*.js
/e2e/*.map
node_modules
/server/dist
/server/tsc-out
/tmp

# dependencies
/node_modules
/sass/node_modules
/server/node_modules

# IDEs and editors
/.idea
/server/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/tasks.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings
.first-time-install
node_path.txt
/src/assets/audio/user
/src/assets/audio/user/

# e2e
/e2e/*.js
/e2e/*.map

# System Files
.DS_Store
Thumbs.db
tmp
tsc-out

/.vscode/*
!/.vscode/settings.json
10 changes: 10 additions & 0 deletions .idea/.gitignore

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

14 changes: 14 additions & 0 deletions .idea/aw-clock.iml

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

30 changes: 30 additions & 0 deletions .idea/codeStyles/Project.xml

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

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

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

24 changes: 24 additions & 0 deletions .idea/compiler.xml

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

90 changes: 90 additions & 0 deletions .idea/dictionaries/kshetline.xml

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

6 changes: 6 additions & 0 deletions .idea/encodings.xml

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

135 changes: 135 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

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

Loading

0 comments on commit a3a247d

Please sign in to comment.