Releases: devmount/you-can-quit
v1.3.0
What's Changed
Security fixes, Migrate from Vue2 to Vue3 composition API and from Vue-CLI to Vite.js.
- build(deps): bump follow-redirects from 1.14.7 to 1.14.8 by @dependabot in #31
- build(deps): bump node-forge from 1.2.1 to 1.3.0 by @dependabot in #32
- build(deps): bump minimist from 1.2.5 to 1.2.6 by @dependabot in #33
- build(deps): bump ansi-regex from 3.0.0 to 3.0.1 by @dependabot in #34
- build(deps): bump dexie from 3.2.0 to 3.2.2 by @dependabot in #36
- build(deps): bump ejs from 3.1.6 to 3.1.8 by @dependabot in #37
- build(deps): bump async from 2.6.3 to 2.6.4 by @dependabot in #38
- build(deps): bump terser from 5.10.0 to 5.14.2 by @dependabot in #39
- build(deps): bump loader-utils from 1.4.0 to 1.4.1 by @dependabot in #40
- build(deps): bump loader-utils from 1.4.1 to 1.4.2 by @dependabot in #41
- Migrate to Vue 3 Composition API by @devmount in #42
- build(deps): bump json5 from 1.0.1 to 1.0.2 by @dependabot in #43
- Upgrade dependencies by @devmount in #44
- build(deps): bump webpack from 5.75.0 to 5.76.1 by @dependabot in #45
- Vite by @devmount in #47
Full Changelog: v1.2.4...v1.3.0
v1.2.4
What's Changed
🔑 security fixes
- build(deps): bump nth-check from 2.0.0 to 2.0.1 by @dependabot in #28
- build(deps): bump follow-redirects from 1.14.2 to 1.14.7 by @dependabot in #29
- Upgrades by @devmount in #30
Full Changelog: v1.2.3...v1.2.4
v1.2.3
v1.2.2
v1.2.1
v1.2.0
v1.1.2
v1.1.1
v1.1.0
v1.0.0
This is the first release of ycq 1.x
Release notes
🔑 fix known security vulnerabilities
⚙️ replace db engine RDB (Firestore) by IndexedDB (Dexie.js)
➕ add administration section
➕ add export and import of backup files (JSON)
➕ add database wipe
➕ add year navigation
💚 use native key event handler instead of additional dependency (vue-shortkey)
💚 improve font, buttons and text appearance
Upgrading from ycq 0.x
The breaking change in version 1.x is, that the database was switched from Firebase to IndexedDB (Dexie.js). This means, it's no longer compatible with your current data from 0.x. If you rather want to migrate your data instead of starting from scratch (depends on how much days you already processed in this app), you can do the following:
-
Export your Firebase data into a local
.json
file in the following format:{ "2019-02-02": 1, "2019-07-25": -1, "2019-01-10": -1, "2019-11-09": 1 }
The order of dates doesn't matter. If you have any problems to do so, please create an issue.
-
Update app files and dependencies
cd you-can-quit git pull yarn
-
Run the app (see instructions in the Readmes Get started section) and import this data file in the administration section at the bottom.