Compare commits
No commits in common. "c4be0861cbde310bf5cc6c554c98b3ea8371d0ed" and "8cb32ef9b9acc1a0306bc2bb7d4a12f4070b8cfd" have entirely different histories.
c4be0861cb
...
8cb32ef9b9
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "bitsy-parser"
|
name = "bitsy-parser"
|
||||||
version = "0.72.0"
|
version = "0.71.6"
|
||||||
authors = ["Max Bradbury <max@tinybird.info>"]
|
authors = ["Max Bradbury <max@tinybird.info>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "A parser and utilities for working with Bitsy game data"
|
description = "A parser and utilities for working with Bitsy game data"
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
# bitsy-parser
|
# bitsy-parser
|
||||||
|
|
||||||
|
![Rust](https://github.com/synth-ruiner/bitsy-parser/workflows/Rust/badge.svg)
|
||||||
![](https://img.shields.io/badge/license-MIT-blueviolet.svg)
|
![](https://img.shields.io/badge/license-MIT-blueviolet.svg)
|
||||||
[![Crates.io](https://img.shields.io/crates/v/bitsy-parser.svg)](https://crates.io/crates/bitsy-parser)
|
[![Crates.io](https://img.shields.io/crates/v/bitsy-parser.svg)](https://crates.io/crates/bitsy-parser)
|
||||||
|
|
||||||
|
|
|
@ -537,7 +537,7 @@ pub fn room() -> Room {
|
||||||
pub fn game_default() -> Game {
|
pub fn game_default() -> Game {
|
||||||
Game {
|
Game {
|
||||||
name: "Write your game's title here".to_string(),
|
name: "Write your game's title here".to_string(),
|
||||||
version: Some(Version { major: 7, minor: 2 }),
|
version: Some(Version { major: 7, minor: 1 }),
|
||||||
room_format: Some(RoomFormat::CommaSeparated),
|
room_format: Some(RoomFormat::CommaSeparated),
|
||||||
room_type: RoomType::Room,
|
room_type: RoomType::Room,
|
||||||
font: Font::AsciiSmall,
|
font: Font::AsciiSmall,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Write your game's title here
|
Write your game's title here
|
||||||
|
|
||||||
# BITSY VERSION 7.2
|
# BITSY VERSION 7.1
|
||||||
|
|
||||||
! ROOM_FORMAT 1
|
! ROOM_FORMAT 1
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue