summaryrefslogtreecommitdiffstats
path: root/editor/doc_tools.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ceSpartan3222024-11-261-0/+17
|\
| * Core: Fix built-in enum constant bindingsDanil Alexeev2024-11-221-0/+17
| |
* | Fix remainder of godotengine referencesSpartan3222024-10-311-1/+1
| | | | | | | | (cherry picked from commit 1d62a70c5bb74dfbffffe1c018a861719e93e7ae)
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Merge pull request #78656 from Repiteo/typed-dictionaryRémi Verschelde2024-09-061-0/+2
|\ | | | | | | Implement typed dictionaries
| * Implement typed dictionariesThaddeus Crews2024-09-041-0/+2
| |
* | Docs: Add missing deprecated/experimental tag support for theme itemsDanil Alexeev2024-09-041-0/+18
|/
* Split TranslationServer into its own fileHaoyu Qiu2024-08-151-1/+1
|
* Merge pull request #91557 from AThousandShips/dotnet_doc_fixRémi Verschelde2024-05-211-19/+0
|\ | | | | | | [C#] Unexpose `GodotSharp`
| * [C#] Unexpose `GodotSharp`A Thousand Ships2024-05-041-19/+0
| | | | | | | | | | This class seems to have been exposed accidentally, and breaks documentation on non-mono builds, requiring hacks
* | Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-1/+1
| | | | | | | | | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* | Generate docs from GDExtensions using `--gdextension-docs` with `--doctool`David Snopek2024-05-071-8/+10
| |
* | Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-12/+15
|/ | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* Improve merging of docs on generationA Thousand Ships2024-03-251-201/+247
| | | | | Adds dedicated helper methods to perform sorting to clean up code, and uses linear merging instead of iterating over both lists directly
* Expose scene unique id functionality in ResourceRyan2024-03-071-1/+1
|
* Documentation: Add support for deprecated/experimental messagesDanil Alexeev2024-02-151-24/+79
|
* Add keywords to the class referenceRedMser2024-02-091-8/+45
| | | | | | | | | | | | Allows for finding methods, properties, signals, constants, theme items and annotations more easily. - Allow "keywords" attribute in aforementioned locations in the class reference XMLs - Extends doctool, to preserve these attributes - Update the XSD schema for the class reference - Update the RST generator to include a meta tag for class keywords - Update the editor help to support filtering by keywords
* Merge pull request #84760 from KoBeWi/ultimate_get_property_list_reloadedRémi Verschelde2024-01-291-1/+1
|\ | | | | | | Fetch override list from ThemeDB
| * Fetch override list from ThemeDBkobewi2024-01-291-1/+1
| |
* | GDExtension: add an interface for loading extra documentationRiteo2024-01-261-0/+12
| | | | | | | | | | | | | | | | | | | | | | Adds two new GDExtension interface methods: - `editor_help_load_xml_from_utf8_chars` - `editor_help_load_xml_from_utf8_chars_and_len` Both of these methods parse the XML passed into an extra documentation container which, when needed, is merged into the main doc container. Co-Authored-By: Rémi Verschelde <rverschelde@gmail.com>
* | Add inheriting classes to `DocTools`A Thousand Ships2024-01-161-8/+19
|/
* Add const references detected by clang-tidyWilson E. Alvarez2023-12-161-1/+1
|
* Polish & fix editor help cache generationPedro J. Estébanez2023-11-021-11/+17
| | | | | | | - Isolated the generation of extensions's docs. They're now not cached and refreshed as needed. - Removed superfluous sorting of the class list. - Removed some superfluous/unused elements. - Renamed some items for clarity.
* Use bound theme properties for documentationYuri Sizov2023-09-261-56/+37
|
* Fix API hash related crash in `EditorSettings`Ninni Pipping2023-07-311-0/+2
|
* Merge pull request #49524 from Calinou/document-editor-import-optionsYuri Sizov2023-07-121-15/+33
|\ | | | | | | Document editor import options in the class reference
| * Document editor import options in the class referenceHugo Locurcio2023-06-151-15/+33
| | | | | | | | | | | | | | Tooltips are displayed when hovering import options, both in the Import dock and in the import defaults editor (which is in the Project Settings). Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* | Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-2/+0
| | | | | | | | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* | Fix missing GDExtension in-editor API referenceRémi Verschelde2023-06-291-5/+0
| | | | | | | | | | | | | | This commit partially reverts a change in e1ce0340b78875a864d449a5e3e38e4535e9a800 which would prevent from generating API reference for GDExtension APIs. Fixes #78829.
* | Display `BitField[Enum]` in docs to distinguish from `Enum`Danil Alexeev2023-06-151-3/+22
|/
* Merge pull request #76730 from AThousandShips/doc_orderRémi Verschelde2023-05-091-2/+7
|\ | | | | | | Make documentation sorting use natural order
| * Make documentation sorting use natural orderNinni Pipping2023-05-091-2/+7
| |
* | Merge pull request #76490 from dsnopek/dump-gdscript-docsRémi Verschelde2023-05-091-18/+21
|\ \ | |/ |/| | | Dump API docs from inline GDScript comments using --doctool --gdscript-docs PATH
| * Dump API docs from inline GDScript comments using --doctool --gdscript-docs PATHDavid Snopek2023-05-081-18/+21
| |
* | Merge pull request #72288 from MewPurPur/use-string-repeatClay John2023-05-051-4/+1
|\ \ | |/ |/| Use `String.repeat()` to optimize several String methods
| * Use String.repeat() in more placesVolTer2023-05-011-4/+1
| |
* | Improve reliability of editor docs cachePedro J. Estébanez2023-04-251-0/+5
| |
* | [Export] Add readable descriptions and validation warnings to the export ↵bruvzg2023-04-191-0/+17
| | | | | | | | options.
* | GDScript: Fix issues with typed arraysDmitrii Maganov2023-01-311-9/+6
|/
* Merge pull request #71649 from raulsntos/array-indexerRémi Verschelde2023-01-191-0/+1
|\ | | | | | | Add property usage to array indexer
| * Add property usage to array indexerRaul Santos2023-01-191-0/+1
| | | | | | | | This makes the `Array` indexer show as returning `Variant` instead of `void` in the documentation.
* | [GDExtension] Expose some low level functions and String operators.bruvzg2023-01-191-31/+31
|/
* Use BitField<> in core type masksJuan Linietsky2023-01-081-0/+1
| | | | | | | | * All core types masks are now correctly marked as bitfields. * The enum hacks in MouseButtonMask and many other types are gone. This ensures that binders to other languages non C++ can actually implement type safe bitmasks. * Most bitmask operations replaced by functions in BitField<> * Key is still a problem because its enum and mask at the same time. While it kind of works in C++, this most likely can't be implemented safely in other languages and will have to be changed at some point. Mostly left as-is. * Documentation and API dump updated to reflect bitfields in core types.
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Unify String and StringNamerune-scape2022-12-051-2/+2
|
* Fix default values on virtual classes causing errors in projectsAaron Franke2022-11-091-1/+1
|
* Fix default values not showing up on virtual classesAaron Franke2022-11-061-1/+1
|
* 2D and 3D Skeleton modification docs, and small fixes.Lyuma2022-09-141-16/+12
| | | | | | | Mark SkeletonModificationStack3D and related as deprecated. Mark local bone override and axis functions deprecated in Skeleton3D api. Fix array property glitch in SkeletonModificationStack2D Mark SkeletonModificationStack2D and related APIs as experimental. Mark SkeletonIK3D as deprecated.
* Add ability to flag classes as experimental or deprecated.SaracenOne2022-09-111-6/+82
|