Skip to content

Commit

Permalink
Changes for v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dezoito committed Oct 20, 2024
1 parent 294de07 commit a057ab7
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 8 deletions.
24 changes: 21 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,39 @@

All notable changes to this project will be documented in this file.

## [Version 0.6.0] - 2024-10-20

### Added

- Added UI controls to re-run past experiments.
- Added controls to remove experiment files from the UI.
- Added button to copy an inference text to the clipboard.

### Changed

- Moved "reload" icon to improve layout.
- Improved experiment inspection UI readability.
- Streamlined State management.

### Fixes

- Fix HMR not working on MacOS (in development, of course).

## [Version 0.5.3] - 2024-09-16

### Fixes

- Handles Ollama servers using default ports (80 or 443)
- Handles Ollama servers using default ports (80 or 443).

## [Version 0.5.2] - 2024-09-15

### Added

- Adds custom application icon
- Adds custom application icon.

### Fixes

- Handles Ollama version info not being correctly returned by the server
- Handles Ollama version info not being correctly returned by the server.

## [Version 0.5.1] - 2024-07-10

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ollama-grid-search",
"private": true,
"version": "0.5.3",
"version": "0.6.0",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grid-search-desktop"
version = "0.5.3"
version = "0.6.0"
description = "A Tauri App to perform Grid Search and A/B testing experiments on LLMs"
authors = ["dezoito"]
license = "Whatever is in the repo"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"package": {
"productName": "ollama-grid-search",
"version": "0.5.3"
"version": "0.6.0"
},
"tauri": {
"allowlist": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/logs-selector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export function LogsSelector() {
</div>
)}
{query.data && (
<div className="mr-4 flex justify-end">
<div className="mr-1 flex justify-end">
{" "}
<Button
variant="ghost"
Expand Down
3 changes: 2 additions & 1 deletion todo.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ https://github.com/tauri-apps/plugins-workspace/tree/v1/plugins/single-instance

--- v0.6.0
[ok] - Added UI controls to re-run past experiments.
[ok] - Add button to copy an inference text to the clipboard.
[ok] - Added controls to remove experiment files from the UI.
[ok] - Added button to copy an inference text to the clipboard.

[ok] - Fix HMR not working on MacOS (in development, of course).
[ok] - Moved "reload" icon to improve layout.
[ok] - Improved experiment inspection UI readability.
Expand Down

0 comments on commit a057ab7

Please sign in to comment.