Skip to content

Commit bd3bfc3

Browse files
committed
Bump version to 1.1.0
1 parent 2bf7fd9 commit bd3bfc3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
run: |
2020
sh .devcontainer/post-create.sh
2121
/opt/devkitpro/portlibs/wii/bin/powerpc-eabi-cmake -B $GITHUB_WORKSPACE/build -G Ninja
22-
cmake --build $GITHUB_WORKSPACE/build
22+
cmake --build $GITHUB_WORKSPACE/build --verbose
2323
2424
- name: Prepare artifact
2525
run: |

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## Unreleased
5+
## 1.1.0
66

77
- Add support for Wii Remote 3 and 4 on HOME Menu
88
- Use cmake

Wii-Tac-Toe/meta.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<app version="1">
33
<name>Wii-Tac-Toe</name>
44
<coder>Crayon</coder>
5-
<version>1.0.0</version>
6-
<release_date>20160812000000</release_date>
5+
<version>1.1.0</version>
6+
<release_date>20240807000000</release_date>
77
<short_description>Tic-Tac-Toe game</short_description>
88
<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.
99

source/game.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ void Game::MenuScreen(bool CopyScreen)
482482
Rectangle(0, 385, ScreenWidth, 95, 0x000000FF, 1);
483483

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

488488
if(CopyScreen == true)

0 commit comments

Comments
 (0)