File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9494 with :
9595 body : ${{ steps.changelog.outputs.content }}
9696 generate_release_notes : false
97-
9897 files : |
9998 artifacts/*.tar.gz
10099 artifacts/*.zip
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and 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
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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:
Original file line number Diff line number Diff line change 11name : simutil
22description : TUI application for launching Android Simulators / iOS Simulators and more ...
3- version : 0.0.2
3+ version : 0.0.3
44repository : https://github.com/dungngminh/simutil
55
66environment :
You can’t perform that action at this time.
0 commit comments