Preparing for 1.0.1

This commit is contained in:
jeffser 2024-07-23 21:45:48 -06:00
parent 0df6b20147
commit 52f02cd5d0
3 changed files with 12 additions and 2 deletions

View File

@ -78,6 +78,16 @@
<url type="contribute">https://github.com/Jeffser/Alpaca/discussions/154</url>
<url type="vcs-browser">https://github.com/Jeffser/Alpaca</url>
<releases>
<release version="1.0.1" date="2024-06-23">
<url type="details">https://github.com/Jeffser/Alpaca/releases/tag/1.0.1</url>
<description>
<p>Fixes</p>
<ul>
<li>Models with '-' in their names didn't work properly, this is now fixed</li>
<li>Better connection check for Ollama</li>
</ul>
</description>
</release>
<release version="1.0.0" date="2024-07-22">
<url type="details">https://github.com/Jeffser/Alpaca/releases/tag/1.0.0</url>
<description>

View File

@ -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', ],
)

View File

@ -40,7 +40,7 @@ class AlpacaApplication(Adw.Application):
self.create_action('quit', lambda *_: self.quit(), ['<primary>q'])
self.create_action('preferences', lambda *_: AlpacaWindow.show_preferences_dialog(self.props.active_window), ['<primary>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