Skip to content

Commit

Permalink
Updated the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
kitao committed Oct 5, 2022
1 parent dd04744 commit 82600cd
Show file tree
Hide file tree
Showing 27 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion crates/pyxel-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyxel-core"
version = "1.8.12"
version = "1.8.13"
authors = ["Takashi Kitao <takashi.kitao@gmail.com>"]
edition = "2021"
description = "Core engine for Pyxel, a retro game engine for Python"
Expand Down
2 changes: 1 addition & 1 deletion crates/pyxel-core/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::key::KEY_ESCAPE;
use crate::types::{Color, Effect, Key, Note, Rgb8, Speed, Tone, Volume};

// System
pub const PYXEL_VERSION: &str = "1.8.12";
pub const PYXEL_VERSION: &str = "1.8.13";
pub const PYXEL_WORKING_DIR: &str = ".pyxel";
pub const DEFAULT_TITLE: &str = "Pyxel";
pub const DEFAULT_FPS: u32 = 30;
Expand Down
4 changes: 2 additions & 2 deletions crates/pyxel-extension/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyxel-extension"
version = "1.8.12"
version = "1.8.13"
authors = ["Takashi Kitao <takashi.kitao@gmail.com>"]
edition = "2021"
description = "Python extension module for Pyxel, a retro game engine for Python"
Expand All @@ -16,7 +16,7 @@ crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.16", features = ["abi3-py37", "extension-module"] }
pyxel-core = { path = "../pyxel-core", version = "1.8.12" }
pyxel-core = { path = "../pyxel-core", version = "1.8.13" }

[target.'cfg(not(target_os = "emscripten"))'.dependencies]
sysinfo = "0.23"
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Pyxel Web Launcher</title>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>
<body>
<script>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "pyxel"
version = "1.8.12"
version = "1.8.13"
description = "A retro game engine for Python"
readme = "docs/README-abspath.md"
requires-python = ">=3.7"
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/01_hello_pyxel.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/02_jump_game.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/03_draw_api.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/04_sound_api.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/05_color_palette.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/06_click_game.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/07_snake.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/08_triangle_api.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/09_shooter.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/10_platformer.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/11_offscreen.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/12_perlin_noise.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/30SecondsOfDaylight.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/image_editor.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/megaball.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/music_editor.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/script_test.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/sound_editor.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion wasm/examples/tilemap_editor.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.12/wasm/pyxel.js"></script>
<script src="https://cdn.jsdelivr.net/gh/kitao/pyxel@v1.8.13/wasm/pyxel.js"></script>
</head>

<body>
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion wasm/pyxel.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const NO_SLEEP_URL =
"https://cdnjs.cloudflare.com/ajax/libs/nosleep/0.12.0/NoSleep.min.js";
const PYODIDE_SDL2_URL =
"https://cdn.jsdelivr.net/gh/kitao/pyodide-sdl2@20220923/pyodide.js";
const PYXEL_WHEEL_PATH = "pyxel-1.8.12-cp37-abi3-emscripten_3_1_21_wasm32.whl";
const PYXEL_WHEEL_PATH = "pyxel-1.8.13-cp37-abi3-emscripten_3_1_21_wasm32.whl";
const PYXEL_LOGO_PATH = "../docs/images/pyxel_logo_228x96.png";
const TOUCH_TO_START_PATH = "../docs/images/touch_to_start_342x42.png";
const CLICK_TO_START_PATH = "../docs/images/click_to_start_342x42.png";
Expand Down

0 comments on commit 82600cd

Please sign in to comment.