Skip to content

Commit 1168b57

Browse files
vveerrggclaude
andcommitted
fix: full-screen Monokai background, Apple squircle icon, correct bundle ID
- MainView: add .frame(maxWidth/maxHeight: .infinity) so Monokai bg fills entire iPad viewport instead of showing white behind 340pt content - MainView: add .clipShape(RoundedRectangle(cornerRadius: 26.8, style: .continuous)) for Apple-standard squircle on the app icon - QA-AUTOMATION: fix bundle ID from com.nostrkey.plugin to com.nostrkey (iOS target) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c689d74 commit 1168b57

20 files changed

Lines changed: 137 additions & 288 deletions

QA-AUTOMATION/ui-target-map.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"screen_size": "1668x2388",
66
"screenshot_size": "1668x2388",
77
"density": "2x",
8-
"bundle_id": "com.nostrkey.plugin",
8+
"bundle_id": "com.nostrkey",
99
"scheme": "NostrKey (iOS)",
1010
"project": "apple/NostrKey.xcodeproj",
1111
"notes": "UDID discovered at runtime via xcrun simctl list devices booted. If not booted, auto-boots iPad Air M3."
@@ -37,8 +37,8 @@
3737
"title": "Container App",
3838
"description": "SwiftUI MainView showing NostrKey container app (Monokai theme, 340pt scroll view)",
3939
"pre_actions": [
40-
{ "type": "terminate", "bundle_id": "com.nostrkey.plugin" },
41-
{ "type": "launch", "bundle_id": "com.nostrkey.plugin" },
40+
{ "type": "terminate", "bundle_id": "com.nostrkey" },
41+
{ "type": "launch", "bundle_id": "com.nostrkey" },
4242
{ "type": "wait", "seconds": 3 }
4343
],
4444
"action": { "type": "none" },

apple/Shared (App)/MainView.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ struct MainView: View {
5151
Image("bigicon")
5252
.resizable()
5353
.frame(width: 120, height: 120)
54+
.clipShape(RoundedRectangle(cornerRadius: 26.8, style: .continuous))
5455

5556
// Title
5657
Text("NostrKey")
@@ -180,6 +181,7 @@ struct MainView: View {
180181
}
181182
.frame(width: 340)
182183
.fixedSize(horizontal: true, vertical: true)
184+
.frame(maxWidth: .infinity, maxHeight: .infinity)
183185
.background(Color.monokaiBg.ignoresSafeArea())
184186
}
185187

distros/chrome/_locales/en/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "The extension display name."
55
},
66
"extension_description": {
7-
"message": "Nostr key manager and signer for web apps. Securely store your private keys and sign events without exposing them to websites.",
7+
"message": "Nostr key manager and signer. Store your private keys securely and sign events without exposing them.",
88
"description": "Extension summary shown in browser stores and extension management pages."
99
}
1010
}

distros/chrome/background-sw.build.js

Lines changed: 3 additions & 14 deletions
Large diffs are not rendered by default.

distros/chrome/background.build.js

Lines changed: 3 additions & 14 deletions
Large diffs are not rendered by default.

distros/chrome/event_history/event_history.build.js

Lines changed: 11 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

distros/chrome/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"default_locale": "en",
44
"name": "__MSG_extension_name__",
55
"description": "__MSG_extension_description__",
6-
"version": "1.5.4",
6+
"version": "1.5.5",
77
"short_name": "NostrKey",
88
"author": "Humanjava Enterprises Inc",
99
"homepage_url": "https://nostrkey.com",

distros/chrome/nostr-keys/nostr-keys.build.js

Lines changed: 6 additions & 16 deletions
Large diffs are not rendered by default.

distros/chrome/options.build.js

Lines changed: 14 additions & 24 deletions
Large diffs are not rendered by default.

distros/chrome/permission/permission.build.js

Lines changed: 1 addition & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)