[READ-ONLY] Mirror of https://github.com/probablykasper/remind-me-again. Toggleable cron reminders app for Mac, Linux and Windows
linux macos notifications reminder tauri windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Prepare release

Kasper (Jul 13, 2022, 7:12 AM +0200) 4dcb3222 dc032b07

+12 -11
+2 -2
.github/workflows/release.yml
··· 26 26 with: 27 27 toolchain: stable 28 28 29 - - name: Install webkit2gtk (ubuntu only) 29 + - name: Install dependencies (ubuntu only) 30 30 if: matrix.platform == 'ubuntu-latest' 31 31 run: | 32 32 sudo apt-get update 33 - sudo apt-get install -y webkit2gtk-4.0 33 + sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf 34 34 35 35 - run: npm install 36 36
+4
CHANGELOG.md
··· 1 + # Changelog 2 + 3 + ## 1.0.0 - 2022 Jul 13 4 + - Initial release
+1 -1
README.md
··· 32 32 ### Release new version 33 33 1. Update `CHANGELOG.md` 34 34 2. Bump the version number in `src-tauri/Cargo.toml` 35 - 3. Run `npm run check` to update `Cargo.lock` 35 + 3. Run `cargo check` to update `Cargo.lock` 36 36 4. Create a git tag in the format `v#.#.#` 37 37 5. Add release notes to the generated GitHub release and publish it
+1 -1
src-tauri/Cargo.lock
··· 2279 2279 2280 2280 [[package]] 2281 2281 name = "remind-me-again" 2282 - version = "0.1.0" 2282 + version = "1.0.0" 2283 2283 dependencies = [ 2284 2284 "async-cron-scheduler", 2285 2285 "atomicwrites",
+2 -5
src-tauri/Cargo.toml
··· 1 1 [package] 2 2 name = "remind-me-again" 3 - version = "0.1.0" 4 - description = "A Tauri App" 5 - authors = ["you"] 6 - license = "" 7 - repository = "" 3 + version = "1.0.0" 4 + description = "Toggleable reminders app for Mac, Linux and Windows" 8 5 default-run = "remind-me-again" 9 6 edition = "2021" 10 7 build = "src/build.rs"
+2 -2
src-tauri/tauri.conf.json
··· 24 24 "externalBin": [], 25 25 "copyright": "© 2022 kasper.space", 26 26 "category": "Productivity", 27 - "shortDescription": "", 28 - "longDescription": "", 27 + "shortDescription": "Toggleable reminders app", 28 + "longDescription": "Toggleable reminders app", 29 29 "deb": { 30 30 "depends": [] 31 31 },