Skip to content

Commit 07c6d66

Browse files
committed
Bump version numbers to 2.0.20
This release drops the `alpha` tag and moves to a normal versioning scheme: future versions will bump the major / minor / patch versions depending on the scope of the changes
1 parent 8ff9de5 commit 07c6d66

File tree

6 files changed

+65
-8
lines changed

6 files changed

+65
-8
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
55

6+
Thanks to the following contributors who worked on this release:
7+
- @cameronwhite
8+
9+
### Added
10+
11+
### Changed
12+
13+
### Fixed
14+
15+
## [2.0.20] - 2024-11-03
16+
17+
This release drops the `alpha` tag and moves to a normal versioning scheme: future versions will bump the major / minor / patch versions depending on the scope of the changes.
18+
619
Thanks to the following contributors who worked on this release:
720
- @cameronwhite
821
- @adam-eldredge
@@ -481,7 +494,8 @@ Thanks to the following contributors who worked on this release:
481494
## [Alpha 1] - 2014-07-27
482495
* The first alpha release!
483496

484-
[Unreleased]: https://github.com/powertab/powertabeditor/compare/2.0.0-alpha19...HEAD
497+
[Unreleased]: https://github.com/powertab/powertabeditor/compare/2.0.20...HEAD
498+
[2.0.20]: https://github.com/powertab/powertabeditor/releases/tag/2.0.20
485499
[Alpha 19]: https://github.com/powertab/powertabeditor/releases/tag/2.0.0-alpha19
486500
[Alpha 18]: https://github.com/powertab/powertabeditor/releases/tag/2.0.0-alpha18
487501
[Alpha 17]: https://github.com/powertab/powertabeditor/releases/tag/2.0.0-alpha17

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set( CMAKE_MODULE_PATH
1818
${CMAKE_SOURCE_DIR}/cmake/third_party/modules
1919
)
2020

21-
set( PTE_VERSION 2.0.0-alpha19 )
21+
set( PTE_VERSION 2.0.20 )
2222

2323
include( PTE_Platform )
2424
include( PTE_CompilerFlags )

installer/osx/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ project( installer )
66
set( CPACK_PACKAGE_NAME "Power Tab Editor" )
77
set( CPACK_PACKAGE_VENDOR "Power Tab" )
88

9-
set( CPACK_PACKAGE_VERSION_MAJOR "1" )
10-
set( CPACK_PACKAGE_VERSION_MINOR "98" )
11-
set( CPACK_PACKAGE_VERSION_PATCH "19" )
9+
set( CPACK_PACKAGE_VERSION_MAJOR "2" )
10+
set( CPACK_PACKAGE_VERSION_MINOR "0" )
11+
set( CPACK_PACKAGE_VERSION_PATCH "20" )
1212
set( CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/license.txt" )
1313

1414
set( system_name "osx" )

installer/snap/snapcraft.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
name: powertabeditor
66
base: core20
7-
version: '2.0.0-alpha19'
7+
version: '2.0.20'
88
adopt-info: powertabeditor
99

1010
grade: stable
@@ -16,7 +16,7 @@ parts:
1616
- /root/parts/powertabeditor/install/usr/local/share/metainfo/powertabeditor.metainfo.xml
1717
plugin: cmake
1818
source: https://github.com/powertab/powertabeditor.git
19-
source-tag: 2.0.0-alpha19
19+
source-tag: 2.0.20
2020
cmake-generator: Ninja
2121
cmake-parameters:
2222
- -DCMAKE_BUILD_TYPE=Release

installer/windows/installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define ProductName "Power Tab Editor"
22
#define ExeName "powertabeditor"
33
#define GroupName "Power Tab"
4-
#define ProductVersion "2.0.0-alpha19"
4+
#define ProductVersion "2.0.20"
55

66
#define public Dependency_NoExampleSetup
77
#include "CodeDependencies.iss"

xdg/powertabeditor.metainfo.xml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,49 @@
4141
</provides>
4242

4343
<releases>
44+
<release version="2.0.20" date="2024-11-03">
45+
<url>https://github.com/powertab/powertabeditor/releases/tag/2.0.20</url>
46+
<description>
47+
<p>New Features / Improvements</p>
48+
<ul>
49+
<li>Unsaved modified files can now be automatically backed at a regular interval, controlled via the Preferences dialog. The backup folder can be opened via the File menu (#392)</li>
50+
<li>The preferred MIDI output device is now tracked by name rather than by port number, which is more robust if e.g. a new device is plugged in</li>
51+
<li>Chord names can now use a custom label instead of the auto-generated chord name. This is primarily used for chords imported from Guitar Pro files (#442)</li>
52+
<li>When attempting to insert a note at the end of a system, a space is now automatically inserted to allow the note to be added (#439)</li>
53+
<li>Extended the view filter menu to support filtering by a specific player without requiring a filter to be explicitly created (#301)</li>
54+
<li>Copying and pasting selections which include barlines is now supported (#416)</li>
55+
<li>Improved the smoothness of MIDI pitch wheel events (bends, slides, etc), which now use the full 14-bit resolution instead of 7-bit</li>
56+
<li>Added Turkish translation (#406)</li>
57+
<li>Added Chinese (Simplified) translation (#476, #477, #482)</li>
58+
<li>Updated French translation (#406, #440)</li>
59+
<li>Updated German translation (#473, #474, #481, #482)</li>
60+
<li>Updated Russian translation (#407, #409, #437, #438)</li>
61+
<li>Updated Spanish translation (#445)</li>
62+
</ul>
63+
<p>Changes</p>
64+
<ul>
65+
<li>Chord diagrams now display the fret number of the top fret instead of the next fret after it (#408)</li>
66+
<li>Removed the 32-bit Windows installers</li>
67+
<li>A C++20 compiler is now required</li>
68+
<li>Updated the minimum required version of `RtMidi` to 4.0</li>
69+
<li>Updated the minimum required version of `boost` to 1.74</li>
70+
<li>Updated the minimum required version of `Qt` to 6.2</li>
71+
</ul>
72+
<p>Bug Fixes</p>
73+
<ul>
74+
<li>Fixed a bug that caused some preferences such as custom shortcuts to not persist on macOS. Note that all other preferences (such as MIDI settings) are reset by this fix and will need to be manually changed to the desired values (#447)</li>
75+
<li>Fixed a frequent crash when the preference to play inserted notes while editing is enabled</li>
76+
<li>Fixed potential crashes when importing Guitar Pro files (#442, #444)</li>
77+
<li>Fixed a bug where the scroll bar's range did not update when the visible height of the score shrank (#443)</li>
78+
<li>Fixed a bug where the caret was rendered when printing or displaying a print preview (#441)</li>
79+
<li>Fixed issues where the top fret number of a chord diagram could be cut off in the chord name dialog (#408)</li>
80+
<li>Fixed a crash when an alternate ending was located on the last position of a system (#449)</li>
81+
<li>Fixed a crash during playback when a score contained a `Fine` symbol (#470)</li>
82+
<li>Fixed build errors with `minizip-ng` (#478)</li>
83+
<li>Fixed crashes due to menu items not being disabled correctly after switching tabs (#486)</li>
84+
</ul>
85+
</description>
86+
</release>
4487
<release version="2.0.0-alpha19" date="2022-10-17">
4588
<url>https://github.com/powertab/powertabeditor/releases/tag/2.0.0-alpha19</url>
4689
<description>

0 commit comments

Comments
 (0)