7.5 version bump
This commit is contained in:
parent
1b79193df2
commit
c099035d43
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "tilesy"
|
||||
version = "0.72.3"
|
||||
version = "0.75.0"
|
||||
description = "a tilesheet importer for the Bitsy game engine"
|
||||
authors = ["Max Bradbury <max@tinybird.info>"]
|
||||
edition = "2018"
|
||||
|
@ -13,7 +13,7 @@ crate-type = ["cdylib"]
|
|||
|
||||
[dependencies]
|
||||
"base64" = "^0.12.3"
|
||||
"bitsy-parser" = "^0.72.3"
|
||||
"bitsy-parser" = "^0.75.0"
|
||||
"image" = "^0.23.7"
|
||||
"lazy_static" = "^1.4.0"
|
||||
"wasm-bindgen" = "=0.2.64" # newer versions are bugged...
|
||||
|
|
|
@ -52,7 +52,7 @@ pub fn load_game(game_data: String) -> String {
|
|||
let mut state = STATE.lock().unwrap();
|
||||
|
||||
match result {
|
||||
Ok(game) => {
|
||||
Ok((game, _errors)) => {
|
||||
state.game = Some(game);
|
||||
"".to_string()
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Write your game's title here
|
||||
|
||||
# BITSY VERSION 7.2
|
||||
# BITSY VERSION 7.5
|
||||
|
||||
! ROOM_FORMAT 1
|
||||
|
||||
|
|
Loading…
Reference in New Issue