Bump 0.9.2

This commit is contained in:
Matte Noble
2025-07-07 20:03:02 -07:00
parent 07f596e67a
commit 18dcf86bb5
5 changed files with 24 additions and 4 deletions

View File

@@ -1,5 +1,25 @@
# Changelog # Changelog
## 0.9.2 - 2025-07-07
### Fixes
- Fixed issue with scrollbars rendering empty space in lists
- Silenced various Svelte warnings
- Fixed issue where double dashes were being replaced with an emdash in inputs
(caused any MCP commands with flags to not work)
- Ensure the User's selected colorscheme is applied on startup
- Ensure the content area on all tabs is scrollable
### Refactors
- Refactored the `Setting` model to behave the same as `Config` (static
properties that both getters/setters)
### Misc
- Updated Gemini models to the currently available ones
## 0.9.1 - 2025-07-06 ## 0.9.1 - 2025-07-06
### Fixes ### Fixes

View File

@@ -1,7 +1,7 @@
{ {
"name": "tome", "name": "tome",
"private": true, "private": true,
"version": "0.9.1", "version": "0.9.2",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",

2
src-tauri/Cargo.lock generated
View File

@@ -4,7 +4,7 @@ version = 4
[[package]] [[package]]
name = "Tome" name = "Tome"
version = "0.9.1" version = "0.9.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "Tome" name = "Tome"
version = "0.9.1" version = "0.9.2"
description = "The easiest way to work with local models and MCP servers." description = "The easiest way to work with local models and MCP servers."
authors = ["Runebook"] authors = ["Runebook"]
license = "MIT" license = "MIT"

View File

@@ -58,7 +58,7 @@
}, },
"productName": "Tome", "productName": "Tome",
"mainBinaryName": "tome", "mainBinaryName": "tome",
"version": "0.9.1", "version": "0.9.2",
"identifier": "co.runebook", "identifier": "co.runebook",
"plugins": { "plugins": {
"sql": { "sql": {