summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-25[Mono] Approximate equalityAaron Franke
2019-04-25[Core] Expose approximate equality methods to GDScriptAaron Franke
2019-04-25[Core] Approximate equalityAaron Franke
2019-04-25Merge pull request #22301 from YeldhamDev/button_popup_highlightRémi Verschelde
Enable toggle behaviour for buttons that trigger popups
2019-04-25i18n: Sync translation template with current sourceRémi Verschelde
(cherry picked from commit 23cf9f3b6f8d362cbde1f940d1b97d66b8fff3fd)
2019-04-25i18n: Sync translations with WeblateRémi Verschelde
(cherry picked from commit 348270df3811348ede5d8ac9705e4c410639b8b3)
2019-04-25Merge pull request #28413 from akien-mga/xatlas-cleanup-theklaRémi Verschelde
SCons: Clean xatlas SCsub from thekla/poshlib defines
2019-04-25Merge pull request #28267 from Xrayez/fix-bmp-indexed-8-4-1Rémi Verschelde
Load and import 4/1-bit BMP images
2019-04-25Merge pull request #28265 from Xrayez/fix-tga-indexed-paletteMax Hilbrunner
Fix TGA indexed images loaded with flipped color table
2019-04-25Merge pull request #28357 from ↵Rémi Verschelde
AnthonyYoManz/issue-28263-save-layout-on-close-scene-with-right-click Save Layout When Scene Is Closed Via Context Menu
2019-04-25Merge pull request #28354 from gdupr/gui_improvements_in_asset_editorRémi Verschelde
GUI improvements in the asset library editor.
2019-04-25Merge pull request #28347 from homer666/tilemap-hide-menuRémi Verschelde
Hide "TileMap" menu properly in CanvasItem view
2019-04-25Merge pull request #28340 from guilhermefelipecgs/fix_connection_dialogRémi Verschelde
Small fixes to connection dialog
2019-04-25Merge pull request #28338 from qarmin/disable_project_export_buttonRémi Verschelde
Disable Project Export button after deleting preset
2019-04-25Merge pull request #28336 from guilhermefelipecgs/fix_play_posRémi Verschelde
[StateMachine] Fix play position
2019-04-25Merge pull request #28359 from Calinou/doc-improve-projectsettingsMax Hilbrunner
Improve the ProjectSettings documentation
2019-04-25Merge pull request #28376 from ↵Rémi Verschelde
MuffinManKen/translation_server_get_all_loaded_locales Add method to get locales that have loaded translations
2019-04-25SCons: Clean xatlas SCsub from thekla/poshlib definesRémi Verschelde
Those are not used in xatlas.
2019-04-25Merge pull request #28396 from akien-mga/scons-capture-the-flagsRémi Verschelde
SCons: Review uses of CCFLAGS, CXXFLAGS and CPPFLAGS
2019-04-25Merge pull request #28410 from guilhermefelipecgs/fix_typoRémi Verschelde
[Tilemap] Fix typo
2019-04-25Merge pull request #28377 from YeldhamDev/connection_info_script_changesRémi Verschelde
Make small changes to the new connection info on script feature
2019-04-25Merge pull request #28380 from kiidmale/fix-cpuparticlesRémi Verschelde
Make multimesh invisible initially in CPUParticles
2019-04-25Merge pull request #28236 from Calinou/android-real-one-click-deployRémi Verschelde
Require only one click to deploy to Android if one device is connected
2019-04-25Merge pull request #28411 from Chaosus/fix_vs_crashYuri Roubinsky
Fix crash regression in visual shader
2019-04-25Fix crash regression in visual shaderChaosus
2019-04-24Added TranslationServer::get_loaded_locales to return an array of all ↵Ken Paulson
locales with a loaded Translation
2019-04-24[Tilemap] Fix typoGuilherme Felipe
2019-04-25Merge pull request #28400 from neikeq/issue-28388Ignacio Roldán Etcheverry
Fix invalid mono log file name on Windows
2019-04-24Merge pull request #28363 from YeldhamDev/themeeditor_namepopup_size_fixMichael Alexsander Silva Dias
Fix "Name" popup's size in theme editor
2019-04-24Rename wrong field.Juan Linietsky
2019-04-24Remove forgotten strings in configuration filesJuan Linietsky
2019-04-24Fixes to make exporting more responsive.Juan Linietsky
-Process and drop input in step functions. -Hide editor file dialog right after pressing ok -Use actual editor file dialogs for project export.
2019-04-24Fix invalid mono log file name on WindowsIgnacio Etcheverry
2019-04-24SCons: Review uses of CCFLAGS, CXXFLAGS and CPPFLAGSRémi Verschelde
Many contributors (me included) did not fully understand what CCFLAGS, CXXFLAGS and CPPFLAGS refer to exactly, and were thus not using them in the way they are intended to be. As per the SCons manual: https://www.scons.org/doc/HTML/scons-user/apa.html - CCFLAGS: General options that are passed to the C and C++ compilers. - CFLAGS: General options that are passed to the C compiler (C only; not C++). - CXXFLAGS: General options that are passed to the C++ compiler. By default, this includes the value of $CCFLAGS, so that setting $CCFLAGS affects both C and C++ compilation. - CPPFLAGS: User-specified C preprocessor options. These will be included in any command that uses the C preprocessor, including not just compilation of C and C++ source files [...], but also [...] Fortran [...] and [...] assembly language source file[s]. TL;DR: Compiler options go to CCFLAGS, unless they must be restricted to either C (CFLAGS) or C++ (CXXFLAGS). Preprocessor defines go to CPPFLAGS.
2019-04-24Improve the ProjectSettings documentationHugo Locurcio
2019-04-24Merge pull request #28374 from akien-mga/thirdparty-disable-cflagsRémi Verschelde
Also disable C and C++ specific warnings in thirdparty code
2019-04-24Merge pull request #28381 from Chaosus/fix_vs_glitchYuri Roubinsky
Fix connection lines glitch in visual shaders
2019-04-24Fix connection lines glitch in visual shadersChaosus
2019-04-24Make multimesh invisible initially in CPUParticlesDaeil Kim
Fixes #28252
2019-04-24Merge pull request #28375 from Chaosus/fix_vs_loopbackYuri Roubinsky
Disallow loopback connection in visual shaders
2019-04-24Disallow loopback connection in visual scripts and visual shadersChaosus
2019-04-24Make small changes to the new connection info on script featureMichael Alexsander Silva Dias
2019-04-24doc: Sync classref with current sourceRémi Verschelde
2019-04-24Also disable C and C++ specific warnings in thirdparty codeRémi Verschelde
Move the `Append` up to make sure that the keys exist and avoid the need to check `if CPPFLAGS in self`, etc.
2019-04-24Merge pull request #28372 from Chaosus/fix_vs_transform_preview2Yuri Roubinsky
Removes preview from existing transform nodes in visual shader
2019-04-24Removes preview from existing transform nodes in visual shaderChaosus
2019-04-23Fix "Name" popup's size in theme editorMichael Alexsander Silva Dias
2019-04-23Save Layout When Scene Is Closed Via Context MenuDixiE
2019-04-23Merge pull request #28351 from Paulb23/fix_state_crashRémi Verschelde
Fix crash when restoring script editor state
2019-04-23Merge pull request #28348 from Chaosus/fix_vs_transform_previewRémi Verschelde
Removed incorrect "Transform" preview from visual shaders