Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
],
"main": "index.mjs",
"version": "21.4.0",
"bitsyVersion": "8.6",
"bitsyVersion": "8.7",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"test": "jest --runInBand",
Expand Down
8 changes: 4 additions & 4 deletions src/test/Bitsy 8.6.html → src/test/Bitsy 8.7.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
<script type="text/bitsyGameData" id="exportedGameData">
Write your game's title here

# BITSY VERSION 8.6
# BITSY VERSION 8.7

! VER_MAJ 8
! VER_MIN 6
! VER_MIN 7
! ROOM_FORMAT 1
! DLG_COMPAT 0
! TXT_MODE 0
Expand Down Expand Up @@ -1548,7 +1548,7 @@
// is this the right place for this to live?
var version = {
major: 8, // major changes
minor: 6, // smaller changes
minor: 7, // smaller changes
devBuildPhase: "RELEASE",
};
function getEngineVersion() {
Expand Down Expand Up @@ -1968,7 +1968,7 @@
function createExitData(x, y, destRoom, destX, destY, transition, dlg) {
return {
x: x,
y: x,
y: y,
dest: {
room: destRoom,
x: destX,
Expand Down