Skip to content

Commit

Permalink
gba: Increase version number to v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioND committed Apr 25, 2022
1 parent 6b5ff2c commit 7890078
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ work. It would be nice to you tell me if you use it, anyway. :)
Changelog
---------

- Version 4.0.1 (2022/4/25)

- Fix compatibility with old MOD songs in ``mod2gbt`` in the GBA port.
- Fix crash in ``mod2gbt``.

- Version 4.0.0 (2022/4/25)

- This is a GBA only release.
Expand Down
2 changes: 1 addition & 1 deletion gba/README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GBT Player v4.0.0
GBT Player v4.0.1
=================

Music player library and converter kit for Game Boy Advance. It only uses the
Expand Down
2 changes: 1 addition & 1 deletion gba/example/source/gbt_hardware.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// GBT Player v4.0.0
// GBT Player v4.0.1
//
// SPDX-License-Identifier: MIT
//
Expand Down
2 changes: 1 addition & 1 deletion gba/example/source/gbt_player.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// GBT Player v4.0.0
// GBT Player v4.0.1
//
// SPDX-License-Identifier: MIT
//
Expand Down
2 changes: 1 addition & 1 deletion gba/example/source/gbt_player.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// GBT Player v4.0.0
// GBT Player v4.0.1
//
// SPDX-License-Identifier: MIT
//
Expand Down
2 changes: 1 addition & 1 deletion gba/example/source/main.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// GBT Player v4.0.0
// GBT Player v4.0.1
//
// SPDX-License-Identifier: MIT
//
Expand Down
4 changes: 2 additions & 2 deletions gba/mod2gbt/mod2gbt.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* mod2gbt v4.0.0 (Part of GBT Player)
* mod2gbt v4.0.1 (Part of GBT Player)
*
* SPDX-License-Identifier: MIT
*
Expand Down Expand Up @@ -766,7 +766,7 @@ void print_usage(void)

int main(int argc, char *argv[])
{
printf("mod2gbt v4.0.0 (part of GBT Player)\n");
printf("mod2gbt v4.0.1 (part of GBT Player)\n");
printf("Copyright (c) 2009-2022 Antonio Niño Díaz "
"<[email protected]>\n");
printf("All rights reserved\n");
Expand Down
4 changes: 2 additions & 2 deletions gba/s3m2gbt/s3m2gbt.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

# s3m2gbt v4.0.0 (Part of GBT Player)
# s3m2gbt v4.0.1 (Part of GBT Player)
#
# SPDX-License-Identifier: MIT
#
Expand Down Expand Up @@ -488,7 +488,7 @@ def convert_file(module_path, song_name, output_path):

if __name__ == "__main__":

print("s3m2gbt v4.0.0 (part of GBT Player)")
print("s3m2gbt v4.0.1 (part of GBT Player)")
print("Copyright (c) 2022 Antonio Niño Díaz <[email protected]>")
print("Copyright (c) 2015-2022 Kaitai Project")
print("All rights reserved")
Expand Down

0 comments on commit 7890078

Please sign in to comment.