Preparing update to 0.4.0

This commit is contained in:
jeffser 2024-05-17 00:39:49 -06:00
parent 3b695031bc
commit 2290105ac1
3 changed files with 19 additions and 3 deletions

View File

@ -52,6 +52,22 @@
<url type="homepage">https://github.com/Jeffser/Alpaca</url> <url type="homepage">https://github.com/Jeffser/Alpaca</url>
<url type="donation">https://github.com/sponsors/Jeffser</url> <url type="donation">https://github.com/sponsors/Jeffser</url>
<releases> <releases>
<release version="0.4.0" date="2024-05-17">
<url type="details">https://github.com/Jeffser/Alpaca/releases/tag/0.4.0</url>
<description>
<p>Big Update</p>
<ul>
<li>Added code highlighting</li>
<li>Added image recognition (llava model)</li>
<li>Added multiline prompt</li>
<li>Fixed some small bugs</li>
<li>General optimization</li>
</ul>
<p>
Please report any errors to the issues page, thank you.
</p>
</description>
</release>
<release version="0.3.0" date="2024-05-16"> <release version="0.3.0" date="2024-05-16">
<url type="details">https://github.com/Jeffser/Alpaca/releases/tag/0.3.0</url> <url type="details">https://github.com/Jeffser/Alpaca/releases/tag/0.3.0</url>
<description> <description>
@ -69,7 +85,7 @@
</description> </description>
</release> </release>
<release version="0.2.2" date="2024-05-14"> <release version="0.2.2" date="2024-05-14">
<url type="details">https://github.com/Jeffser/Alpaca/releases/tag/0.2.1</url> <url type="details">https://github.com/Jeffser/Alpaca/releases/tag/0.2.2</url>
<description> <description>
<p>0.2.2 Bug fixes</p> <p>0.2.2 Bug fixes</p>
<ul> <ul>

View File

@ -1,5 +1,5 @@
project('Alpaca', project('Alpaca',
version: '0.2.2', version: '0.4.0',
meson_version: '>= 0.62.0', meson_version: '>= 0.62.0',
default_options: [ 'warning_level=2', 'werror=false', ], default_options: [ 'warning_level=2', 'werror=false', ],
) )

View File

@ -48,7 +48,7 @@ class AlpacaApplication(Adw.Application):
application_name='Alpaca', application_name='Alpaca',
application_icon='com.jeffser.Alpaca', application_icon='com.jeffser.Alpaca',
developer_name='Jeffry Samuel Eduarte Rojas', developer_name='Jeffry Samuel Eduarte Rojas',
version='0.2.2', version='0.4.0',
developers=['Jeffser https://jeffser.com'], developers=['Jeffser https://jeffser.com'],
designers=['Jeffser https://jeffser.com'], designers=['Jeffser https://jeffser.com'],
translator_credits='Alex K (Russian) https://github.com/alexkdeveloper', translator_credits='Alex K (Russian) https://github.com/alexkdeveloper',