From 75f2ff007dfe4719da84c3b2da67e017019b91c1 Mon Sep 17 00:00:00 2001 From: Nyk <0xnykcd@googlemail.com> Date: Wed, 4 Mar 2026 00:14:03 +0700 Subject: [PATCH] feat: align free/pro behavior and history defaults --- README.md | 6 +++--- src-tauri/src/settings.rs | 2 +- src/components/settings/HistoryLimit.tsx | 2 +- src/components/settings/RecordingRetentionPeriod.tsx | 2 +- src/i18n/locales/en/translation.json | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) 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