Tweaks to the changelog.

This commit is contained in:
Relintai 2023-01-01 00:43:05 +01:00
parent 95b5eaa47d
commit 2e95e04c3a

View File

@ -10,16 +10,22 @@ Nothing yet.
### Added
#### Backports
- Backported everything up to and including https://github.com/godotengine/godot/commit/0f10eafb38bd54e59fa7fd079ceafd2c07e8be2a
#### Core
- Added support for specifying a COPYRIGHT.txt file for modules.
- Never print an error message in Object::get_meta().
- Remove now superfluos check from String's operator[].
- Add _FORCE_INLINE_ to String's resize().
- Added set_length helper method to String.
#### Editor
- Now EditorPlugins can register nodes to be shown on the `Create Root Node` tab.
#### Platforms
##### Android
@ -28,17 +34,17 @@ Nothing yet.
#### Modules
##### User
- Added signals for user actions into the user web nodes.
- Added a simple page rendering customization api for UserWebPages.
##### Database
- Added initialized signal and helper method to the DataBaseManager. It can be used to let automally allocated classes (singletons, main scene classes) in heavily database driven applications know when it's safe to use the db.
- Added docs for the QueryBuilder.
- Added docs for the TableBuilder.
##### User
- Added signals for user actions into the user web nodes.
- Added a simple page rendering customization api for UserWebPages.
##### Web
- Added HTTPSessionManagerDB using the disabled code in HTTPSessionManager, and cleaned up it's (and HTTPSessionManager's) logic.
@ -46,10 +52,6 @@ Nothing yet.
- Also added tag() and ctag() helpers to the c++ side HTMLBuilder, and smaller cleanups.
- Added get request parameter support for WebServerRequest.
#### Backports
- Backported everything up to and including https://github.com/godotengine/godot/commit/0f10eafb38bd54e59fa7fd079ceafd2c07e8be2a
### Fixed
- Fixed lots typos with codespell.
@ -68,6 +70,19 @@ Nothing yet.
#### Modules
##### Database
- QueryBuilder: Fix potential infinite recursion.
- QueryBuilder: Various small fixes
- TableBuilder: Fix missing default parameter.
- Use String length() instead of size() in QueryBuilder, also guard against overindexing.
##### Database SQLite
- QueryBuilder, sql3QueryBuilder various small fixes
- Set sqlite to serialized mode.
- Make sure escape is used in SQLite3QueryBuilder wherever it's expected.
##### Props
- Fixed a typo in one of TiledWallData's properties. renamed 'heigth' to 'height'.
@ -77,19 +92,6 @@ Nothing yet.
- Fix connecting a signal to a non existent method in UserManagerDB.
- Update logic in UserManagerDB, as the default user id is -1 now.
##### Database
- QueryBuilder - Fix potential infinite recursion.
- QueryBuilder various small fixes
- TableBuilder - Fix missing default parameter.
- Use String length() instead of size() in QueryBuilder, also guard against overindexing.
##### Database SQLite
- QueryBuilder, sql3QueryBuilder various small fixes
- Set sqlite to serialized mode.
- Make sure escape is used in SQLite3QueryBuilder wherever it's expected.
##### Web
- Use String.length() instead of String.size() in WebServerRequest::setup_url_stack().