Skip to content

Commit c1c4b2e

Browse files
committed
chore: update appcast and Info.plist for v0.2.3 release
1 parent 53bcb57 commit c1c4b2e

4 files changed

Lines changed: 28 additions & 22 deletions

File tree

Sources/iData/ContentView.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1881,6 +1881,8 @@ private struct WelcomeDetailView: View {
18811881
Label(isChinese ? "开始" : "Start", systemImage: "play.fill")
18821882
}
18831883
.buttonStyle(.borderedProminent)
1884+
.controlSize(.regular)
1885+
.tint(.accentColor)
18841886
.quietInteractiveSurface(enabled: motionEnabled, hoverScale: 1.012, hoverYOffset: -1)
18851887
}
18861888

@@ -2099,7 +2101,9 @@ private struct WelcomeDetailView: View {
20992101
} label: {
21002102
Label(localizedText(isChinese, english: "Handoff Rules", chinese: "设置转交规则"), systemImage: "gearshape.fill")
21012103
}
2102-
.buttonStyle(.bordered)
2104+
.buttonStyle(.borderedProminent)
2105+
.controlSize(.regular)
2106+
.tint(.accentColor)
21032107
.quietInteractiveSurface(enabled: motionEnabled)
21042108
}
21052109

@@ -2158,6 +2162,8 @@ private struct WelcomeDetailView: View {
21582162
Label(customAssociationActionTitle, systemImage: customAssociationActionIcon)
21592163
}
21602164
.buttonStyle(.borderedProminent)
2165+
.controlSize(.regular)
2166+
.tint(.accentColor)
21612167
.disabled(!canSubmitCustomAssociation)
21622168
.quietInteractiveSurface(enabled: motionEnabled)
21632169
}

docs/appcast.xml

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,22 @@
33
<channel>
44
<title>iData</title>
55
<item>
6-
<title>0.2.2</title>
7-
<pubDate>Thu, 16 Apr 2026 01:24:08 +0800</pubDate>
6+
<title>0.2.3</title>
7+
<pubDate>Thu, 16 Apr 2026 10:15:23 +0800</pubDate>
88
<link>https://github.com/laleoarrow/iData</link>
9-
<sparkle:version>22</sparkle:version>
10-
<sparkle:shortVersionString>0.2.2</sparkle:shortVersionString>
9+
<sparkle:version>23</sparkle:version>
10+
<sparkle:shortVersionString>0.2.3</sparkle:shortVersionString>
1111
<sparkle:minimumSystemVersion>14.0</sparkle:minimumSystemVersion>
12-
<description sparkle:format="markdown"><![CDATA[## v0.2.2
12+
<description sparkle:format="markdown"><![CDATA[## v0.2.3
1313
14-
### Bug fixes
14+
### UI/UX Refinements
15+
- **Design System Polish**: Standardized all dashboard buttons ("Start", "Handoff Rules", "Set Default") to use a consistent, harmonious `.borderedProminent` and accent color tinted style, achieving a truly united "Liquid Glass" native aesthetic.
16+
- **Visual Corner Consistency**: Dropped custom button background capsules and shapes to enforce globally tighter constraints and seamless UI composition.
1517
16-
- **Fixed blank main table after first file click or fast file switch.**
17-
VisiData was launched with a default terminal size (120×32) before the
18-
embedded xterm view reported its real dimensions. When the measured size
19-
arrived, ncurses sent only a diff against its cached small-frame state,
20-
leaving the table area completely blank with only the status bar visible.
21-
The fix discards stale transcript output and sends Ctrl+L (`\u000c`) over
22-
the PTY to force a full ncurses repaint at the correct dimensions.
23-
24-
- **Re-clicking the active file no longer restarts VisiData.**
25-
Selecting a file that is already open and running in the active session now
26-
focuses the terminal and updates the status message instead of tearing down
27-
and relaunching the session unnecessarily.
18+
### Under the Hood
19+
- **Test Integrity**: Relaxed brittle negative string matching assertions in the ContentView layout tests to allow for safely unified corner styling across the app.
2820
]]></description>
29-
<enclosure url="https://github.com/laleoarrow/iData/releases/download/v0.2.2/iData-v0.2.2-macos-universal.zip" length="4038606" type="application/octet-stream" sparkle:edSignature="bsjnDE3goXcMHXV6+jEeLwvcDZsreaP3lQj1H0DlZI/3HJnMPTz+fmKUtSD2HlVrbIjvreiIkcL9HqV2lmKvDA=="/>
21+
<enclosure url="https://github.com/laleoarrow/iData/releases/download/v0.2.3/iData-v0.2.3-macos-universal.zip" length="4046961" type="application/octet-stream" sparkle:edSignature="/ubFeyBCXPsp29KF8ukAqD6j6w3r1l19nNvRaKrLjCLbsHt0tpg2JG2X5v+3msEKKBqf3094j+M9rkSnKx8sCQ=="/>
3022
</item>
3123
</channel>
3224
</rss>

docs/releases/v0.2.3.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## v0.2.3
2+
3+
### UI/UX Refinements
4+
- **Design System Polish**: Standardized all dashboard buttons ("Start", "Handoff Rules", "Set Default") to use a consistent, harmonious `.borderedProminent` and accent color tinted style, achieving a truly united "Liquid Glass" native aesthetic.
5+
- **Visual Corner Consistency**: Dropped custom button background capsules and shapes to enforce globally tighter constraints and seamless UI composition.
6+
7+
### Under the Hood
8+
- **Test Integrity**: Relaxed brittle negative string matching assertions in the ContentView layout tests to allow for safely unified corner styling across the app.

iDataApp/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.2.2</string>
20+
<string>0.2.3</string>
2121
<key>CFBundleVersion</key>
22-
<string>22</string>
22+
<string>23</string>
2323
<key>LSMinimumSystemVersion</key>
2424
<string>14.0</string>
2525
<key>NSHighResolutionCapable</key>

0 commit comments

Comments
 (0)