Skip to content

Commit

Permalink
Hotfix: Correct windows build path used in installer
Browse files Browse the repository at this point in the history
  • Loading branch information
nilshenrich committed Jul 7, 2024
2 parents cf6354c + e741b25 commit 5e36c74
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions flutter_app/install/windows/setupscript.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define MyAppName "File Tree Hasher"
#define MyAppVersion "2.0.1"
#define MyAppVersion "2.0.1+3"
#define MyAppPublisher "Nils Henrich"
#define MyAppURL "https://nilshenrich.github.io/FileTreeHasher/"
#define MyAppExeName "file_tree_hasher.exe"
Expand Down Expand Up @@ -36,7 +36,7 @@ Name: "english"; MessagesFile: "compiler:Default.isl"
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked

[Files]
Source: "..\..\build\windows\runner\Release\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "..\..\build\windows\x64\runner\Release\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs

[Registry]
;Root: HKA; Subkey: "Software\Classes\{#MyAppAssocExt}\OpenWithProgids"; ValueType: string; ValueName: "{#MyAppAssocKey}"; ValueData: ""; Flags: uninsdeletevalue
Expand Down
2 changes: 1 addition & 1 deletion flutter_app/lib/defines/datatypes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// # @file datatypes.dart
// # @author Nils Henrich
// # @brief Definition of useful datatypes usable in entire project
// # @version 2.0.1
// # @version 2.0.1+3
// # @date 2023-05-15
// #
// # @copyright Copyright (c) 2023
Expand Down
2 changes: 1 addition & 1 deletion flutter_app/lib/defines/defaults.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// # @file defaults
// # @author Nils Henrich
// # @brief All globally defined default values are set here
// # @version 2.0.1
// # @version 2.0.1+3
// # @date 2023-03-29
// #
// # @copyright Copyright (c) 2023
Expand Down
2 changes: 1 addition & 1 deletion flutter_app/lib/defines/hashalgorithms.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// # @file hashalgorithms.dart
// # @author Nils Henrich
// # @brief Global definitions about hash algorithms that are used
// # @version 2.0.1
// # @version 2.0.1+3
// # @date 2023-03-29
// #
// # @copyright Copyright (c) 2023
Expand Down
4 changes: 2 additions & 2 deletions flutter_app/lib/defines/info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// # @file info.dart
// # @author Nils Henrich
// # @brief General information about the app
// # @version 2.0.1
// # @version 2.0.1+3
// # @date 2023-06-18
// #
// # @copyright Copyright (c) 2023
Expand All @@ -18,4 +18,4 @@ const String HashFileHeader = """*** File Tree Hasher ***
Author: Nils Henrich
Website: https://nilshenrich.github.io/FileTreeHasher/
Source code: https://github.com/nilshenrich/FileTreeHasher
Version: 2.0.1""";
Version: 2.0.1+3""";
2 changes: 1 addition & 1 deletion flutter_app/lib/defines/styles.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// # @file styles.dart
// # @author Nils Henrich
// # @brief General widget styles
// # @version 2.0.1
// # @version 2.0.1+3
// # @date 2023-04-03
// #
// # @copyright Copyright (c) 2023
Expand Down
2 changes: 1 addition & 1 deletion flutter_app/lib/functions/general.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// # @file general.dart
// # @author Nils Henrich
// # @brief Collection of general functions and algorithms
// # @version 2.0.1
// # @version 2.0.1+3
// # @date 2023-04-22
// #
// # @copyright Copyright (c) 2023
Expand Down
2 changes: 1 addition & 1 deletion flutter_app/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// # @file main.dart
// # @author Nils Henrich
// # @brief App entry point
// # @version 2.0.1
// # @version 2.0.1+3
// # @date 2023-03-19
// #
// # @copyright Copyright (c) 2023
Expand Down
2 changes: 1 addition & 1 deletion flutter_app/lib/templates/contentarea.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// # @file contentarea.dart
// # @author Nils Henrich
// # @brief Big content clusters like header bar or body
// # @version 2.0.1
// # @version 2.0.1+3
// # @date 2023-03-30
// #
// # @copyright Copyright (c) 2023
Expand Down
2 changes: 1 addition & 1 deletion flutter_app/lib/templates/filetree.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// # @file filetree.dart
// # @author Nils Henrich
// # @brief Build file tree from system path and provide hash generating and checking
// # @version 2.0.1
// # @version 2.0.1+3
// # @date 2023-12-07
// #
// # @copyright Copyright (c) 2023
Expand Down
2 changes: 1 addition & 1 deletion flutter_app/lib/templates/hashselector.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// # @author Nils Henrich
// # @brief Template for hash selection drop-down menu.
// # Globally in header bar or special in file tree
// # @version 2.0.1
// # @version 2.0.1+3
// # @date 2023-04-03
// #
// # @copyright Copyright (c) 2023
Expand Down
2 changes: 1 addition & 1 deletion flutter_app/lib/templates/headercontroller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// # @file headercontroller.dart
// # @author Nils Henrich
// # @brief Template for general control section sitting in the header bar
// # @version 2.0.1
// # @version 2.0.1+3
// # @date 2023-03-29
// #
// # @copyright Copyright (c) 2023
Expand Down
2 changes: 1 addition & 1 deletion flutter_app/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: file_tree_hasher
description: Hash generation and comparison tool
publish_to: "none"
version: 2.0.1
version: 2.0.1+3

environment:
sdk: ">=3.1.0 <4.0.0"
Expand Down

0 comments on commit 5e36c74

Please sign in to comment.