Skip to content

Commit f055289

Browse files
committed
chore: temp hide adb tools for testing (#3)
1 parent c218d37 commit f055289

8 files changed

Lines changed: 21 additions & 16 deletions

File tree

.github/workflows/deploy-homebrew.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy to Homebrew
22

33
on:
44
release:
5-
types: [published]
5+
types: [released]
66
workflow_call:
77
workflow_dispatch:
88

.github/workflows/deploy-pub-dev.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Deploy to pub.dev
22

33
on:
4-
release:
5-
types: [published]
64
workflow_call:
75
workflow_dispatch:
86

.github/workflows/deploy-winget.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Deploy to WinGet
22

33
on:
44
release:
5-
types: [published]
5+
types: [released]
66
workflow_call:
77
workflow_dispatch:
88

.github/workflows/release.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,18 +89,16 @@ jobs:
8989
echo "$CHANGELOG" >> $GITHUB_OUTPUT
9090
echo "EOF" >> $GITHUB_OUTPUT
9191
92-
- name: Create GitHub Release
92+
- name: Create Draft GitHub Release
9393
uses: softprops/action-gh-release@v2
9494
with:
9595
body: ${{ steps.changelog.outputs.content }}
9696
generate_release_notes: false
97-
97+
token: ${{ secrets.GH_PAT }}
9898
files: |
9999
artifacts/*.tar.gz
100100
artifacts/*.zip
101101
artifacts/checksums.txt
102-
env:
103-
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
104102
105103
# deploy-pub-dev:
106104
# name: Deploy to pub.dev

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
<!-- ## [Unreleased] -->
9+
10+
## [0.0.3] - 2026-03-17
11+
12+
### Changed
13+
14+
- Temporarily hide ADB Tools menu
15+
816
## [0.0.2] - 2026-03-16
917

1018
### Added

lib/services/settings_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class SettingsService {
5353

5454
String _toYaml(AppSettings settings) {
5555
final buf = StringBuffer()
56-
..writeln('# SimUtil Settings')
56+
..writeln('# Simutil Settings')
5757
..writeln()
5858
..writeln('theme: ${settings.themeName}')
5959
..writeln(

lib/simutil_app.dart

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class _SimutilAppState extends State<SimutilApp> {
149149
final parts = <String>[
150150
'Launch: <enter>',
151151
'Options: <space>',
152-
'ADB Tools: n',
152+
// 'ADB Tools: n',
153153
'Refresh: r',
154154
'Switch: <tab>',
155155
'Quit: q',
@@ -183,11 +183,11 @@ class _SimutilAppState extends State<SimutilApp> {
183183
case LogicalKey.keyR:
184184
_refreshDevices();
185185
return true;
186-
case LogicalKey.keyN:
187-
if (_focusKey == 'android') {
188-
_showAdbTools();
189-
}
190-
return true;
186+
// case LogicalKey.keyN:
187+
// if (_focusKey == 'android') {
188+
// _showAdbTools();
189+
// }
190+
// return true;
191191
case LogicalKey.keyS:
192192
return true;
193193
case LogicalKey.keyQ:
@@ -197,6 +197,7 @@ class _SimutilAppState extends State<SimutilApp> {
197197
}
198198
}
199199

200+
// ignore: unused_element
200201
Future<void> _showAdbTools() async {
201202
final option = await showAdbToolsDialog(context);
202203
if (option == null) return;

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: simutil
22
description: TUI application for launching Android Simulators / iOS Simulators and more ...
3-
version: 0.0.2
3+
version: 0.0.3
44
repository: https://github.com/dungngminh/simutil
55

66
environment:

0 commit comments

Comments
 (0)