Skip to content

Commit

Permalink
Update version to 4.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioND committed May 28, 2022
1 parent 1f0f507 commit 0bc9793
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 12 deletions.
6 changes: 6 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

- Version 4.4.1 (2022/5/28)

- GBA-only release.
- Fix ``gbt_get_position()``.
- Improve example that combines GBT Player and Maxmod.

- Version 4.4.0 (2022/5/20)

- GBA-only release.
Expand Down
2 changes: 1 addition & 1 deletion gba/gbt_player/gbt_hardware.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// GBT Player v4.4.0
// GBT Player v4.4.1
//
// SPDX-License-Identifier: MIT
//
Expand Down
2 changes: 1 addition & 1 deletion gba/gbt_player/gbt_player.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// GBT Player v4.4.0
// GBT Player v4.4.1
//
// SPDX-License-Identifier: MIT
//
Expand Down
2 changes: 1 addition & 1 deletion gba/gbt_player/gbt_player.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// GBT Player v4.4.0
// GBT Player v4.4.1
//
// SPDX-License-Identifier: MIT
//
Expand Down
4 changes: 2 additions & 2 deletions gba/mod2gbt/mod2gbt.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

# mod2gbt v4.4.0 (Part of GBT Player)
# mod2gbt v4.4.1 (Part of GBT Player)
#
# SPDX-License-Identifier: MIT
#
Expand Down Expand Up @@ -473,7 +473,7 @@ def convert_file(mod_in_path, label_name, speed_conversion):
import argparse
import sys

print("mod2gbt v4.4.0 (part of GBT Player)")
print("mod2gbt v4.4.1 (part of GBT Player)")
print("Copyright (c) 2009-2022 Antonio Niño Díaz <antonio_nd@outlook.com>")
print("All rights reserved")
print("")
Expand Down
2 changes: 1 addition & 1 deletion gba/mod2gbt/readme.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mod2gbt v4.4.0
mod2gbt v4.4.1
==============

This tool can convert a special template of MOD into a GBT converted song.
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.4.0
GBT Player v4.4.1
=================

Music player library and converter kit for Game Boy Advance. It only uses the
Expand Down
2 changes: 1 addition & 1 deletion gba/s3m2gbt/readme.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
s3m2gbt v4.4.0
s3m2gbt v4.4.1
==============

This tool can convert a special template of S3M into a GBT converted song.
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.4.0 (Part of GBT Player)
# s3m2gbt v4.4.1 (Part of GBT Player)
#
# SPDX-License-Identifier: MIT
#
Expand Down Expand Up @@ -821,7 +821,7 @@ def convert_file(module_path, song_name, output_path, export_instruments):
import argparse
import sys

print("s3m2gbt v4.4.0 (part of GBT Player)")
print("s3m2gbt v4.4.1 (part of GBT Player)")
print("Copyright (c) 2022 Antonio Niño Díaz <antonio_nd@outlook.com>")
print("All rights reserved")
print("")
Expand Down
4 changes: 2 additions & 2 deletions gba/s3msplit/s3msplit.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

# s3msplit v4.4.0 (Part of GBT Player)
# s3msplit v4.4.1 (Part of GBT Player)
#
# SPDX-License-Identifier: MIT
#
Expand Down Expand Up @@ -185,7 +185,7 @@ def s3m_split(s3m_in_path, s3m_psg_path, s3m_dma_path):
import argparse
import sys

print("s3msplit v4.4.0 (part of GBT Player)")
print("s3msplit v4.4.1 (part of GBT Player)")
print("Copyright (c) 2022 Antonio Niño Díaz <antonio_nd@outlook.com>")
print("All rights reserved")
print("")
Expand Down
3 changes: 3 additions & 0 deletions readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Boy and Game Boy Color as a `RGBDS <https://github.com/gbdev/rgbds>`_ library.
There is also a legacy version that uses GBDK. If you're interested in the
changes introduced with each version, check the `changelog <./changelog.rst>`_.

On GBA it is possible to use GBT Player at the same time as other players like
Maxmod, check this `example <./gba/examples/combined_maxmod>`_.

Introduction
------------

Expand Down

0 comments on commit 0bc9793

Please sign in to comment.