From 8e5bed6c63ef3c98409e27771a813b28f62c896b Mon Sep 17 00:00:00 2001 From: Lains Date: Tue, 29 Mar 2022 15:14:55 -0300 Subject: [PATCH] 3.5.0 --- data/io.github.lainsce.Notejot.metainfo.xml.in | 7 +++++-- meson.build | 2 +- src/MainWindow.vala | 4 ++++ 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/data/io.github.lainsce.Notejot.metainfo.xml.in b/data/io.github.lainsce.Notejot.metainfo.xml.in index 5045d60..5ac053f 100644 --- a/data/io.github.lainsce.Notejot.metainfo.xml.in +++ b/data/io.github.lainsce.Notejot.metainfo.xml.in @@ -45,11 +45,14 @@ @app_id@ - +

Release: Beautiful Superstar

    -
  • Changed: UI ciolors were changed, and some UI parts now look more intuitive.
  • +
  • Added: New Notes Grid view, access your notes in a grid.
  • +
  • Changed: UI colors were changed, and some UI parts now look more intuitive.
  • +
  • Fixed: Unordered list formatting.
  • +
  • Fixed: Some UI bugs.

Note: Your notes and notebooks are always saved in ~/.var/app/io.github.lainsce.Notejot when using the Flatpak. Happy notetaking!

diff --git a/meson.build b/meson.build index f924038..e75da47 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('io.github.lainsce.Notejot', 'vala', - version: '3.3.3', + version: '3.5.0', meson_version: '>= 0.59.0' ) diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 0c9f10f..7a0056c 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -37,6 +37,10 @@ namespace Notejot { [GtkChild] public unowned Gtk.ToggleButton an_button; [GtkChild] + public unowned Gtk.ToggleButton g_button; + [GtkChild] + public unowned Gtk.ToggleButton t_button; + [GtkChild] public unowned Gtk.SingleSelection selection_model; [GtkChild] public unowned NoteContentView notecontent;