diff --git a/lib/Consts2.dart b/lib/Consts2.dart index 83dc225..82bd191 100644 --- a/lib/Consts2.dart +++ b/lib/Consts2.dart @@ -1 +1 @@ -const VERSION = "1.1.020325+1229"; +const VERSION = "1.1.030625+0131"; diff --git a/lib/tags/CompoundTag.dart b/lib/tags/CompoundTag.dart index 211d1bb..9f3f5c6 100644 --- a/lib/tags/CompoundTag.dart +++ b/lib/tags/CompoundTag.dart @@ -8,7 +8,9 @@ extension CompoundTagExt on CompoundTag { return ListTile( title: Text("TAG_Compound (${getKey()})"), subtitle: TagExt.getElementDescriptor( - "${value.length} tag${value.length > 1 ? "s" : ""}", + value.length == 0 + ? "No Tags" + : ("${value.length} tag${value.length > 1 ? "s" : ""}"), ), leading: TagExt.getTagIcon(getTagType()), trailing: TagExt.getElementButtons( diff --git a/pubspec.yaml b/pubspec.yaml index 5b20676..e05a02a 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: nbteditor description: A Minecraft NBT Editor written in Flutter publish_to: "none" -version: 1.1.020325+1229 +version: 1.1.030625+0131 environment: sdk: ^3.6.1 @@ -17,7 +17,7 @@ dependencies: flutter_highlighting: ^0.9.0+11.8.0 flutter_treeview: hosted: https://git.zontreck.com/api/packages/AriasCreations/pub/ - version: ^1.1.2 + version: ^1.2.020525+0254 permission_handler: ^11.3.1 libacflutter: hosted: https://git.zontreck.com/api/packages/AriasCreations/pub/ diff --git a/wininst.iss b/wininst.iss index ebb737c..3c55f65 100644 --- a/wininst.iss +++ b/wininst.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "NBT Editor" -#define MyAppVersion "1.1.012425+0821" +#define MyAppVersion "1.1.030625+0131" #define MyAppPublisher "Piccari Creations" #define MyAppURL "https://zontreck.com" #define MyAppExeName "nbteditor.exe" @@ -51,8 +51,7 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{ [Files] Source: "out\nbteditor-cli.exe"; DestDir: "{app}"; Flags: ignoreversion Source: "build\windows\x64\runner\Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion -Source: "build\windows\x64\runner\Release\flutter_windows.dll"; DestDir: "{app}"; Flags: ignoreversion -Source: "build\windows\x64\runner\Release\url_launcher_windows_plugin.dll"; DestDir: "{app}"; Flags: ignoreversion +Source: "build\windows\x64\runner\Release\*.dll"; DestDir: "{app}"; Flags: ignoreversion Source: "build\windows\x64\runner\Release\data\*"; DestDir: "{app}\data"; Flags: ignoreversion recursesubdirs createallsubdirs ; NOTE: Don't use "Flags: ignoreversion" on any shared system files