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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ measurement that justified them; see [docs/EVALUATION.md](docs/EVALUATION.md).
Format loosely follows [Keep a Changelog](https://keepachangelog.com/). Release dates use the
repository's local calendar date.

## 0.6.2 - 2026-09-07

### Fixed

- **The example box stops claiming to be empty while holding text.** The line above it read
*"Empty — however the model would write it"* whatever the box contained. It was not a status
readout: the sentence was passed as the text field's *title* rather than its placeholder, and a
form renders a title as a label and keeps it there regardless. Nothing about it was conditional,
so it said "Empty" over a box with a paragraph in it. It is now the placeholder, shown only while
the box is genuinely empty. (macOS; the identical line on iOS looked right because iOS puts a
field's title inside the field, and it is changed there too so neither depends on where a
platform decides to place a label.)

## 0.6.1 - 2026-09-06

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.6.1</string>
<string>0.6.2</string>
<key>CFBundleVersion</key>
<string>601</string>
<string>602</string>
<key>LSMinimumSystemVersion</key>
<string>14.0</string>
<key>LSUIElement</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/dnt/Dnt.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ struct Dnt: AsyncParsableCommand {
dnt doctor --probe
dnt logs --follow --level debug
""",
version: "dnt 0.6.1 (b2cba25, 2026-09-06)",
version: "dnt 0.6.2 (c29cbda, 2026-09-06)",
subcommands: [
Transcribe.self, Providers.self, Doctor.self, HistoryCommand.self, LogsCommand.self,
PromptCommand.self,
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.1
0.6.2
4 changes: 2 additions & 2 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ android {
// coroutine APIs used here available without desugaring.
minSdk = 26
targetSdk = 35
versionCode = 601
versionName = "0.6.1"
versionCode = 602
versionName = "0.6.2"
// The value is a Java literal, so the quotes are part of it.
buildConfigField("String", "BUILD_COMMIT", "\"$buildCommit\"")
buildConfigField("String", "BUILD_TIMESTAMP", "\"$buildTimestamp\"")
Expand Down
4 changes: 2 additions & 2 deletions ios/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ settings:
SWIFT_VERSION: "6.0"
DEVELOPMENT_TEAM: 5BR9M56H9W
CODE_SIGN_STYLE: Automatic
MARKETING_VERSION: "0.6.1"
CURRENT_PROJECT_VERSION: "601"
MARKETING_VERSION: "0.6.2"
CURRENT_PROJECT_VERSION: "602"
SWIFT_STRICT_CONCURRENCY: complete

packages:
Expand Down
2 changes: 1 addition & 1 deletion windows/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<RestoreLockedMode Condition="'$(CI)' == 'true'">true</RestoreLockedMode>
<!-- The dev-build version; scripts/stamp-version.sh keeps it current and release builds
override it with -p:Version. -->
<Version>0.6.1</Version>
<Version>0.6.2</Version>
</PropertyGroup>

<!-- A bug report that cannot name the build it came from is a guess. Version alone is not
Expand Down
2 changes: 1 addition & 1 deletion windows/DoNotType.App/app.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="0.6.1.0" name="DoNotType.App"/>
<assemblyIdentity version="0.6.2.0" name="DoNotType.App"/>

<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
Expand Down
2 changes: 1 addition & 1 deletion windows/DoNotType.Cli/InspectionCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void Bad(string name, string value)
problems.Add($"{name}: {value}");
}

Out.Line("DoNotType — dnt 0.6.1 (b2cba25, 2026-09-06)");
Out.Line("DoNotType — dnt 0.6.2 (c29cbda, 2026-09-06)");

Out.Line("\nEnvironment");
Row("os", Environment.OSVersion.VersionString);
Expand Down
2 changes: 1 addition & 1 deletion windows/DoNotType.Cli/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ longer than 90 seconds are split on silence and transcribed concurrently.

private static int Version()
{
Out.Line("dnt 0.6.1 (b2cba25, 2026-09-06)");
Out.Line("dnt 0.6.2 (c29cbda, 2026-09-06)");
return 0;
}

Expand Down
Loading