Skip to content

Commit

Permalink
Ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
htv04 committed Apr 17, 2022
1 parent 8360d51 commit 7d06859
Show file tree
Hide file tree
Showing 10 changed files with 56 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto eol=lf
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Build
build/*

# Visual Studio Code
.vscode/*
28 changes: 28 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# --------------------------------------------------------------------------------
# Wiirdle Makefile
#
# Copyright (C) 2022 HTV04
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# --------------------------------------------------------------------------------

build:
rm -rf build
mkdir -p build/sd/apps/wiirdle

cp -r res/* build/sd/apps/wiirdle
cp -r src build/sd/apps/wiirdle/data

release: build
cd build/sd; zip -r -9 ../wiirdle.zip .
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# wiirdle
A Wordle clone for the Wii, powered by WiiLÖVE
# ![Wiirdle logo](images/logo.png)
Wiirdle is a [Wordle](https://www.nytimes.com/games/wordle/index.html) clone for the Wii, powered by the [WiiLÖVE](https://github.com/HTV04/wiilove) framework.

Every day, you will have six attempts to guess a five-letter word, with feedback given for each guess indicating when letters match or occupy the correct position.

*Wordle* by Josh Wardle and the New York Times. Play the original game [here](https://www.nytimes.com/games/wordle/index.html)!

# Screenshot
![Wiirdle screenshot](images/screenshot.png)
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/boot.dol
Binary file not shown.
Binary file added res/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions res/meta.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<app version="1">
<name>Wiirdle</name>
<version>1.0.0</version>
<coder>HTV04</coder>
<short_description>Wordle clone for the Wii</short_description>
<long_description>Wiirdle is a Wordle clone for the Wii, powered by the WiiLÖVE framework.

Every day, you will have six attempts to guess a five-letter word, with feedback given for each guess indicating when letters match or occupy the correct position.

"Wordle" by Josh Wardle and the New York Times.</long_description>
</app>
2 changes: 1 addition & 1 deletion src/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function love.load()
binser = require("lib.binser")

curDate = date()
firstDate = date(2022, 4, 2)
firstDate = date(2022, 4, 16)
day = math.floor(date.diff(curDate, firstDate):spandays())
words = require("data.words")
solutions = require("data.solutions")
Expand Down

0 comments on commit 7d06859

Please sign in to comment.