Skip to content

Commit

Permalink
Revise version to v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rerrahkr committed Jan 22, 2023
1 parent b31d320 commit 9c2fac3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion BambooTracker/gui/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3012,7 +3012,7 @@ void MainWindow::on_actionAbout_triggered()
{
static const QString APP_NAME = "BambooTracker v" + QString::fromStdString(Version::ofApplicationInString());
static const QString APP_DESC = tr("YM2608 Music Tracker");
static constexpr char COPY[] = "Copyright (C) 2018-2022 Rerrah";
static constexpr char COPY[] = "Copyright (C) 2018-2023 Rerrah";
static const QString WEB = tr("Web:")
+ R"( <a href="https://bambootracker.github.io/BambooTracker/">https://bambootracker.github.io/BambooTracker/</a>)";

Expand Down
6 changes: 3 additions & 3 deletions BambooTracker/version.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2018-2022 Rerrah
* Copyright (C) 2018-2023 Rerrah
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
Expand Down Expand Up @@ -54,8 +54,8 @@ class Version
private:
// Application version
static constexpr unsigned int appMajor = 0;
static constexpr unsigned int appMinor = 5;
static constexpr unsigned int appRevision = 3;
static constexpr unsigned int appMinor = 6;
static constexpr unsigned int appRevision = 0;

// Module file version
static constexpr unsigned int modFileMajor = 1;
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## v0.6.0 (2023-01-22)

### Added

- Add toolbar items of importing/exporting a bank file to the instrument list
Expand All @@ -11,7 +13,7 @@
- [#433] - Add key cut note (thanks [@wildmatsu])
- [#471] - Support FM Towns .pmb file import (thanks [@OPNA2608])
- [#472] - Add SSG mixing level configuration for VGM export ([#436]; thanks [@ValleyBell], [@nyanpasu64])
- Add partial repeat settings for ADPCM samples ([#465]; thanks [@pedipanol])
- [#476] - Add partial repeat settings for ADPCM samples ([#465]; thanks [@pedipanol])

### Changed

Expand Down Expand Up @@ -49,6 +51,7 @@
[#436]: https://github.com/BambooTracker/BambooTracker/issues/436
[#473]: https://github.com/BambooTracker/BambooTracker/pull/473
[#465]: https://github.com/BambooTracker/BambooTracker/issues/465
[#476]: https://github.com/BambooTracker/BambooTracker/pull/476

## v0.5.3 (2022-09-18)

Expand Down
2 changes: 1 addition & 1 deletion IMPORTANT.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
The following changes affect module playback critically.
In some cases, you need to modify modules.

### v0.5.4
### v0.6.0

- When the instrument sequence type of an arpeggio is "Fixed", the original pitch of the note on is restored at the tick immediately after the last data in the sequence is executed. Data created before v0.5.3 is automatically modified when the file is loaded to maintain compatibility.
- A bug is fixed that sequence macro not running when echo buffer is empty and note is on. Also, redundant volume changes in the volume column and envelope macros have been removed.
Expand Down
2 changes: 1 addition & 1 deletion data/specs/speclist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ Version table between tracker, module specification and instrument specification
|---------+ | | |
| 0.5.3 | | | |
|---------+--------+------------+-------|
| 0.5.4 | 1.6.1 | 1.5.1 | 1.3.1 |
| 0.6.0 | 1.6.1 | 1.5.1 | 1.3.1 |
|---------+--------+------------+-------|

0 comments on commit 9c2fac3

Please sign in to comment.