bump to v0.1.18, rebuild, deploy

This commit is contained in:
2026-06-17 01:47:37 +02:00
parent 49e575d9da
commit 7711f4fbb5
5 changed files with 15 additions and 6 deletions
+9
View File
@@ -1,5 +1,14 @@
# Changes # Changes
## v0.1.18 — 2026-06-17
- Added defaultCustomPersona fallback when textarea is empty
- Simplified persona resolution to single clean code path
- Added example prompt in help_text with blockquote formatting
- Fixed Yoda persona (removed, was an outlier)
- Fixed /ai persona list to show dropdown display names
- Fixed @-mention resetting conversation history to prevent context bleed
## v0.1.17 — 2026-06-17 ## v0.1.17 — 2026-06-17
- Replaced persona library with 19 juxtaposed pop-culture characters with role inversions - Replaced persona library with 19 juxtaposed pop-culture characters with role inversions
+1 -1
View File
@@ -6,7 +6,7 @@
# make clean — Remove build artifacts # make clean — Remove build artifacts
PLUGIN_ID := com.forkless.mattermore PLUGIN_ID := com.forkless.mattermore
PLUGIN_VERSION := 0.1.17 PLUGIN_VERSION := 0.1.18
DIST_DIR := dist DIST_DIR := dist
SERVER_DIR := server SERVER_DIR := server
BUNDLE_NAME := $(PLUGIN_ID)-$(PLUGIN_VERSION).tar.gz BUNDLE_NAME := $(PLUGIN_ID)-$(PLUGIN_VERSION).tar.gz
+2 -2
View File
@@ -1,6 +1,6 @@
# Design: Matty — forkless' annoying Mattermost sidekick # Design: Matty — forkless' annoying Mattermost sidekick
> **Status:** v0.1.17 — Implemented and deployed > **Status:** v0.1.18 — Implemented and deployed
> **Last updated:** 2026-06-17 > **Last updated:** 2026-06-17
> **Bot username:** @matty > **Bot username:** @matty
> **Default model:** dolphin-llama3:latest (configurable in System Console) > **Default model:** dolphin-llama3:latest (configurable in System Console)
@@ -157,7 +157,7 @@ User: "@matty hello again" → Wake() → bot responds, new session
### 3.1 `plugin.json` ### 3.1 `plugin.json`
Current settings (v0.1.17): Current settings (v0.1.18):
| Key | Type | Default | Purpose | | Key | Type | Default | Purpose |
|---|---|---|---| |---|---|---|---|
+2 -2
View File
@@ -51,8 +51,8 @@ mattermore/
| `server/engagement.go` | Active session tracking (5-min timeout) | | `server/engagement.go` | Active session tracking (5-min timeout) |
| `server/persona.go` | 19 personas with stable short IDs | | `server/persona.go` | 19 personas with stable short IDs |
| `server/configuration.go` | 12 settings, validation, debug logging | | `server/configuration.go` | 12 settings, validation, debug logging |
| `DESIGN.md` | Full functional design (up to date with v0.1.17) | | `DESIGN.md` | Full functional design (up to date with v0.1.18) |
| `CHANGELOG.md` | All versions from v0.1.0 to v0.1.17 | | `CHANGELOG.md` | All versions from v0.1.0 to v0.1.18 |
| `dev/docker-compose.yml` | Disposable Mattermost + PostgreSQL test rig | | `dev/docker-compose.yml` | Disposable Mattermost + PostgreSQL test rig |
## External Dependencies ## External Dependencies
+1 -1
View File
@@ -2,7 +2,7 @@
"id": "com.forkless.mattermore", "id": "com.forkless.mattermore",
"name": "Matty", "name": "Matty",
"description": "AI chat agent powered by Ollama.", "description": "AI chat agent powered by Ollama.",
"version": "0.1.17", "version": "0.1.18",
"min_server_version": "11.6.1", "min_server_version": "11.6.1",
"server": { "server": {
"executables": { "executables": {