-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
163 changed files
with
13,035 additions
and
10,700 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,5 @@ Temporary Items | |
# IDE | ||
.vscode/ | ||
.vs/ | ||
|
||
server/node_modules |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Ocarina of Time Bingo - 404</title> | ||
<meta | ||
content="Generates 'Bingo' boards for Zelda: Ocarina of Time with any bingo version." | ||
name="description" | ||
/> | ||
<meta content="oot bingo, zelda bingo" name="keywords"/> | ||
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/> | ||
<link href="style/base-styles.css" rel="stylesheet"/> | ||
<link href="style/info-styles.css" rel="stylesheet"/> | ||
<script type="module" src="/bingo/lib/404.js"></script> | ||
<link href="img/favicon.ico" rel="shortcut icon" type="image/x-icon"/> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,25 @@ | ||
# Bingo | ||
|
||
Serving the current and older OoT Bingo versions through GitHub Pages | ||
|
||
## Development | ||
|
||
Browser have restricted local development, so loading files from HTML no longer | ||
works. For easy development, there is a server that will staticly host your | ||
files. You will need to install [Node](https://nodejs.org) to run it | ||
|
||
``` | ||
cd server | ||
npm install | ||
npm start | ||
``` | ||
|
||
Then navigate to http://localhost:3000/bingo/ | ||
|
||
## Localization | ||
|
||
Bingo is currently only completely supported in English. There is a full translation of goals in Japanese, but the UI is still English. | ||
|
||
If you want to help translate into your language, download [the English strings file](/localization/en.js) and replace its values with your translations. If you remove strings, they will default to English. For an example of what the file should look like, see [the Japanese strings file](/localization/jp.js). | ||
|
||
Once you are finished, share that file in the Discord or make a Pull Request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.