diff --git a/app/Changelog.md b/app/Changelog.md index 26ea3bb4..ca1c0cbd 100644 --- a/app/Changelog.md +++ b/app/Changelog.md @@ -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* diff --git a/comigojiChangelog.js b/comigojiChangelog.js index 8e6b13a2..dcddb167 100644 --- a/comigojiChangelog.js +++ b/comigojiChangelog.js @@ -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');