diff --git a/data/dev.bragefuglseth.Fretboard.metainfo.xml.in.in b/data/dev.bragefuglseth.Fretboard.metainfo.xml.in.in index 83f5a80..0181ee0 100644 --- a/data/dev.bragefuglseth.Fretboard.metainfo.xml.in.in +++ b/data/dev.bragefuglseth.Fretboard.metainfo.xml.in.in @@ -64,6 +64,19 @@ [(153, 193, 241)] + + +

It may not arrive in wrapping paper, but this timely release of Fretboard still includes some nice gifts:

+
    +
  • An enharmonic indicator that lets you see when chords have more than one possible name
  • +
  • Automatic chord name formatting, turning your sloppily typed “bb maj7” into a beautiful “B♭maj7”
  • +
  • More consistent keyboard shortcuts
  • +
  • Enhanced accessibility for screen readers
  • +
  • German and Swedish translations, making Fretboard available in a total of 13 languages
  • +
+

If you would like to come with suggestions, report bugs, translate the app, or contribute otherwise, feel free to reach out!

+
+

This is a minor release with a few improvements:

@@ -116,3 +129,4 @@
+ diff --git a/meson.build b/meson.build index 9217ba5..0c2bf2a 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('fretboard', 'rust', - version: '4.1', + version: '5.0', license: 'GPL-3.0-or-later', meson_version: '>= 0.62.0', ) diff --git a/src/application.rs b/src/application.rs index 1fd0870..0608199 100644 --- a/src/application.rs +++ b/src/application.rs @@ -107,7 +107,7 @@ impl FretboardApplication { let window = self.active_window().unwrap(); let about = adw::AboutWindow::from_appdata( "/dev/bragefuglseth/Fretboard/metainfo.xml", - Some("4.0"), + Some("5.0"), ); about.set_developers(&["Brage Fuglseth"]);