Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
scaramangado committed Mar 18, 2024
2 parents 1368892 + 3c90596 commit b05de55
Show file tree
Hide file tree
Showing 163 changed files with 13,035 additions and 10,700 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,5 @@ Temporary Items
# IDE
.vscode/
.vs/

server/node_modules
7 changes: 7 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions 404.html
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>
23 changes: 23 additions & 0 deletions README.md
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.
33 changes: 20 additions & 13 deletions api/v1/available_versions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"versions": {
"1": "v1",
"1.1": "v1.1",
"1": "versions/v1/v1",
"1.1": "versions/v1/v1.1",
"2": "versions/v2/v2.0",
"3": "versions/v3/v3.0",
"4": "versions/v4/v4.0",
Expand All @@ -16,20 +16,27 @@
"8.3": "versions/v8/v8.3",
"8.4": "versions/v8/v8.4",
"8.5": "versions/v8/v8.5",
"9": "v9",
"9.1": "v9.1",
"9.2": "v9.2",
"9.3": "v9.3",
"9.4": "v9.4",
"9.5": "v9.5",
"9.5.1": "v9.5.1",
"10.0": "v10.0",
"10.1": "v10.1",
"10.2": "v10.2",
"9": "versions/v9/v9",
"9.1": "versions/v9/v9.1",
"9.2": "versions/v9/v9.2",
"9.3": "versions/v9/v9.3",
"9.4": "versions/v9/v9.4",
"9.5": "versions/v9/v9.5",
"9.5.1": "versions/v9/v9.5.1",
"10.0": "versions/v10/v10.0",
"10.1": "versions/v10/v10.1",
"10.2": "versions/v10/v10.2",
"10.3": "versions/v10/v10.3",
"10.3.1": "versions/v10/v10.3.1",
"10.3.2": "versions/v10/v10.3.2",
"10.4": "versions/v10/v10.4"
"10.4": "versions/v10/v10.4",

"beta0.9.4.0": "versions/beta/beta0.9.4.0",
"beta0.9.5.0": "versions/beta/beta0.9.5.0",
"beta0.9.6.0-j": "versions/beta/beta0.9.6.0-j",
"beta0.9.6.1-j": "versions/beta/beta0.9.6.1-j",
"beta0.9.6.2-j": "versions/beta/beta0.9.6.2-j",
"beta0.9.6.3-j": "versions/beta/beta0.9.6.3-j"
},
"default_version": "10.4"
}
Loading

0 comments on commit b05de55

Please sign in to comment.