From 8ee265f92698a14e57f27615ecfcf1bd1589114b Mon Sep 17 00:00:00 2001 From: jeffser Date: Sun, 19 May 2024 00:36:11 -0600 Subject: [PATCH] Preparing for 0.5.0 --- README.md | 6 ++++-- data/com.jeffser.Alpaca.metainfo.xml.in | 21 +++++++++++++++++++++ meson.build | 2 +- src/main.py | 2 +- 4 files changed, 27 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a21a5b10..c2823219 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,13 @@ An [Ollama](https://github.com/ollama/ollama) client made with GTK4 and Adwaita. - Pull and delete models from the app - Image recognition - Code highlighting +- Multiple conversations +- Notifications ## Future features! -- Multiple conversations - Document recognition -- Notifications +- Import / Export chats + ## Screenies Login to Ollama instance | Chatting with models | Managing models diff --git a/data/com.jeffser.Alpaca.metainfo.xml.in b/data/com.jeffser.Alpaca.metainfo.xml.in index b1fbb460..b84e6045 100644 --- a/data/com.jeffser.Alpaca.metainfo.xml.in +++ b/data/com.jeffser.Alpaca.metainfo.xml.in @@ -52,6 +52,27 @@ https://github.com/Jeffser/Alpaca https://github.com/sponsors/Jeffser + + https://github.com/Jeffser/Alpaca/releases/tag/0.5.0 + +

Really Big Update

+
    +
  • Added multiple chats support!
  • +
  • Added Pango Markup support (bold, list, title, subtitle, monospace)
  • +
  • Added autoscroll if the user is at the bottom of the chat
  • +
  • Added support for multiple tags on a single model
  • +
  • Added better model management dialog
  • +
  • Added loading spinner when sending message
  • +
  • Added notifications if app is not active and a model pull finishes
  • +
  • Added new symbolic icon
  • +
  • Added frame to message textview widget
  • +
  • Fixed "code blocks shouldn't be editable"
  • +
+

+ Please report any errors to the issues page, thank you. +

+
+
https://github.com/Jeffser/Alpaca/releases/tag/0.4.0 diff --git a/meson.build b/meson.build index 823f1f7c..17f3c93a 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('Alpaca', - version: '0.4.0', + version: '0.5.0', meson_version: '>= 0.62.0', default_options: [ 'warning_level=2', 'werror=false', ], ) diff --git a/src/main.py b/src/main.py index c5f1a490..041c7ddd 100644 --- a/src/main.py +++ b/src/main.py @@ -48,7 +48,7 @@ def on_about_action(self, widget, _): application_name='Alpaca', application_icon='com.jeffser.Alpaca', developer_name='Jeffry Samuel Eduarte Rojas', - version='0.4.0', + version='0.5.0', developers=['Jeffser https://jeffser.com'], designers=['Jeffser https://jeffser.com'], translator_credits='Alex K (Russian) https://github.com/alexkdeveloper',