From c6394940b2d1752c75179bc4340e74a758eb3448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Iv=C3=A1n?= Date: Fri, 22 Apr 2022 21:59:14 -0500 Subject: [PATCH] =?UTF-8?q?Release=202.0!=20=F0=9F=A5=B3=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 24 +++++++++++++++++------- meson.build | 2 +- src/meson.build | 2 +- 3 files changed, 19 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index dd2b84a..aa1816b 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,9 @@ ## Gallery:
- - + + +
## Features: @@ -24,6 +25,8 @@ * Assisted time calculations for breaks * Customizable tones for the end of the break * Notification that alerts you when your break is done +* Work and break time statistics +* Export your statistics to CSV ## Why? @@ -35,7 +38,13 @@ The time you worked is divided by 5, and that's the break time you'll take. E.g, ## Installing and Running -The recommended way to install Flowtime is by using the official Flatpak release on Flathub. There's third-party, unofficial AUR packages: +### Flathub + +The only official distribution format for Flowtime is the Flatpak package available on Flathub. Click on the banner on the top of this README.md to go to Flowtime's Flathub page. Any other unofficial distribution format that might be available is highly disencouraged. + +### AUR + +There's third-party, unofficial AUR packages: | Package | Mantainer | | -------------- | ------------ | @@ -52,11 +61,12 @@ GNOME Builder provides a high quality Flatpak integration. All dependencies, run | Dependency | Version | | ---------- | ------- | -| Meson | 0.5.6 | -| GTK | 4.2.5 | +| Meson | 0.5.9 | +| gtk-4 | 4.4.6 | | gstreamer-1.0 | 1.0 | | gstreamer-player-1.0 | 1.0 | -| Libadwaita | 1.0 | +| libadwaita-1 | 1.1 | +| libxml-2.0 | 1.0 | To compile and install, run: @@ -65,4 +75,4 @@ meson builddir --prefix=/usr cd builddir sudo ninja install flowtime -``` \ No newline at end of file +``` diff --git a/meson.build b/meson.build index 327aa1f..64cd0d6 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('flowtime', ['c', 'vala'], - version: '1.5.0', + version: '2.0', meson_version: '>= 0.59.0', default_options: [ 'warning_level=2', ], diff --git a/src/meson.build b/src/meson.build index e88d58a..941d1ba 100644 --- a/src/meson.build +++ b/src/meson.build @@ -24,7 +24,7 @@ flowtime_sources = [ flowtime_deps = [ dependency('gio-2.0', version: '>= 2.50'), - dependency('gtk4', version: '>= 4.2.5'), + dependency('gtk4', version: '>= 4.4.6'), dependency ('gstreamer-1.0'), dependency('gstreamer-player-1.0'), dependency('libadwaita-1'),