Compare commits
7 Commits
e13bb37c83
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| e8f46aa4ad | |||
| 501f88cb25 | |||
| 84332dcd17 | |||
| a283116357 | |||
| 183b14d5f5 | |||
| c099035d43 | |||
| 1b79193df2 |
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "tilesy"
|
name = "tilesy"
|
||||||
version = "0.72.0"
|
version = "0.710.0"
|
||||||
description = "a tilesheet importer for the Bitsy game engine"
|
description = "a tilesheet importer for the Bitsy game engine"
|
||||||
authors = ["Max Bradbury <max@tinybird.info>"]
|
authors = ["Max Bradbury <max@tinybird.info>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -13,7 +13,7 @@ crate-type = ["cdylib"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
"base64" = "^0.12.3"
|
"base64" = "^0.12.3"
|
||||||
"bitsy-parser" = "^0.72.3"
|
"bitsy-parser" = "^0.710.0"
|
||||||
"image" = "^0.23.7"
|
"image" = "^0.23.7"
|
||||||
"lazy_static" = "^1.4.0"
|
"lazy_static" = "^1.4.0"
|
||||||
"wasm-bindgen" = "=0.2.64" # newer versions are bugged...
|
"wasm-bindgen" = "^0.2.78"
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
#! /usr/bin/env bash
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
./build.sh
|
|
||||||
rm -rf dist
|
rm -rf dist
|
||||||
mkdir dist
|
mkdir dist
|
||||||
cp -r README.md LICENSE index.html script.js background.png pkg includes dist
|
cp -r README.md LICENSE index.html script.js pkg includes dist
|
||||||
butler push dist ruin/tilesy:html
|
butler push dist ruin/tilesy:html
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ async function run() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function new_game() {
|
function new_game() {
|
||||||
load_default_game()
|
load_default_game();
|
||||||
textareaGameDataInput.value = output();
|
textareaGameDataInput.value = output();
|
||||||
checkGameData();
|
checkGameData();
|
||||||
// we don't need to look at the default game data, so skip ahead to the image page
|
// we don't need to look at the default game data, so skip ahead to the image page
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ pub fn load_game(game_data: String) -> String {
|
|||||||
let mut state = STATE.lock().unwrap();
|
let mut state = STATE.lock().unwrap();
|
||||||
|
|
||||||
match result {
|
match result {
|
||||||
Ok(game) => {
|
Ok((game, _errors)) => {
|
||||||
state.game = Some(game);
|
state.game = Some(game);
|
||||||
"".to_string()
|
"".to_string()
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
Write your game's title here
|
Write your game's title here
|
||||||
|
|
||||||
# BITSY VERSION 7.2
|
# BITSY VERSION 7.5
|
||||||
|
|
||||||
! ROOM_FORMAT 1
|
! ROOM_FORMAT 1
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user