Skip to content

Commit

Permalink
*Versioning v1.1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
paladin-t committed Aug 31, 2021
1 parent 602740f commit 2299290
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
17 changes: 17 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
### v1.1.3 Aug. 31, 2021

Enhanced modules, improved usability, fixed some bugs.

* Added a `Path.savedGamesDirectory` static variable
* Added a `pie(...)` function
* Added an `image:blit(...)` method
* Added navigation by keypad support to text-based editors
* Fixed a stuck issue of HTML build
* Fixed a directory browsing issue (Linux)
* Fixed a table traversing issue of the debugger
* Fixed a debug panel dragging issue
* Fixed an exiting issue from code
* Fixed a sprite playing issue when all parameters omitted
* Fixed a resetting bug of `Application.setCursor(...)`
* Upgraded ImGui from v1.83 to v1.84

### v1.1.2 Jun. 29, 2021

Enhanced modules, improved usability, fixed some bugs.
Expand Down
2 changes: 2 additions & 0 deletions docs/documents/operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
* F11: step into
* Shift+F11: step out

* Ctrl+1/Ctrl+2/Ctrl+3/Ctrl+4: resize running canvas to x1, x2, x3, x4

* F6: take a screenshot
* F7: start recording frames
* F8: stop recording frames
Expand Down
2 changes: 1 addition & 1 deletion src/bitty.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
#ifndef BITTY_VERSION
# define BITTY_VER_MAJOR 1
# define BITTY_VER_MINOR 1
# define BITTY_VER_REVISION 2
# define BITTY_VER_REVISION 3
# define BITTY_VER_SUFFIX
# define BITTY_VERSION ((BITTY_VER_MAJOR * 0x01000000) + (BITTY_VER_MINOR * 0x00010000) + (BITTY_VER_REVISION))
# define BITTY_MAKE_STRINGIZE(A) #A
Expand Down
2 changes: 1 addition & 1 deletion src/mac/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1.2</string>
<string>1.1.3</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSMinimumSystemVersion</key>
Expand Down

0 comments on commit 2299290

Please sign in to comment.