Skip to content

Commit ed22e82

Browse files
committed
version will be 4.1
1 parent b6e87cb commit ed22e82

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

bt/bt.aps

21.3 KB
Binary file not shown.

bt/bt.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ IDI_ICON1 ICON "icon.ico"
22
IDI_ICON2 ICON "pdf.ico"
33

44
1 VERSIONINFO
5-
FILEVERSION 5,0,0,0
6-
PRODUCTVERSION 5,0,0,0
5+
FILEVERSION 4,0,0,0
6+
PRODUCTVERSION 4,0,0,0
77
FILEFLAGSMASK 0x3fL
88
FILEFLAGS 0x0L
99
FILEOS 0x40004L
@@ -16,12 +16,12 @@ BEGIN
1616
BEGIN
1717
VALUE "CompanyName", "Ivan Gavryliuk"
1818
VALUE "FileDescription", "Browser Tamer"
19-
VALUE "FileVersion", "5.0.0.0"
19+
VALUE "FileVersion", "4.0.0.0"
2020
VALUE "InternalName", "Browser Tamer"
2121
VALUE "LegalCopyright", "Copyright (C) 2024 by Ivan Gavryliuk"
2222
VALUE "OriginalFilename", "bt.exe"
2323
VALUE "ProductName", "Browser Tamer"
24-
VALUE "ProductVersion", "5.0.0.0"
24+
VALUE "ProductVersion", "4.0.0.0"
2525
END
2626
END
2727
BLOCK "VarFileInfo"

docs/release-notes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 5.0.0
1+
## 4.1.0
22

33
### New features
44
- Introducing **Pipe debugger** - a very detailed representation of how BT processes URLs that can be used to understand BT and test how rules and substitutions are applied. Accessible from the `Tools` menu.

pre-build.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ $v2 = $version + ".0"
88

99
# update version in bt.rc
1010
(Get-Content .\bt\bt.rc) `
11-
-replace "5,\d+,\d+,\d+", "$v1" |
11+
-replace "4,\d+,\d+,\d+", "$v1" |
1212
Out-File .\bt\bt.rc
1313
(Get-Content .\bt\bt.rc) `
14-
-replace "5\.\d+\.\d+\.\d+", "$v2" |
14+
-replace "4\.\d+\.\d+\.\d+", "$v2" |
1515
Out-File .\bt\bt.rc

0 commit comments

Comments
 (0)