From f144467d8bad04ae7e443e7d909a6f17b33e0fc6 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sat, 1 Jan 2022 03:16:34 +0000 Subject: [PATCH] chore(release): 19.2.6 [skip ci] ## [19.2.6](https://github.com/seleb/bitsy-hacks/compare/v19.2.5...v19.2.6) (2022-01-01) ### Bug Fixes * test against bitsy 7.11 ([ed0ed06](https://github.com/seleb/bitsy-hacks/commit/ed0ed0641a0fda0a466eec375613b9fa218f77f7)) --- CHANGELOG.md | 7 +++++++ README.md | 2 +- dist/avatar-by-room.js | 12 ++++++------ dist/backdrops.js | 16 ++++++++-------- dist/basic-sfx.js | 12 ++++++------ dist/bitsymuse.js | 12 ++++++------ dist/canvas-replacement.js | 8 ++++---- dist/character-portraits-animated.js | 12 ++++++------ dist/character-portraits.js | 8 ++++---- dist/close-on-ending.js | 8 ++++---- dist/corrupt.js | 16 ++++++++-------- dist/custom-exit-effects.js | 8 ++++---- dist/custom-keyhandlers.js | 8 ++++---- dist/custom-text-effect.js | 8 ++++---- dist/dialog-audio-vocal-synth.js | 16 ++++++++-------- dist/dialog-audio.js | 8 ++++---- dist/dialog-box-transition.js | 8 ++++---- dist/dialog-choices.js | 16 ++++++++-------- dist/dialog-jump.js | 8 ++++---- dist/dialog-pause.js | 8 ++++---- dist/dialog-prompt.js | 12 ++++++------ dist/direction-in-dialog.js | 8 ++++---- dist/directional-avatar.js | 16 ++++++++-------- dist/dynamic-background.js | 12 ++++++------ dist/edit-dialog-from-dialog.js | 12 ++++++------ dist/edit-image-from-dialog.js | 16 ++++++++-------- dist/edit-player-from-dialog.js | 12 ++++++------ dist/edit-room-from-dialog.js | 12 ++++++------ dist/end-from-dialog.js | 8 ++++---- dist/exit-from-dialog.js | 12 ++++++------ dist/external-game-data.js | 8 ++++---- dist/favicon-from-sprite.js | 12 ++++++------ dist/follower.js | 12 ++++++------ dist/gamepad-input.js | 8 ++++---- dist/gravity.js | 16 ++++++++-------- dist/itsy-bitsy.js | 8 ++++---- dist/javascript-dialog.js | 8 ++++---- dist/logic-operators-extended.js | 8 ++++---- dist/long-dialog.js | 12 ++++++------ dist/multi-sprite-avatar.js | 12 ++++++------ dist/noclip.js | 12 ++++++------ dist/online.js | 28 ++++++++++++++-------------- dist/opaque-tiles.js | 8 ++++---- dist/paragraph-break.js | 8 ++++---- dist/permanent-items.js | 8 ++++---- dist/push-sprites.js | 16 ++++++++-------- dist/replace-drawing.js | 8 ++++---- dist/save.js | 12 ++++++------ dist/smooth-moves.js | 8 ++++---- dist/solid-items.js | 8 ++++---- dist/sprite-effects.js | 12 ++++++------ dist/stopwatch.js | 12 ++++++------ dist/text-to-speech.js | 8 ++++---- dist/tracery-processing.js | 8 ++++---- dist/transitions.js | 12 ++++++------ dist/transparent-background.js | 12 ++++++------ dist/transparent-dialog.js | 8 ++++---- dist/transparent-sprites.js | 8 ++++---- dist/twine-bitsy-comms.js | 8 ++++---- dist/unique-items.js | 8 ++++---- package-lock.json | 2 +- package.json | 2 +- 62 files changed, 324 insertions(+), 317 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61c2b6aa..4ddd0df1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [19.2.6](https://github.com/seleb/bitsy-hacks/compare/v19.2.5...v19.2.6) (2022-01-01) + + +### Bug Fixes + +* test against bitsy 7.11 ([ed0ed06](https://github.com/seleb/bitsy-hacks/commit/ed0ed0641a0fda0a466eec375613b9fa218f77f7)) + ## [19.2.5](https://github.com/seleb/bitsy-hacks/compare/v19.2.4...v19.2.5) (2021-12-25) diff --git a/README.md b/README.md index 1a9d5a3c..dc26fac8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ npm i @bitsy/hecks A collection of re-usable scripts for [Adam Le Doux](https://twitter.com/adamledoux)'s [Bitsy Game Maker](https://ledoux.itch.io/bitsy). See [Ayolland's Borksy](https://ayolland.itch.io/borksy) for a GUI that allows you to use these hacks with less copy-pasting. -Last tested against Bitsy 7.10 +Last tested against Bitsy 7.11 - [Contents](#contents) - [How to use](#how-to-use) diff --git a/dist/avatar-by-room.js b/dist/avatar-by-room.js index 3e6eb562..e4d4b12f 100644 --- a/dist/avatar-by-room.js +++ b/dist/avatar-by-room.js @@ -4,8 +4,8 @@ @summary change the avatar in certain rooms @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -174,8 +174,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -241,8 +241,8 @@ var after = kitsy.after; @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/backdrops.js b/dist/backdrops.js index d3e0491d..1eebf620 100644 --- a/dist/backdrops.js +++ b/dist/backdrops.js @@ -4,8 +4,8 @@ @summary makes the game have a backdrop @license MIT @author Cephalopodunk & Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -181,8 +181,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -250,8 +250,8 @@ var after = kitsy.after; @summary makes all sprites have transparent backgrounds @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -302,8 +302,8 @@ after('renderPixelInstruction', function (bufferId, buffer, paletteIndex, x, y) @summary makes the game have a transparent background @license MIT @author Cephalopodunk & Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description diff --git a/dist/basic-sfx.js b/dist/basic-sfx.js index 28a8b6f5..ae1f20e8 100644 --- a/dist/basic-sfx.js +++ b/dist/basic-sfx.js @@ -4,8 +4,8 @@ @summary "walk" and "talk" sound effect support @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -172,8 +172,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -239,8 +239,8 @@ var after = kitsy.after; @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/bitsymuse.js b/dist/bitsymuse.js index 79c402b7..130aa4c0 100644 --- a/dist/bitsymuse.js +++ b/dist/bitsymuse.js @@ -4,8 +4,8 @@ @summary A variety of Bitsy sound and music handlers @license MIT @author David Mowatt -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -206,8 +206,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -371,8 +371,8 @@ function addDualDialogTag(tag, fn) { @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/canvas-replacement.js b/dist/canvas-replacement.js index c60d4bd2..dedd82bf 100644 --- a/dist/canvas-replacement.js +++ b/dist/canvas-replacement.js @@ -4,8 +4,8 @@ @summary WebGLazy bitsy integration (this one's mostly just for me) @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -201,8 +201,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/character-portraits-animated.js b/dist/character-portraits-animated.js index 9539cf3d..1ddc7a36 100644 --- a/dist/character-portraits-animated.js +++ b/dist/character-portraits-animated.js @@ -4,8 +4,8 @@ @summary high quality anime gifs @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -971,8 +971,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -1088,8 +1088,8 @@ function addDialogTag(tag, fn) { @summary high quality anime jpegs (or pngs i guess) @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description diff --git a/dist/character-portraits.js b/dist/character-portraits.js index 7c29d48f..00abdeca 100644 --- a/dist/character-portraits.js +++ b/dist/character-portraits.js @@ -4,8 +4,8 @@ @summary high quality anime jpegs (or pngs i guess) @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -200,8 +200,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/close-on-ending.js b/dist/close-on-ending.js index d038e291..552b9021 100644 --- a/dist/close-on-ending.js +++ b/dist/close-on-ending.js @@ -4,8 +4,8 @@ @summary Prevents from playing past an ending @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -163,8 +163,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/corrupt.js b/dist/corrupt.js index 365dc02d..c55d1ca4 100644 --- a/dist/corrupt.js +++ b/dist/corrupt.js @@ -4,8 +4,8 @@ @summary corrupts gamedata at runtime @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -60,8 +60,8 @@ bitsy = bitsy || /*#__PURE__*/_interopDefaultLegacy(bitsy); @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ @@ -122,8 +122,8 @@ function getImage(name, map) { @file edit image at runtime @summary API for updating image data at runtime. @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description Adds API for updating sprite, tile, and item data at runtime. @@ -340,8 +340,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/custom-exit-effects.js b/dist/custom-exit-effects.js index aef311a9..ea95c968 100644 --- a/dist/custom-exit-effects.js +++ b/dist/custom-exit-effects.js @@ -4,8 +4,8 @@ @summary make custom exit transition effects @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -199,8 +199,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/custom-keyhandlers.js b/dist/custom-keyhandlers.js index ac84cde1..d5f3bc5b 100644 --- a/dist/custom-keyhandlers.js +++ b/dist/custom-keyhandlers.js @@ -4,8 +4,8 @@ @summary run custom code on key inputs @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -188,8 +188,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/custom-text-effect.js b/dist/custom-text-effect.js index aebebe9b..a0dd7d9b 100644 --- a/dist/custom-text-effect.js +++ b/dist/custom-text-effect.js @@ -4,8 +4,8 @@ @summary make {custom}text effects{custom} @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -351,8 +351,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/dialog-audio-vocal-synth.js b/dist/dialog-audio-vocal-synth.js index 09cb7120..c8109ab3 100644 --- a/dist/dialog-audio-vocal-synth.js +++ b/dist/dialog-audio-vocal-synth.js @@ -4,8 +4,8 @@ @summary animal crossing-style audio powered by the pink trombone vocal synth @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -884,8 +884,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -1001,8 +1001,8 @@ function addDialogTag(tag, fn) { @summary animal crossing-style audio @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -1058,8 +1058,8 @@ before('dialogBuffer.DoNextChar', function () { @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/dialog-audio.js b/dist/dialog-audio.js index 261c8896..92fbb502 100644 --- a/dist/dialog-audio.js +++ b/dist/dialog-audio.js @@ -4,8 +4,8 @@ @summary animal crossing-style audio @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -190,8 +190,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/dialog-box-transition.js b/dist/dialog-box-transition.js index 15a21dab..5b26b755 100644 --- a/dist/dialog-box-transition.js +++ b/dist/dialog-box-transition.js @@ -4,8 +4,8 @@ @summary adds an easing transition animation to display the dialog box text @license MIT @author Delacannon -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -160,8 +160,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/dialog-choices.js b/dist/dialog-choices.js index 8635b169..47476415 100644 --- a/dist/dialog-choices.js +++ b/dist/dialog-choices.js @@ -4,8 +4,8 @@ @summary dialog choices @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -241,8 +241,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -415,8 +415,8 @@ inject(/(this\.AddLinebreak = )/, 'this.AddParagraphBreak = function() { buffer. @summary Adds paragraph breaks to the dialogue parser @license WTFPL (do WTF you want) @author Sean S. LeBlanc, David Mowatt -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -459,8 +459,8 @@ addDialogTag('p', function (environment, parameters, onReturn) { @summary put more words onscreen @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description diff --git a/dist/dialog-jump.js b/dist/dialog-jump.js index 2268b207..e28a5046 100644 --- a/dist/dialog-jump.js +++ b/dist/dialog-jump.js @@ -4,8 +4,8 @@ @summary jump from one dialog entry to another @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -174,8 +174,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/dialog-pause.js b/dist/dialog-pause.js index 84de83c8..e60cfd88 100644 --- a/dist/dialog-pause.js +++ b/dist/dialog-pause.js @@ -4,8 +4,8 @@ @summary add pauses in between printing text @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -160,8 +160,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/dialog-prompt.js b/dist/dialog-prompt.js index f38c37d6..bb4b31c5 100644 --- a/dist/dialog-prompt.js +++ b/dist/dialog-prompt.js @@ -4,8 +4,8 @@ @summary prompt the user for text input in dialog @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -197,8 +197,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -321,8 +321,8 @@ inject(/(this\.AddLinebreak = )/, 'this.AddParagraphBreak = function() { buffer. @summary Adds paragraph breaks to the dialogue parser @license WTFPL (do WTF you want) @author Sean S. LeBlanc, David Mowatt -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description diff --git a/dist/direction-in-dialog.js b/dist/direction-in-dialog.js index 2ddd57c1..cb375174 100644 --- a/dist/direction-in-dialog.js +++ b/dist/direction-in-dialog.js @@ -4,8 +4,8 @@ @summary provides a variable with player direction @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -166,8 +166,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/directional-avatar.js b/dist/directional-avatar.js index b33f986d..adffcf86 100644 --- a/dist/directional-avatar.js +++ b/dist/directional-avatar.js @@ -4,8 +4,8 @@ @summary flips the player's sprite based on directional movement @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -41,8 +41,8 @@ bitsy = bitsy || /*#__PURE__*/_interopDefaultLegacy(bitsy); @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ @@ -103,8 +103,8 @@ function getImage(name, map) { @file edit image at runtime @summary API for updating image data at runtime. @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description Adds API for updating sprite, tile, and item data at runtime. @@ -305,8 +305,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/dynamic-background.js b/dist/dynamic-background.js index c3f56fb5..975c5e1f 100644 --- a/dist/dynamic-background.js +++ b/dist/dynamic-background.js @@ -4,8 +4,8 @@ @summary HTML background matching bitsy background @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -170,8 +170,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -237,8 +237,8 @@ var after = kitsy.after; @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/edit-dialog-from-dialog.js b/dist/edit-dialog-from-dialog.js index 3389c640..955892d8 100644 --- a/dist/edit-dialog-from-dialog.js +++ b/dist/edit-dialog-from-dialog.js @@ -4,8 +4,8 @@ @summary edit dialog from dialog (yes really) @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -169,8 +169,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -296,8 +296,8 @@ function addDeferredDialogTag(tag, fn) { @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/edit-image-from-dialog.js b/dist/edit-image-from-dialog.js index a67c8fe0..81a867a9 100644 --- a/dist/edit-image-from-dialog.js +++ b/dist/edit-image-from-dialog.js @@ -4,8 +4,8 @@ @summary edit sprites, items, and tiles from dialog @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -67,8 +67,8 @@ bitsy = bitsy || /*#__PURE__*/_interopDefaultLegacy(bitsy); @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ @@ -129,8 +129,8 @@ function getImage(name, map) { @file edit image at runtime @summary API for updating image data at runtime. @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description Adds API for updating sprite, tile, and item data at runtime. @@ -323,8 +323,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/edit-player-from-dialog.js b/dist/edit-player-from-dialog.js index c05a0c0a..65ab3ae2 100644 --- a/dist/edit-player-from-dialog.js +++ b/dist/edit-player-from-dialog.js @@ -4,8 +4,8 @@ @summary change which sprite is controlled by the player @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -171,8 +171,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -336,8 +336,8 @@ function addDualDialogTag(tag, fn) { @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/edit-room-from-dialog.js b/dist/edit-room-from-dialog.js index 403686cd..68eacf0a 100644 --- a/dist/edit-room-from-dialog.js +++ b/dist/edit-room-from-dialog.js @@ -4,8 +4,8 @@ @summary modify the content of a room from dialog @license MIT @author Dana Holdampf -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -290,8 +290,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -455,8 +455,8 @@ function addDualDialogTag(tag, fn) { @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/end-from-dialog.js b/dist/end-from-dialog.js index 64b30191..ce456895 100644 --- a/dist/end-from-dialog.js +++ b/dist/end-from-dialog.js @@ -4,8 +4,8 @@ @summary trigger an ending from dialog, including narration text @license WTFPL (do WTF you want) @author @mildmojo -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -194,8 +194,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/exit-from-dialog.js b/dist/exit-from-dialog.js index a9f3b6e6..9a40b2ab 100644 --- a/dist/exit-from-dialog.js +++ b/dist/exit-from-dialog.js @@ -4,8 +4,8 @@ @summary exit to another room from dialog, including conditionals @license WTFPL (do WTF you want) @author @mildmojo -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -194,8 +194,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -359,8 +359,8 @@ function addDualDialogTag(tag, fn) { @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/external-game-data.js b/dist/external-game-data.js index 7c28208d..8f9d5442 100644 --- a/dist/external-game-data.js +++ b/dist/external-game-data.js @@ -4,8 +4,8 @@ @summary separate Bitsy game data from your (modded) HTML for easier development @license WTFPL (do WTF you want) @author @mildmojo -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -182,8 +182,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/favicon-from-sprite.js b/dist/favicon-from-sprite.js index 294af128..55642fdd 100644 --- a/dist/favicon-from-sprite.js +++ b/dist/favicon-from-sprite.js @@ -4,8 +4,8 @@ @summary generate a browser favicon (tab icon) from a Bitsy sprite, including animation! @license WTFPL (do WTF you want) @author @mildmojo -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -170,8 +170,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -237,8 +237,8 @@ var after = kitsy.after; @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/follower.js b/dist/follower.js index c04c6eb8..e9965180 100644 --- a/dist/follower.js +++ b/dist/follower.js @@ -4,8 +4,8 @@ @summary make sprites follow the player @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -193,8 +193,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -358,8 +358,8 @@ function addDualDialogTag(tag, fn) { @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/gamepad-input.js b/dist/gamepad-input.js index 10ee9655..d6938af1 100644 --- a/dist/gamepad-input.js +++ b/dist/gamepad-input.js @@ -4,8 +4,8 @@ @summary HTML5 gamepad support @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -489,8 +489,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/gravity.js b/dist/gravity.js index 3d26edbc..6ff84a0c 100644 --- a/dist/gravity.js +++ b/dist/gravity.js @@ -4,8 +4,8 @@ @summary Pseudo-platforming/gravity/physics @license MIT @author Cole Sea -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -122,8 +122,8 @@ bitsy = bitsy || /*#__PURE__*/_interopDefaultLegacy(bitsy); @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ @@ -184,8 +184,8 @@ function getImage(name, map) { @file edit image at runtime @summary API for updating image data at runtime. @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description Adds API for updating sprite, tile, and item data at runtime. @@ -386,8 +386,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/itsy-bitsy.js b/dist/itsy-bitsy.js index 15cc046d..5df90414 100644 --- a/dist/itsy-bitsy.js +++ b/dist/itsy-bitsy.js @@ -4,8 +4,8 @@ @summary for when bitsy's not small enough @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -171,8 +171,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/javascript-dialog.js b/dist/javascript-dialog.js index 154bdc39..af16c543 100644 --- a/dist/javascript-dialog.js +++ b/dist/javascript-dialog.js @@ -4,8 +4,8 @@ @summary execute arbitrary javascript from dialog @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -181,8 +181,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/logic-operators-extended.js b/dist/logic-operators-extended.js index e803cd57..67de1a3b 100644 --- a/dist/logic-operators-extended.js +++ b/dist/logic-operators-extended.js @@ -3,8 +3,8 @@ @file logic-operators-extended @summary adds conditional logic operators @author @mildmojo -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -168,8 +168,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/long-dialog.js b/dist/long-dialog.js index cc51a73a..adc6288c 100644 --- a/dist/long-dialog.js +++ b/dist/long-dialog.js @@ -4,8 +4,8 @@ @summary put more words onscreen @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -184,8 +184,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -358,8 +358,8 @@ inject(/(this\.AddLinebreak = )/, 'this.AddParagraphBreak = function() { buffer. @summary Adds paragraph breaks to the dialogue parser @license WTFPL (do WTF you want) @author Sean S. LeBlanc, David Mowatt -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description diff --git a/dist/multi-sprite-avatar.js b/dist/multi-sprite-avatar.js index 784c5169..0a3923ab 100644 --- a/dist/multi-sprite-avatar.js +++ b/dist/multi-sprite-avatar.js @@ -4,8 +4,8 @@ @summary make the player big @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -193,8 +193,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -260,8 +260,8 @@ var after = kitsy.after; @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/noclip.js b/dist/noclip.js index e3c6120d..2f16a46c 100644 --- a/dist/noclip.js +++ b/dist/noclip.js @@ -4,8 +4,8 @@ @summary walk through wall tiles, sprites, items, exits, and endings @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -182,8 +182,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -251,8 +251,8 @@ var after = kitsy.after; @summary run custom code on key inputs @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description diff --git a/dist/online.js b/dist/online.js index 195ca642..2c26c7bb 100644 --- a/dist/online.js +++ b/dist/online.js @@ -4,8 +4,8 @@ @summary multiplayer bitsy @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description Provides the groundwork for running a small online multiplayer bitsy game. @@ -182,8 +182,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -347,8 +347,8 @@ function addDualDialogTag(tag, fn) { @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ @@ -411,8 +411,8 @@ function getImage(name, map) { @summary edit dialog from dialog (yes really) @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -478,8 +478,8 @@ addDeferredDialogTag('dialog', editDialog); @file edit image at runtime @summary API for updating image data at runtime. @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description Adds API for updating sprite, tile, and item data at runtime. @@ -547,8 +547,8 @@ function setSpriteData(id, frame, newData) { @summary edit sprites, items, and tiles from dialog @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -692,8 +692,8 @@ addDualDialogTag('imagePal', editPalette); @summary execute arbitrary javascript from dialog @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description diff --git a/dist/opaque-tiles.js b/dist/opaque-tiles.js index 2a77fac8..43bd11e3 100644 --- a/dist/opaque-tiles.js +++ b/dist/opaque-tiles.js @@ -4,8 +4,8 @@ @summary tiles which hide the player @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -169,8 +169,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/paragraph-break.js b/dist/paragraph-break.js index 9babc536..3ae4cd97 100644 --- a/dist/paragraph-break.js +++ b/dist/paragraph-break.js @@ -4,8 +4,8 @@ @summary Adds paragraph breaks to the dialogue parser @license WTFPL (do WTF you want) @author Sean S. LeBlanc, David Mowatt -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -176,8 +176,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/permanent-items.js b/dist/permanent-items.js index 9a423eba..26f3990a 100644 --- a/dist/permanent-items.js +++ b/dist/permanent-items.js @@ -4,8 +4,8 @@ @summary prevent some items from being picked up @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -166,8 +166,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/push-sprites.js b/dist/push-sprites.js index 537ca48f..c16e74e0 100644 --- a/dist/push-sprites.js +++ b/dist/push-sprites.js @@ -4,8 +4,8 @@ @summary sokoban-style sprite pushing @license MIT @author jan0sc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -198,8 +198,8 @@ bitsy = bitsy || /*#__PURE__*/_interopDefaultLegacy(bitsy); @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ @@ -260,8 +260,8 @@ function getImage(name, map) { @file edit image at runtime @summary API for updating image data at runtime. @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description Adds API for updating sprite, tile, and item data at runtime. @@ -462,8 +462,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/replace-drawing.js b/dist/replace-drawing.js index 87f467d3..e3508c30 100644 --- a/dist/replace-drawing.js +++ b/dist/replace-drawing.js @@ -4,8 +4,8 @@ @summary add name-tags to replace drawings when the game is loading @license MIT @author Elkie Nova -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -177,8 +177,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/save.js b/dist/save.js index d2c6d93c..d6bf1571 100644 --- a/dist/save.js +++ b/dist/save.js @@ -4,8 +4,8 @@ @summary save/load your game @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -195,8 +195,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -360,8 +360,8 @@ function addDualDialogTag(tag, fn) { @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/smooth-moves.js b/dist/smooth-moves.js index fb6477ef..9fbba715 100644 --- a/dist/smooth-moves.js +++ b/dist/smooth-moves.js @@ -4,8 +4,8 @@ @summary ease the player's movement @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -170,8 +170,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/solid-items.js b/dist/solid-items.js index 7a600e72..a8c4ecfe 100644 --- a/dist/solid-items.js +++ b/dist/solid-items.js @@ -4,8 +4,8 @@ @summary treat some items like sprites that can be placed multiple times @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -167,8 +167,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/sprite-effects.js b/dist/sprite-effects.js index 30fb8617..63eba4ff 100644 --- a/dist/sprite-effects.js +++ b/dist/sprite-effects.js @@ -4,8 +4,8 @@ @summary like text effects, but for sprites @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -215,8 +215,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -380,8 +380,8 @@ function addDualDialogTag(tag, fn) { @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/stopwatch.js b/dist/stopwatch.js index c8f44d2a..4f2bfe25 100644 --- a/dist/stopwatch.js +++ b/dist/stopwatch.js @@ -4,8 +4,8 @@ @summary time player actions @license MIT @author Lenny Magner -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -202,8 +202,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -367,8 +367,8 @@ function addDualDialogTag(tag, fn) { @file utils @summary miscellaneous bitsy utilities @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ diff --git a/dist/text-to-speech.js b/dist/text-to-speech.js index 84100296..7225f18b 100644 --- a/dist/text-to-speech.js +++ b/dist/text-to-speech.js @@ -4,8 +4,8 @@ @summary text-to-speech for bitsy dialog @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -192,8 +192,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/tracery-processing.js b/dist/tracery-processing.js index 66d373c8..c3090124 100644 --- a/dist/tracery-processing.js +++ b/dist/tracery-processing.js @@ -4,8 +4,8 @@ @summary process all dialog text with a tracery grammar @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -1036,8 +1036,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/transitions.js b/dist/transitions.js index fcced0d6..c831d11e 100644 --- a/dist/transitions.js +++ b/dist/transitions.js @@ -4,8 +4,8 @@ @summary customizable WebGL transitions @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -223,8 +223,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -292,8 +292,8 @@ var after = kitsy.after; @summary WebGLazy bitsy integration (this one's mostly just for me) @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description diff --git a/dist/transparent-background.js b/dist/transparent-background.js index 95abfaa7..7f0759b7 100644 --- a/dist/transparent-background.js +++ b/dist/transparent-background.js @@ -4,8 +4,8 @@ @summary makes the game have a transparent background @license MIT @author Cephalopodunk & Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -171,8 +171,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { @@ -240,8 +240,8 @@ var after = kitsy.after; @summary makes all sprites have transparent backgrounds @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description diff --git a/dist/transparent-dialog.js b/dist/transparent-dialog.js index 87c42103..05ecb337 100644 --- a/dist/transparent-dialog.js +++ b/dist/transparent-dialog.js @@ -4,8 +4,8 @@ @summary makes the dialog box have a transparent background @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -156,8 +156,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/transparent-sprites.js b/dist/transparent-sprites.js index a68131e9..945a023a 100644 --- a/dist/transparent-sprites.js +++ b/dist/transparent-sprites.js @@ -4,8 +4,8 @@ @summary makes all sprites have transparent backgrounds @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -167,8 +167,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/twine-bitsy-comms.js b/dist/twine-bitsy-comms.js index 87c10715..161a2b6e 100644 --- a/dist/twine-bitsy-comms.js +++ b/dist/twine-bitsy-comms.js @@ -4,8 +4,8 @@ @summary interprocess communication for twine and bitsy @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -238,8 +238,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/dist/unique-items.js b/dist/unique-items.js index 107a5530..8f961f80 100644 --- a/dist/unique-items.js +++ b/dist/unique-items.js @@ -4,8 +4,8 @@ @summary items which, when picked up, remove all other instances of that item from the game @license MIT @author Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 @description @@ -167,8 +167,8 @@ function applyHook(root, functionName) { @summary Monkey-patching toolkit to make it easier and cleaner to run code before and after functions or to inject new code into script tags @license WTFPL (do WTF you want) @author Original by mildmojo; modified by Sean S. LeBlanc -@version 19.2.5 -@requires Bitsy 7.10 +@version 19.2.6 +@requires Bitsy 7.11 */ var kitsy = (window.kitsy = window.kitsy || { diff --git a/package-lock.json b/package-lock.json index 1e024402..b67bb268 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bitsy/hecks", - "version": "19.2.5", + "version": "19.2.6", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index a40065a6..06926557 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "hacks" ], "main": "index.mjs", - "version": "19.2.5", + "version": "19.2.6", "bitsyVersion": "7.11", "scripts": { "build": "rollup -c",