Skip to content

Commit b840b17

Browse files
committed
Fix updater config in release
1 parent 7373774 commit b840b17

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22

33

4+
## 2022.12.1 - Dec 29, 2022
5+
6+
### Changed
7+
8+
- Fix updater config
9+
10+
411
## 2022.12 - Dec 27, 2022
512

613
### Added

bin/installer/lite/sections/updater.iss

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Name: "{userdesktop}\{#MyAppName}\Toolkit Updater"; Filename: "{#MyAppBinsFolder
1313

1414
; Fix default update config
1515
[INI]
16-
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: Updater; Key: disable_clean; String: True; Components: "updater\main";
17-
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: Updater; Key: disable_repack; String: True; Components: "updater\main";
16+
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: UpdaterConfig; Key: disable_clean; String: True; Components: "updater\main";
17+
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: UpdaterConfig; Key: disable_repack; String: True; Components: "updater\main";
1818

1919
; Clean dont selected tools in tools.ini
2020
[Run]

bin/installer/lite/setup.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Indetectables Toolkit Lite"
5-
#define MyAppVersion "2022.12"
5+
#define MyAppVersion "2022.12.1"
66
#define MyAppPublisher "Indetectables"
77
#define MyAppURL "https://www.indetectables.net/"
88
#define MyAppToolsFolder "{app}\toolkit"

bin/installer/sections/updater.iss

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Name: "{userdesktop}\{#MyAppName}\Toolkit Updater"; Filename: "{#MyAppBinsFolder
1313

1414
; Fix default update config
1515
[INI]
16-
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: Updater; Key: disable_clean; String: True; Components: "updater\main";
17-
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: Updater; Key: disable_repack; String: True; Components: "updater\main";
16+
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: UpdaterConfig; Key: disable_clean; String: True; Components: "updater\main";
17+
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: UpdaterConfig; Key: disable_repack; String: True; Components: "updater\main";
1818

1919
; Clean dont selected tools in tools.ini
2020
[Run]

extras/ghidra-setup.iss

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#define MyAppName "Indetectables Toolkit Extras: Ghidra"
55
#define MyAppNameOriginal "Indetectables Toolkit"
6-
#define MyAppVersion "2022.12"
6+
#define MyAppVersion "2022.12.1"
77
#define MyAppPublisher "Indetectables"
88
#define MyAppURL "https://www.indetectables.net/"
99
#define MyAppToolsFolder "{app}\toolkit"
@@ -66,8 +66,8 @@ Name: "{userdesktop}\{#MyAppNameOriginal}\Toolkit Updater"; Filename: "{#MyAppBi
6666

6767
; Fix default update config
6868
[INI]
69-
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: Updater; Key: disable_clean; String: True; Components: "updater\main";
70-
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: Updater; Key: disable_repack; String: True; Components: "updater\main";
69+
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: UpdaterConfig; Key: disable_clean; String: True; Components: "updater\main";
70+
Filename: {#MyAppBinsFolder}\updater\tools.ini; Section: UpdaterConfig; Key: disable_repack; String: True; Components: "updater\main";
7171

7272

7373

0 commit comments

Comments
 (0)