Skip to content

Latest commit

 

History

History
58 lines (36 loc) · 1.8 KB

readme.md

File metadata and controls

58 lines (36 loc) · 1.8 KB

Pomodoro

Time management tool for Windows and macOS inspired by Pomodoro Technique. Build with love and tauri.

Screenshot of the application

Installing

To install the application you can grab the installer for your platform from the latest release, in case of macOS you need to open the app for the first time with Cmd + right mouse button as I don't feel like spending money on a license from Apple to notarize a free application. Alternatively you can also build the release yourself by following the guide below.

Local development

Prerequisites

npm install

Building

To run full app execute the following command:

npm start

To build a release for the platform you're running it on execute the following command:

TAURI_PRIVATE_KEY=test npm run build

It will throw an error Error invalid utf-8 sequence of 1 bytes from index 0 in the end due to mismatch in updater private key but will create binaries and installers in src-tauri/target/release/bundle.

Release

To release a new version you'll need to have cargo-bump package installed:

cargo install cargo-bump

Afterwards you can bump the npm package version with the following command which will also bump the Cargo version:

npm version (patch|minor|major)

And then push it along with the tags to the main branch. Github Actions will create a new draft release and populate it with compiled binaries.

License

MIT © Konstantin Azizov