Installer should now detect all DLLs in the binary root directory.
This commit is contained in:
zontreck 2025-03-06 01:32:43 -07:00
parent 756bedb371
commit 3dff4b7cad
4 changed files with 8 additions and 7 deletions

View file

@ -1 +1 @@
const VERSION = "1.1.020325+1229"; const VERSION = "1.1.030625+0131";

View file

@ -8,7 +8,9 @@ extension CompoundTagExt on CompoundTag {
return ListTile( return ListTile(
title: Text("TAG_Compound (${getKey()})"), title: Text("TAG_Compound (${getKey()})"),
subtitle: TagExt.getElementDescriptor( 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()), leading: TagExt.getTagIcon(getTagType()),
trailing: TagExt.getElementButtons( trailing: TagExt.getElementButtons(

View file

@ -1,7 +1,7 @@
name: nbteditor name: nbteditor
description: A Minecraft NBT Editor written in Flutter description: A Minecraft NBT Editor written in Flutter
publish_to: "none" publish_to: "none"
version: 1.1.020325+1229 version: 1.1.030625+0131
environment: environment:
sdk: ^3.6.1 sdk: ^3.6.1
@ -17,7 +17,7 @@ dependencies:
flutter_highlighting: ^0.9.0+11.8.0 flutter_highlighting: ^0.9.0+11.8.0
flutter_treeview: flutter_treeview:
hosted: https://git.zontreck.com/api/packages/AriasCreations/pub/ hosted: https://git.zontreck.com/api/packages/AriasCreations/pub/
version: ^1.1.2 version: ^1.2.020525+0254
permission_handler: ^11.3.1 permission_handler: ^11.3.1
libacflutter: libacflutter:
hosted: https://git.zontreck.com/api/packages/AriasCreations/pub/ hosted: https://git.zontreck.com/api/packages/AriasCreations/pub/

View file

@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "NBT Editor" #define MyAppName "NBT Editor"
#define MyAppVersion "1.1.012425+0821" #define MyAppVersion "1.1.030625+0131"
#define MyAppPublisher "Piccari Creations" #define MyAppPublisher "Piccari Creations"
#define MyAppURL "https://zontreck.com" #define MyAppURL "https://zontreck.com"
#define MyAppExeName "nbteditor.exe" #define MyAppExeName "nbteditor.exe"
@ -51,8 +51,7 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{
[Files] [Files]
Source: "out\nbteditor-cli.exe"; DestDir: "{app}"; Flags: ignoreversion 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\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
Source: "build\windows\x64\runner\Release\flutter_windows.dll"; DestDir: "{app}"; Flags: ignoreversion Source: "build\windows\x64\runner\Release\*.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\data\*"; DestDir: "{app}\data"; Flags: ignoreversion recursesubdirs createallsubdirs 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 ; NOTE: Don't use "Flags: ignoreversion" on any shared system files