Skip to content

Commit 71092a8

Browse files
committed
Preparing for release
1 parent 253e3bc commit 71092a8

File tree

4 files changed

+24
-21
lines changed

4 files changed

+24
-21
lines changed

package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -188,14 +188,18 @@
188188
},
189189
"build": {
190190
"productName": "Android Accessibility Inspector",
191-
"appId": "com.jwlilly.accessibility-inspector-app",
191+
"appId": "com.jwlilly.android-accessibility-inspector-app",
192192
"asar": true,
193193
"asarUnpack": "**\\*.{node,dll}",
194194
"files": [
195195
"dist",
196196
"node_modules",
197197
"package.json"
198198
],
199+
"nsis": {
200+
"oneClick": false,
201+
"allowToChangeInstallationDirectory": true
202+
},
199203
"mac": {
200204
"sign": ".erb/scripts/notarize.js",
201205
"notarize": false,
@@ -248,15 +252,12 @@
248252
"publish": {
249253
"provider": "github",
250254
"owner": "jwlilly",
251-
"repo": "android-accessibility-insepctor"
255+
"repo": "Android-Accessibility-Inspector-App"
252256
}
253257
},
254-
"collective": {
255-
"url": "https://opencollective.com/electron-react-boilerplate-594"
256-
},
257258
"devEngines": {
258-
"node": ">=14.x",
259-
"npm": ">=7.x"
259+
"node": ">=20.x",
260+
"npm": ">=10.x"
260261
},
261262
"electronmon": {
262263
"patterns": [

release/app/package-lock.json

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

release/app/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "electron-react-boilerplate",
3-
"version": "4.6.0",
4-
"description": "A foundation for scalable desktop apps",
5-
"license": "MIT",
2+
"name": "android-accessibility-inspector",
3+
"version": "2.0.0",
4+
"description": "View and analyze the accessibility tree for Android apps",
5+
"license": "GPL-3.0-only",
66
"author": {
7-
"name": "Electron React Boilerplate Maintainers",
7+
"name": "John Lilly",
88
"email": "lilly.john.w@gmail.com",
9-
"url": "https://github.com/electron-react-boilerplate"
9+
"url": "https://github.com/jwlilly/Android-Accessibility-Inspector-App"
1010
},
1111
"main": "./dist/main/main.js",
1212
"scripts": {

src/renderer/views/main-view.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ function MainView(): React.JSX.Element {
228228
/>
229229
</div>
230230
<span
231-
className={`indicator-item badge badge-error badge-xs ${selectedDevice ? 'hidden' : ''} ${selectedDevice || deviceExpanded ? '' : 'motion-safe:animate-bounce top-[-6px] right-[-6px]'}`}
231+
className={`indicator-item badge badge-error badge-xs ${selectedDevice ? 'hidden' : ''} ${selectedDevice || deviceExpanded ? '' : 'top-[-6px] right-[-6px] motion-safe:animate-bounce '}`}
232232
>
233233
<span className="sr-only">No device is connected</span>
234234
</span>
@@ -246,7 +246,7 @@ function MainView(): React.JSX.Element {
246246
</Navbar.End>
247247
</Navbar>
248248

249-
<div className="overflow-hidden flex grow max-w-[calc(100vw-1rem)]">
249+
<div className="overflow-hidden flex grow max-w-[calc(100vw-1rem)]" role="region" aria-label="Screenshot">
250250
<div
251251
className={`shrink-0 contents pt-4 ${isTreeDragging ? 'dragging' : ''}`}
252252
style={{ width: treeW, maxWidth: treeW }}
@@ -265,7 +265,7 @@ function MainView(): React.JSX.Element {
265265
label="Resize between screenshot and view hierarchy"
266266
/>
267267
<div className="flex grow">
268-
<div className="overflow-x-auto overflow-y-auto grow">
268+
<div className="overflow-x-auto overflow-y-auto grow" role="region" aria-label="View Heirarchy">
269269
<BasicTreeView
270270
tree={viewHierarchy}
271271
onViewSelected={viewSelected}
@@ -282,6 +282,8 @@ function MainView(): React.JSX.Element {
282282
<div
283283
className={`overflow-y-auto overflow-x-auto shrink-0 mt-4 ${isDetailsDragging ? 'dragging select-none' : ''}`}
284284
style={{ width: detailsW }}
285+
role="region"
286+
aria-label="View Details"
285287
>
286288
<ViewDetails
287289
selectedView={selectedView}

0 commit comments

Comments
 (0)