Skip to content

Commit 2a54ed3

Browse files
committed
v1.5.0 — mobile UX overhaul: GitHub project selector, native tab bar, settings tab
1 parent 3746052 commit 2a54ed3

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## [1.5.0] — 2026-03-08
4+
5+
### Added
6+
7+
- **GitHub project selector** — Connect to any GitHub repo from mobile chat home (`owner/repo` or full URL)
8+
- **Settings tab on mobile** — Full settings panel accessible from bottom tab bar
9+
- **Native-style tab bar** — Slim iOS-native tab bar with bare icons, labels, and haptic feedback (5ms vibration)
10+
11+
### Changed
12+
13+
- **Mobile tabs curated** — Chat, Editor, Git, Workshop, Settings (dropped desktop-only views: Skills, Prism, Preview, Diff)
14+
- **44px touch targets** — Tab bar buttons meet iOS HIG minimum with `touch-manipulation` CSS
15+
- **Hidden model picker on mobile** — Mode selector (Ask/Agent/Plan) stays, model name hidden to save space
16+
- **Cleaner connect form** — Icon-prefixed inputs (globe + lock), focus rings, always-visible form
17+
- **Mobile header polish** — Dynamic workspace name, smaller connection dot, reduced padding
18+
- **Hidden chat header on mobile** — Saves 40px vertical space; session info available elsewhere
19+
- **"Let's weave" branding** — Aligns with Knot Code identity (weaving/knots metaphor)
20+
- **Minimal composer on mobile** — No branch pill, permissions toggle, or gateway status in toolbar
21+
22+
### Removed
23+
24+
- Suggestion cards on mobile (too cluttered on small screens)
25+
- Open Folder / Clone Repo buttons on mobile (replaced by GitHub project selector)
26+
- Mode switcher in mobile header (redundant with bottom tab bar)
27+
- "Gateway active" status text row (colored dot is sufficient)
28+
- KnotCode footer on mobile
29+
330
## [1.4.0] — 2026-03-07
431

532
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-editor",
3-
"version": "1.4.0",
3+
"version": "1.5.0",
44
"private": true,
55
"scripts": {
66
"frontend:dev": "next dev --turbopack",

src-tauri/gen/apple/project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ targets:
5252
- UIInterfaceOrientationPortraitUpsideDown
5353
- UIInterfaceOrientationLandscapeLeft
5454
- UIInterfaceOrientationLandscapeRight
55-
CFBundleShortVersionString: 1.4.0
56-
CFBundleVersion: "1.4.0"
55+
CFBundleShortVersionString: 1.5.0
56+
CFBundleVersion: "1.5.0"
5757
entitlements:
5858
path: app_iOS/app_iOS.entitlements
5959
scheme:

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
33
"productName": "KnotCode",
4-
"version": "1.4.0",
4+
"version": "1.5.0",
55
"identifier": "ai.openknot.code-editor",
66
"build": {
77
"frontendDist": "../out",

0 commit comments

Comments
 (0)