Skip to content

Commit 2af29c3

Browse files
committed
chore: release v0.39.8
1 parent 7da967d commit 2af29c3

19 files changed

Lines changed: 2730 additions & 399 deletions

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 0.39.8
4+
5+
### Patch Changes
6+
7+
- Improve workspace session menus, runtime-to-transcript linking, Codex transcript parsing, and incremental search index status handling.
8+
39
## 0.39.7
410

511
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lovcode",
33
"private": true,
4-
"version": "0.39.7",
4+
"version": "0.39.8",
55
"type": "module",
66
"packageManager": "pnpm@10.18.1",
77
"scripts": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lovcode"
3-
version = "0.39.7"
3+
version = "0.39.8"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

src-tauri/src/app/core.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ pub(crate) fn create_schema() -> Schema {
137137
schema_builder.add_text_field("project_id", STRING | STORED);
138138
schema_builder.add_text_field("project_path", STRING | STORED);
139139
schema_builder.add_text_field("session_id", STRING | STORED);
140+
schema_builder.add_text_field("source_path", STRING | STORED);
140141
schema_builder.add_text_field("session_summary", text_options.clone());
141142
schema_builder.add_text_field("timestamp", STRING | STORED);
142143
schema_builder.add_u64_field("line_number", STORED);

src-tauri/src/app/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use tantivy::collector::TopDocs;
1717
use tantivy::query::QueryParser;
1818
use tantivy::schema::{self, Value as TantivyValue, *};
1919
use tantivy::tokenizer::{LowerCaser, TextAnalyzer, Token, TokenStream, Tokenizer};
20-
use tantivy::{doc, Index, IndexWriter, ReloadPolicy};
20+
use tantivy::{doc, Index, IndexWriter, ReloadPolicy, Term};
2121
use tauri::ipc::Channel;
2222
use tauri::{Emitter, Manager};
2323

0 commit comments

Comments
 (0)