Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
</p>

<p align="center">
<a href="https://github.com/0xNyk/dictx/releases"><img src="https://img.shields.io/github/v/release/0xNyk/dictx?label=Download&style=for-the-badge&color=4f46e5" alt="Download" /></a>
<a href="https://github.com/splitlabs/dictx/releases"><img src="https://img.shields.io/github/v/release/splitlabs/dictx?label=Download&style=for-the-badge&color=4f46e5" alt="Download" /></a>
&nbsp;
<a href="https://dictx.splitlabs.io/buy"><img src="https://img.shields.io/badge/Get_Dictx_Pro-$29-10b981?style=for-the-badge" alt="Get Dictx Pro" /></a>
</p>

<p align="center">
<a href="LICENSE"><img src="https://img.shields.io/badge/license-GPL--3.0-blue.svg" alt="GPL-3.0" /></a>
<a href="https://github.com/0xNyk/dictx/stargazers"><img src="https://img.shields.io/github/stars/0xNyk/dictx?style=social" alt="Stars" /></a>
<a href="https://github.com/splitlabs/dictx/stargazers"><img src="https://img.shields.io/github/stars/splitlabs/dictx?style=social" alt="Stars" /></a>
</p>

<p align="center">
Expand All @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ fn default_auto_submit() -> bool {
}

fn default_history_limit() -> usize {
5
100
}

fn default_recording_retention_period() -> RecordingRetentionPeriod {
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/HistoryLimit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const HistoryLimit: React.FC<HistoryLimitProps> = ({
const { t } = useTranslation();
const { getSetting, updateSetting, isUpdating } = useSettings();

const historyLimit = getSetting("history_limit") ?? 5;
const historyLimit = getSetting("history_limit") ?? 100;

const handleChange = async (event: React.ChangeEvent<HTMLInputElement>) => {
const value = parseInt(event.target.value, 10);
Expand Down
2 changes: 1 addition & 1 deletion src/components/settings/RecordingRetentionPeriod.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const RecordingRetentionPeriodSelector: React.FC<RecordingRetentionPeriod

const selectedRetentionPeriod =
getSetting("recording_retention_period") || "never";
const historyLimit = getSetting("history_limit") || 5;
const historyLimit = getSetting("history_limit") || 100;

const handleRetentionPeriodSelect = async (period: string) => {
await updateSetting(
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"useCase": "Russian language dictation"
}
},
"supportCta": "Get Dictx Pro — signed binary with auto-updates ($29)",
"supportCta": "Upgrade to Dictx Pro — signed builds + auto-updates ($29 one-time)",
"downloadEta": "~{{time}} remaining",
"downloadSize": "{{downloaded}} / {{total}} MB",
"errors": {
Expand Down
Loading