Skip to content

Commit 75b3452

Browse files
authored
chore: temp hide adb tools for testing (#3)
1 parent c218d37 commit 75b3452

5 files changed

Lines changed: 16 additions & 9 deletions

File tree

.github/workflows/release.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ jobs:
9494
with:
9595
body: ${{ steps.changelog.outputs.content }}
9696
generate_release_notes: false
97-
9897
files: |
9998
artifacts/*.tar.gz
10099
artifacts/*.zip

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: 6 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:

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)