Skip to content

Commit

Permalink
📝 Update the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmoMyzrailGorynych committed Oct 13, 2024
1 parent e64d3ed commit 359d559
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 1 deletion.
43 changes: 43 additions & 0 deletions app/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,46 @@
## v5.2.0

*Sun Oct 13 2024*

### ✨ New Features

* Add methods `u.distance`, `u.direction` (For Catnip, these can be found in Utilities category)
* Object list panel for room editor's select mode, plus hover effect on copies and tiles

### ⚡️ General Improvements

* Add a menu in the app's settings to change app's UI font to Open Dyslexic or Comic Relief
* Catnip: Add "set visibility" block
* Catnip: improve block names for the Place catmod
* Create missing properties and variables when copying Catnip blocks from one asset to another (and in other similar cases)
* Improve how backgrounds and scrolling textures wrap themselves. Closes #535
* Limit the amount of names the confirmation dialog shows when deleting several assets in the asset-browser tag.
* :globe_with_meridians: Update Chinese Simplified translation (#534 and #536 by @emaoshushu)
* :globe_with_meridians: Update Brazilian Portuguese translation (made by Henrique aka hlbarone on Discord)

### 🐛 Bug Fixes

* Catnip: Fix walkOverScript ignoring values in commands' arguments
* Catnip: Hide templates.killRecursive block as it is an internal API
* Fix an extra copy/tile appearing while using a rectangular fill in room editor
* Fix not being able to copy multiple blocks in catnip
* Fix overflowing content exceeding window boundaries in alertify modals. Closes #537
* Fix repeated import of same-named images (or the same image) leading to textures with identical names, which broke exports
* Fix rooms' tile editor not accepting 0 as tile layer depth
* Fix sprited counters not rendering in room editor
* Fix tabs with room editor not opening again if this room editor has an event editor open
* Fix values in room editor's entities properties panel not updating when selecting new copies or tiles
* Fix wrong initial values for rooms' camera restriction boundaries

### 🌐 Website

* :zap: New layout for engine's features
* :bug: Fix issues with package icon and rounded corners on main page's grid layour
* :fire: Remove old translation keys for the homepage
* :zap: :globe_with_meridians: Update wording in the homepage's introductory text for Russian locale
* :zap: Display games from static APIs in the homepage
* :zap: Improve illustration position on various screens

## v5.1.0

*Sat Jul 20 2024*
Expand Down
9 changes: 8 additions & 1 deletion comigojiChangelog.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
// $ comigoji-changelog ./comigojiChangelog.js > Changelog.md
/*
To append to the current changelog:
cat ./app/Changelog.md > ./app/Changelog.md.old
comigoji-changelog ./comigojiChangelog.js > ./app/Changelog.md
cat ./app/Changelog.md.old >> ./app/Changelog.md
rm ./app/Changelog.md.old
*/

const gitCommand = 'git log --max-count=1 --tags --simplify-by-decoration --pretty="format:%cI"';
const {exec} = require('child_process');
Expand Down

0 comments on commit 359d559

Please sign in to comment.