diff --git a/README.md b/README.md index 996231f..c499839 100644 --- a/README.md +++ b/README.md @@ -7,14 +7,14 @@
@@ -28,7 +28,7 @@
---
-> **Free and open source.** Dictx is GPL-3.0 licensed — you can build it from source with full functionality. [Buy Dictx Pro](https://dictx.splitlabs.io/buy) ($29 one-time) for a signed binary, auto-updates, and to support development.
+> **Free and open source.** Dictx is GPL-3.0 licensed — you can build it from source with full functionality. [Buy Dictx Pro](https://dictx.splitlabs.io/buy) ($29 one-time) for signed builds, in-app auto-updates, and priority support.
Dictx is a cross-platform desktop application for speech transcription. Press a shortcut, speak, and your words appear in any text field — no cloud, no API keys, no data leaving your computer.
diff --git a/src-tauri/src/settings.rs b/src-tauri/src/settings.rs
index 5101f78..514c025 100644
--- a/src-tauri/src/settings.rs
+++ b/src-tauri/src/settings.rs
@@ -426,7 +426,7 @@ fn default_auto_submit() -> bool {
}
fn default_history_limit() -> usize {
- 5
+ 100
}
fn default_recording_retention_period() -> RecordingRetentionPeriod {
diff --git a/src/components/settings/HistoryLimit.tsx b/src/components/settings/HistoryLimit.tsx
index a597c15..124e8a1 100644
--- a/src/components/settings/HistoryLimit.tsx
+++ b/src/components/settings/HistoryLimit.tsx
@@ -16,7 +16,7 @@ export const HistoryLimit: React.FC