File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed
metadata/en-US/changelogs Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,13 @@ jobs:
184184 flutter clean
185185 flutter pub get
186186 flutter doctor -v
187+ - name : Build nessesary files
188+ working-directory : ./
189+ run : |
190+ cd tools
191+ dart pub get
192+ cd ..
193+ dart run tools/generate.dart
187194 - name : 🏭 Build MSIX
188195 run : |
189196 dart run msix:create
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class _PacksDialogState extends State<PacksDialog>
5454 void initState () {
5555 super .initState ();
5656 _packsFuture = _getPacks ();
57- _tabController = TabController (length: 3 , vsync: this );
57+ _tabController = TabController (length: 2 , vsync: this );
5858 _controller.addStatusListener ((status) {
5959 if (status == AnimationStatus .dismissed) {
6060 setState (() {
@@ -158,10 +158,6 @@ class _PacksDialogState extends State<PacksDialog>
158158 icon: const PhosphorIcon (PhosphorIconsLight .folder),
159159 label: Text (AppLocalizations .of (context).installed),
160160 ),
161- HorizontalTab (
162- icon: const PhosphorIcon (PhosphorIconsLight .globe),
163- label: Text (AppLocalizations .of (context).browse),
164- ),
165161 if (! isWorldLoaded)
166162 HorizontalTab (
167163 icon: const PhosphorIcon (PhosphorIconsLight .notePencil),
@@ -227,11 +223,6 @@ class _PacksDialogState extends State<PacksDialog>
227223 onUnselect: _unselect,
228224 selected: selected,
229225 ),
230- Center (
231- child: Text (
232- AppLocalizations .of (context).comingSoon,
233- ),
234- ),
235226 if (bloc == null )
236227 _EditorPacksView (onReload: _reloadPacks),
237228 ],
Original file line number Diff line number Diff line change 4141 mkdir -p $CRAFT_PART_INSTALL/usr/libexec
4242 cp -r $CRAFT_PART_SRC $CRAFT_PART_INSTALL/usr/libexec/flutter
4343 ln -sf $CRAFT_PART_INSTALL/usr/libexec/flutter/bin/flutter $CRAFT_PART_INSTALL/usr/bin/flutter
44+ ln -sf $CRAFT_PART_INSTALL/usr/libexec/flutter/bin/cache/dart-sdk/bin/dart $CRAFT_PART_INSTALL/usr/bin/dart
4445 export PATH="$CRAFT_PART_INSTALL/usr/bin:$PATH"
4546 flutter doctor
4647 build-packages :
Original file line number Diff line number Diff line change 1- * Add snap support
1+ * Add snap support
2+ * Rename single player and multiplayer dialog
3+ * Remove browse tab
You can’t perform that action at this time.
0 commit comments