Skip to content

Commit 4c029af

Browse files
Update version (1.33.0) -> (1.33.1)
close #51
1 parent 008147f commit 4c029af

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

enduser/version.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
------ Version 1.33.1
2+
FIX: Cannot open torrent file V2 format (Issue 51)
3+
Compiler Lazarus: v3.6
4+
15
------ Version 1.33
26
ADD: Verify the working status of public trackers. (Issue 21)
37
ADD: Wrong tracker URL format from torrent files should be unselected by default (Issue 22)

metainfo/io.github.gerryferdinandus.bittorrent-tracker-editor.metainfo.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@
4646
</screenshots>
4747

4848
<releases>
49+
<release version="1.33.1" date="2024-12-8">
50+
<description>
51+
<p>This release fixes the following bugs:</p>
52+
<ul>
53+
<li>Cannot open torrent file V2 format</li>
54+
</ul>
55+
</description>
56+
</release>
4957
<release version="1.33.0" date="2023-11-18">
5058
<description>
5159
<p>

source/code/main.pas

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,10 @@ implementation
215215
);
216216

217217
//program name and version (http://semver.org/)
218-
FORM_CAPTION = 'Bittorrent tracker editor (1.33.0/LCL ' +
219-
lcl_version + '/FPC ' + {$I %FPCVERSION%} + ')';
218+
PROGRAM_VERSION = '1.33.1';
219+
220+
FORM_CAPTION = 'Bittorrent tracker editor (' + PROGRAM_VERSION +
221+
'/LCL ' + lcl_version + '/FPC ' + {$I %FPCVERSION%} + ')';
220222

221223
GROUPBOX_PRESENT_TRACKERS_CAPTION =
222224
'Present trackers in all torrent files. Select the one that you want to keep. And added to all torrent files.';

0 commit comments

Comments
 (0)