diff --git a/data/com.jeffser.Alpaca.metainfo.xml.in b/data/com.jeffser.Alpaca.metainfo.xml.in index c91e351..1ecb94c 100644 --- a/data/com.jeffser.Alpaca.metainfo.xml.in +++ b/data/com.jeffser.Alpaca.metainfo.xml.in @@ -78,6 +78,16 @@ https://github.com/Jeffser/Alpaca/discussions/154 https://github.com/Jeffser/Alpaca + + https://github.com/Jeffser/Alpaca/releases/tag/1.0.1 + +

Fixes

+
    +
  • Models with '-' in their names didn't work properly, this is now fixed
  • +
  • Better connection check for Ollama
  • +
+
+
https://github.com/Jeffser/Alpaca/releases/tag/1.0.0 diff --git a/meson.build b/meson.build index 62e6f47..d0ebe95 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('Alpaca', 'c', - version: '1.0.0', + version: '1.0.1', meson_version: '>= 0.62.0', default_options: [ 'warning_level=2', 'werror=false', ], ) diff --git a/src/main.py b/src/main.py index 29d3ed7..32755fe 100644 --- a/src/main.py +++ b/src/main.py @@ -40,7 +40,7 @@ class AlpacaApplication(Adw.Application): self.create_action('quit', lambda *_: self.quit(), ['q']) self.create_action('preferences', lambda *_: AlpacaWindow.show_preferences_dialog(self.props.active_window), ['p']) self.create_action('about', self.on_about_action) - self.version = '1.0.0' + self.version = '1.0.1' def do_activate(self): win = self.props.active_window