| Commit message (Collapse) | Author | Files | Lines | ||
|---|---|---|---|---|---|
| 2018-01-30 | Bump version to 3.1-dev | Rémi Verschelde | 1 | -2/+2 | |
| On the road again! | |||||
| 2018-01-29 | Bump version to 3.0-stable \o/3.0-stable | Rémi Verschelde | 1 | -1/+1 | |
| Congratulations to everyone in the Godot community for the tremendous work done on this release since 18 months, with hundreds of contributors pushing almost 7500 commits with more than 3000 PRs and closing over 2000 issues (and fixing even more than that, as many work-in-progress bugs were fixed before an issue could be filled). Godot 3.0 is definitely our biggest and boldest release so far, and we want to thank the whole community for their unswerving support during this long wait. From there on, there is a lot of work to do to strengthen the foundations that we built with 3.0, fixing the bugs that the many refactorings probably introduced, optimizing new features and enhancing the usability again... The 3.x era should be a fruitful one for Godot, and we hope that you will continue using it to create awesome 2D and 3D games and increase the notoriety of your favourite engine in the game development industry. And now, let's all start waiting for 3.1... | |||||
| 2018-01-29 | Fix Copy/Paste problems on X11 | Hein-Pieter van Braam | 1 | -11/+29 | |
| The target of the TARGETS type should be XA_ATOM and not XA_TARGETS when requested. Since we are sending a number of ATOMS the size should be set to the integer size and not the char size. The size field of the atoms is also the number of atoms and not the size of the array. This caused some clients to wrongly interpret the data and read garbage in the X11 packet. I also add the more modern representation for UTF-8 and clarify the error message if a client attempts to request a type we don't know about. This fixes #10431 | |||||
| 2018-01-28 | ProjectManager: prevent installing project template in non-empty dir | Poommetee Ketson | 1 | -11/+8 | |
| 2018-01-27 | Mono: Fix method_bind fields being generated as instance members | Ignacio Etcheverry | 1 | -2/+1 | |
| 2018-01-27 | Fix inverted RIGHT/LEFT TOP/BOTTOM Camera2D drag margin in runtime (editor ↵ | robfram | 1 | -4/+4 | |
| works fine). Fix #16095. | |||||
| 2018-01-27 | Mono: Fix build errors with tools=no and target=release | Ignacio Etcheverry | 2 | -0/+12 | |
| 2018-01-27 | Use the appropriate Variant hash and compare functions for Dictionaries | Hein-Pieter van Braam | 1 | -13/+8 | |
| Dictionaires did not use the VariantHasher and VariantComparator making them unsafe for use with NaN values as keys. This PR uses the appropriate Variant implementations for these functions. var d = {} d[Vector2(NAN, NAN)] = 0 d[Vector2(NAN, NAN)] = 0 print(d.size()) will now output '1' and not '2' This fixes #16031 | |||||
| 2018-01-26 | Fix macOS build after #16092 | bruvzg | 1 | -1/+1 | |
| 2018-01-26 | Make separate debug symbols opt-in | Hein-Pieter van Braam | 6 | -3/+6 | |
| This adds a separate_debug_symbols option to the x11, windows, and osx targets. This will default to adding normal debugging symbols to the artifacts and only splits them when separate_debug_symbols=yes on the Scons command line. | |||||
| 2018-01-26 | Bullet: allow unbundling only if > 2.87 | Rémi Verschelde | 2 | -6/+6 | |
| Looks like we are using cutting edge methods which are not even if the current stable 2.87. | |||||
| 2018-01-26 | Fix remove_dll_directory crash when cookie is null | djgaspa | 1 | -2/+2 | |
| 2018-01-26 | Update ProjectSettings description to correct usage | volzhs | 1 | -1/+1 | |
| Fix #16078 | |||||
| 2018-01-26 | Mono: Don't defer call to dispose queue objects when finalizing domain | Ignacio Etcheverry | 1 | -5/+7 | |
| It's going to be called anyway after `mono_domain_finalize`. This also prevents crashes, since the MessageQueue singleton could already be freed at this point (see: #15702). | |||||
| 2018-01-25 | Mono: Fix NodePath and RID bindings | Ignacio Etcheverry | 4 | -43/+141 | |
| 2018-01-25 | i18n: Sync translations with Weblate | Rémi Verschelde | 3 | -131/+138 | |
| 2018-01-25 | Dist: Update manpage and macOS version string | Rémi Verschelde | 2 | -9/+12 | |
| 2018-01-25 | Fix shortcut conflict | Razah | 1 | -6/+3 | |
| fix https://github.com/godotengine/godot/issues/16054 The clone_down shortcut that conflicts with the "editor / play" shortcut has been replaced by "SHIFT + COMMAND + C" instead of "COMMAND + B" on macOS | |||||
| 2018-01-25 | Remove duplicate "autoplay" property | Bojidar Marinov | 1 | -7/+0 | |
| Part of #16051 | |||||
| 2018-01-25 | Disable OpenSSL module in HTML5 platform by default | Leon Krause | 1 | -0/+5 | |
| 2018-01-25 | doc: Fix references to online tutorials after godotengine/godot-docs#1015 | Rémi Verschelde | 69 | -78/+78 | |
| 2018-01-25 | doc: Sync with current source | Rémi Verschelde | 487 | -489/+489 | |
| Also enhance RigidBody docs as per https://github.com/godotengine/godot-docs/pull/1018 and fix the version tag in all files (not really stable yet, but it makes no sense to hardcode rc3 at this stage). | |||||
| 2018-01-24 | Fix mixed use of tabs and spaces | Kurtis Harms | 1 | -3/+3 | |
| 2018-01-25 | Fix VisualServer.free conflicting with Object.free | Marc Gilleron | 1 | -1/+1 | |
| 2018-01-24 | removed debug print | Ariel Manzur | 1 | -1/+0 | |
| 2018-01-24 | - Improves portability in joystick buttons enum | Ariel Manzur | 3 | -10/+17 | |
| - Fixes linking bug in modules split library | |||||
| 2018-01-25 | maximum recent files increment fix | Razah | 1 | -1/+1 | |
| 2018-01-24 | Update AUTHORS list | Rémi Verschelde | 1 | -1/+3 | |
| Adds @Nutriz and @nounoursheureux. | |||||
| 2018-01-24 | doc: Sync with current source | Rémi Verschelde | 1 | -3/+3 | |
| 2018-01-24 | i18n: Sync translations with Weblate | Rémi Verschelde | 12 | -957/+885 | |
| 2018-01-24 | Silence verbose stderr info message on X11 | Rémi Verschelde | 1 | -1/+1 | |
| 2018-01-24 | Fix bug in color doc | Chaosus | 1 | -2/+1 | |
| 2018-01-24 | Improved stabilization of ray shape in Bullet | Andrea Catania | 1 | -3/+10 | |
| 2018-01-24 | Rotate Control node with respecting pivot offset | volzhs | 1 | -2/+2 | |
| 2018-01-24 | Fix HTML5 JS API setResizeCanvasOnStart | Leon Krause | 1 | -8/+3 | |
| 2018-01-24 | Fix CSharpInstance::call not initializing CallError | Ignacio Etcheverry | 1 | -2/+7 | |
| 2018-01-23 | Print FPS setting now only prints the game FPS | Zephilinox | 1 | -1/+1 | |
| 2018-01-23 | update signals' MethodInfo in Tween | Paul Joannon | 1 | -3/+3 | |
| key is a NodePath, not a String | |||||
| 2018-01-23 | SignalAwaiter::_signal_callback was calling the thunk with a wrong pointer | Paul Joannon | 2 | -2/+2 | |
| 2018-01-22 | defend Path2D against a null curve | Todd Ross | 1 | -1/+1 | |
| 2018-01-23 | Rename Fixed Fps to Physics Fps on Project Settings | volzhs | 1 | -1/+1 | |
| Fixes #15981 | |||||
| 2018-01-22 | More precise description for is_visible_in_tree | PetePete1984 | 1 | -1/+1 | |
| 2018-01-22 | Mono: Display opt-out warning in editor about WIP status | Rémi Verschelde | 2 | -1/+93 | |
| This ensures that all users of the Mono flavour of Godot 3.0 are aware of its current shortcomings (no export, crashes and usability issues). The dialog is shown each time the editor is started, until the checkbox is disabled (i.e. until users will have actually read it). Fixes #15956. | |||||
| 2018-01-22 | RID cached class was wrong (mono) | Paul Joannon | 1 | -1/+1 | |
| 2018-01-22 | Copyright: replace tabs by 8 spaces | Poommetee Ketson | 1 | -6/+6 | |
| 2018-01-22 | Copyright: Add license info for bullet and Mozilla CA certs | Rémi Verschelde | 2 | -7/+387 | |
| 2018-01-22 | Bump version to 3.0-rc3 | Rémi Verschelde | 1 | -1/+1 | |
| Jamais deux sans trois. | |||||
| 2018-01-22 | i18n: Fix typo in translation msgid | Rémi Verschelde | 46 | -92/+92 | |
| 2018-01-22 | i18n: Sync translations with Weblate | Rémi Verschelde | 16 | -1254/+1300 | |
| 2018-01-22 | Fix ObjectDB Instances still exist | Poommetee Ketson | 2 | -1/+6 | |
| ``` WARNING: cleanup: ObjectDB Instances still exist! At: core/object.cpp:1989. Leaked Instance: VSeparator:13837 - Node Name: Leaked Instance: AutotileEditorHelper:13814 Orphan StringName: VSeparator Orphan StringName: AutotileEditorHelper StringName: 2 unclaimed string names at exit. ``` | |||||
