* Refactor: Migrate rest of .d.ts file to use JSDoc-style comment notation
- Adds markdown links for file references
- Refactor inline lists into structured markdown lists
- More verbose bitmask documentation
- Adds @link fields where appropriate
- Moves some comments from being inline to above the referenced line to allow for IDE notation
- Fixes some broken/moved C file path references
- Adds bitmask documentation for staff orders
* Fix: Type name
* Change: contributors.md file
* Remove outdated recommendation
* Change file links to github links
* Add comment applicability disclaimer
* Add link to LandSetRightsArgs ownership file
* Remove `ClimateSetArgs`
This issue, along with several related language-specific
trunctions, was traced back to the fact that ScenarioIndexEntry
uses a fixed-length array of utf8 characters to store the name,
internal name, and scenario details. In some cases, this does
not provide enough characters to contain the full description
and so the safe copy methods truncate them to fit in the
available buffer.
Since the use of fixed-size arrays is a holdover from earlier
C code, this commit addresses the issue by changing ScenarioIndexEntry
to use proper utf8 strings and string views, which do not require
truncation.
This commit fixes the graphics bug #23348 by introducing an asynchronous
command completion signalling system in InteractiveConsole. This causes the
console to stop accepting new inputs while a command is being executed.
The console command system was also refactored to reduce code duplication and
remove return codes, which were unused and also poor error handling.
* Close#21569: Remove 'Window' from Window Open function names
Windows are all under the OpenRCT2::Ui::Windows namespace. As such, "Window" is removed from the Open functions names.
* Update Contributors.md
* Fix formatting TrackMangeOpen
Co-authored-by: Tulio Leao <tupaschoal@gmail.com>
* Fix formatting TrackPlaceOpen
Co-authored-by: Tulio Leao <tupaschoal@gmail.com>
---------
Co-authored-by: Tulio Leao <tupaschoal@gmail.com>
* Added API for getAllPlugins
Added functionality to the Scripting API to allow Contexts to return a list of all registered plugins.
* Fixed naming conventions, returning list of authors
Changed function names to follow get/set convention. Removed unnecessary copies of shared pointers, now using auto instead. Changed the functionality to return an array of authors instead of a string.
* Added changelog entry
Also added myself to list of contributors
* Moved all functionality to ScPlugin
Created a ScPlugin class and moved the current getPlugins functionality there.
* Changed from method to property
Function names now match the get/set convention for properties. Also did some code cleanup.
* Update copyright
* Bump plugin version
---------
Co-authored-by: Tulio Leao <tupaschoal@gmail.com>
nl-NL: Fix/amend some descriptions by @Gymnasiast in #42
Update French translation by @rmnvgr in #43
Normalize the ragtime tunes by @karst in #44
Complete list of Fairground organ style 2 tunes by @karst in #45
Update Hungarian translation by @anon569 in #47
Add Mystic style by @SkyshardMelody in #46
pt-BR: Translate Mystic Style by @tupaschoal in #48
hu-HU: Translate Mystic Style by @anon569 in #49
* Remove flag RIDE_TYPE_FLAG_HAS_NO_TRACK (#20239)
* Fix a couple of logical conditions in entity/Staff.cpp
* Bump NETWORK_STREAM_VERSION and add myself to contributors.md