Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Crayon2000 committed Aug 7, 2024
1 parent 2bf7fd9 commit bd3bfc3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run: |
sh .devcontainer/post-create.sh
/opt/devkitpro/portlibs/wii/bin/powerpc-eabi-cmake -B $GITHUB_WORKSPACE/build -G Ninja
cmake --build $GITHUB_WORKSPACE/build
cmake --build $GITHUB_WORKSPACE/build --verbose
- name: Prepare artifact
run: |
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## Unreleased
## 1.1.0

- Add support for Wii Remote 3 and 4 on HOME Menu
- Use cmake
Expand Down
4 changes: 2 additions & 2 deletions Wii-Tac-Toe/meta.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<app version="1">
<name>Wii-Tac-Toe</name>
<coder>Crayon</coder>
<version>1.0.0</version>
<release_date>20160812000000</release_date>
<version>1.1.0</version>
<release_date>20240807000000</release_date>
<short_description>Tic-Tac-Toe game</short_description>
<long_description>Wii-Tac-Toe is a Tic-Tac-Toe game for the Nintendo Wii. It was programmed in C++ using devkitPro along with GRRLIB.

Expand Down
2 changes: 1 addition & 1 deletion source/game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ void Game::MenuScreen(bool CopyScreen)
Rectangle(0, 385, ScreenWidth, 95, 0x000000FF, 1);

GRRLIB_PrintfTTF(500, 40, DefaultFont,
fmt::format(fmt::runtime(Lang->String("Ver. {}")), "1.0.0").c_str(),
fmt::format(fmt::runtime(Lang->String("Ver. {}")), "1.1.0").c_str(),
12, 0xFFFFFFFF);

if(CopyScreen == true)
Expand Down

0 comments on commit bd3bfc3

Please sign in to comment.