summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* style: Fix PEP8 whitespace issues in Python filesRémi Verschelde2016-11-0193-2330/+2330
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E2,W2`, fixes: - E201 - Remove extraneous whitespace. - E202 - Remove extraneous whitespace. - E203 - Remove extraneous whitespace. - E211 - Remove extraneous whitespace. - E221 - Fix extraneous whitespace around keywords. - E222 - Fix extraneous whitespace around keywords. - E223 - Fix extraneous whitespace around keywords. - E224 - Remove extraneous whitespace around operator. - E225 - Fix missing whitespace around operator. - E226 - Fix missing whitespace around operator. - E227 - Fix missing whitespace around operator. - E228 - Fix missing whitespace around operator. - E231 - Add missing whitespace. - E231 - Fix various deprecated code (via lib2to3). - E241 - Fix extraneous whitespace around keywords. - E242 - Remove extraneous whitespace around operator. - E251 - Remove whitespace around parameter '=' sign. - E261 - Fix spacing after comment hash. - E262 - Fix spacing after comment hash. - E265 - Format block comments. - E271 - Fix extraneous whitespace around keywords. - E272 - Fix extraneous whitespace around keywords. - E273 - Fix extraneous whitespace around keywords. - E274 - Fix extraneous whitespace around keywords. - W291 - Remove trailing whitespace. - W293 - Remove trailing whitespace.
* style: Start applying PEP8 to Python files, indentation issuesRémi Verschelde2016-11-0188-6750/+6750
| | | | | | | | | | | | | | | | | | | Done with `autopep8 --select=E1`, fixes: - E101 - Reindent all lines. - E112 - Fix under-indented comments. - E113 - Fix over-indented comments. - E115 - Fix under-indented comments. - E116 - Fix over-indented comments. - E121 - Fix a badly indented line. - E122 - Fix a badly indented line. - E123 - Fix a badly indented line. - E124 - Fix a badly indented line. - E125 - Fix indentation undistinguish from the next logical line. - E126 - Fix a badly indented line. - E127 - Fix a badly indented line. - E128 - Fix a badly indented line. - E129 - Fix a badly indented line.
* Merge pull request #6994 from eska014/wasmRémi Verschelde2016-10-314-35/+33
|\ | | | | | | Add option 'wasm' to compile to WebAssembly in web export [ci skip]
| * Add option 'wasm' to compile to WebAssembly in web exporteska2016-10-314-35/+33
|/ | | | | | | WebAssembly is still experimental, so disabled by default. The HTML shell file now uses $GODOT_BASE, a placeholder for the base filename, instead of $GODOT_JS, $GODOT_MEM and $GODOT_FS.
* Merge pull request #6993 from eska014/remove-js-compressionRémi Verschelde2016-10-311-8/+1
|\ | | | | Remove JavaScript compilation option 'compress'.
| * Remove JavaScript compilation option `compress`.eska2016-10-211-8/+1
| | | | | | | | | | This functionality has been removed from Emscripten in version 1.36.13, server-side compression is recommended instead.
* | Merge pull request #6981 from Faless/ipv6_fixRémi Verschelde2016-10-3118-47/+144
|\ \ | | | | | | Use IPv6 dual stack socket by default. Allow restricting IP version for TCP/UDP.
| * | Define IPV6_V6ONLY flag if not defined on windows (old mingw versions)Fabio Alessandrelli2016-10-301-0/+7
| | |
| * | Update docs to IPv6Fabio Alessandrelli2016-10-301-8/+26
| | |
| * | Set proper ip_type default for listen() and resolve_hostname()Fabio Alessandrelli2016-10-303-4/+4
| | |
| * | TCP/UDP Listen sockets can now be set to IPv6 onlyFabio Alessandrelli2016-10-306-8/+50
| | |
| * | Add optional IP type param in TCP/UDP connect/set_send_addressFabio Alessandrelli2016-10-304-5/+24
| | |
| * | Fix windows debugger connection problems.Fabio Alessandrelli2016-10-307-19/+30
| | | | | | | | | | | | | | | Unify network socket creation between platform. Ensure IPV6_V6ONLY flag is not set on sockets (allow IPv4 connection in IPv6 socket, dual-stack).
| * | TCPServer listen now default to IP type ANY (v6 socket with v4 support)Fabio Alessandrelli2016-10-304-5/+5
| | |
* | | Merge pull request #6991 from volzhs/fix-memleakRémi Verschelde2016-10-311-0/+1
|\ \ \ | | | | | | | | Fix memory leak with drag & drop on 2D viewport
| * | | Fix memory leak with drag & drop on 2D viewportvolzhs2016-10-311-0/+1
|/ / /
* | | Merge pull request #6989 from volzhs/out-of-sizeRémi Verschelde2016-10-301-1/+1
|\ \ \ | | | | | | | | Fix p_index out of size error when closing script
| * | | Fix p_index out of size error when closing scriptvolzhs2016-10-311-1/+1
| | | |
* | | | Merge pull request #6986 from volzhs/fix-accept-dialogRémi Verschelde2016-10-301-27/+15
|\ \ \ \ | | | | | | | | | | Fix Accept/ConfirmationDialog UI broken
| * | | | Fix Accept/ConfirmationDialog UI brokenvolzhs2016-10-311-5/+8
| | | | |
| * | | | Revert "Place child control under label in AcceptDialog."volzhs2016-10-311-25/+10
| |/ / / | | | | | | | | | | | | This reverts commit 3ef272290460670b82621727ba2e876fa0a5a01e.
* | | | Merge pull request #6490 from zaps166/webm-prRémi Verschelde2016-10-30322-3/+99780
|\ \ \ \ | |_|/ / |/| | | Add WebM support
| * | | Add WebM moduleBłażej Szczygieł2016-10-2311-3/+1124
| | | | | | | | | | | | | | | | | | | | Use already existing libraries: libvorbis and libopus. Also use newly added libraries: libvpx, libwebm, libsimplewebm.
| * | | libvpx: Necessary modificationsBłażej Szczygieł2016-10-1926-47/+5429
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - convert ARM assembly (NEON) files, - add rtcd for run-time CPU features detection, - modify "system_state.h", - "arm_cpudetect.c" fixes.
| * | | Add libvpx thirdparty libraryBłażej Szczygieł2016-10-19275-0/+83150
| | | | | | | | | | | | | | | | Only necessary files
| * | | Add libsimplewebm and libwebm thirdparty librariesBłażej Szczygieł2016-10-1716-0/+10124
| | | |
* | | | Merge pull request #6959 from RandomShaper/fix-big-libsRémi Verschelde2016-10-303-46/+56
|\ \ \ \ | |_|/ / |/| | | Adopt simpler strategy for big libs on Windows
| * | | scons: Move lib splitting method to methods.pyRémi Verschelde2016-10-303-3/+51
| | | | | | | | | | | | | | | | Apparently it might still be necessary for some console ports.
| * | | Adopt simpler strategy for big libs on WindowsPedro J. Estébanez2016-10-292-50/+12
| | | |
* | | | Merge pull request #6978 from volzhs/dup-search-menuRémi Verschelde2016-10-301-11/+6
|\ \ \ \ | | | | | | | | | | Fix 2 search menus are shown
| * | | | Fix 2 search menus are shownvolzhs2016-10-311-11/+6
|/ / / /
* | | | Merge pull request #6976 from volzhs/last-select-langRémi Verschelde2016-10-301-6/+1
|\ \ \ \ | | | | | | | | | | Fix bug with saving last select language and remove warning
| * | | | Fix bug with saving last select language and remove warningvolzhs2016-10-301-6/+1
| | | | |
* | | | | Revert "make `Container` node aware of `Size Flags`"Rémi Verschelde2016-10-301-12/+0
|/ / / / | | | | | | | | | | | | | | | | This reverts commit 6ed15e995dd83c1cf6808f261066580a1f8bc297. Fixes #6974.
* | | | Merge pull request #6962 from henriquelalves/external_editor_focus_bugRémi Verschelde2016-10-301-2/+6
|\ \ \ \ | | | | | | | | | | Won't change editor tabs when using External Editor.
| * | | | Won't change editor tabs when using External Editor.Henrique L. Alves2016-10-291-2/+6
| | | | | | | | | | | | | | | | | | | | Fixes issue #3046.
* | | | | Merge pull request #6950 from rdb/masterRémi Verschelde2016-10-303-4/+9
|\ \ \ \ \ | | | | | | | | | | | | Add "Never" underline mode to LinkButton
| * | | | | Add "Never" underline mode to LinkButtonrdb2016-10-283-4/+9
| | |/ / / | |/| | |
* | | | | Merge pull request #6945 from Hinsbart/script_dndRémi Verschelde2016-10-304-2/+38
|\ \ \ \ \ | | | | | | | | | | | | Ability to drag script files from Filesystem dock to SceneTree dock.
| * | | | | Ability to drag script files from Filesystem dock to SceneTree dock.Andreas Haas2016-10-274-2/+38
| |/ / / / | | | | | | | | | | | | | | | Allows to attach scripts by dragging them onto the target Node.
* | | | | Merge pull request #6928 from razvanc-r/fix-containerRémi Verschelde2016-10-301-0/+12
|\ \ \ \ \ | | | | | | | | | | | | make Container node aware of Size Flags
| * | | | | make `Container` node aware of `Size Flags`Răzvan Cosmin Rădulescu2016-10-261-0/+12
| | | | | |
* | | | | | Merge pull request #6920 from volzhs/dragndrop-2dRémi Verschelde2016-10-303-6/+453
|\ \ \ \ \ \ | | | | | | | | | | | | | | Improve drag and drop on 2D viewport
| * | | | | | Improve drag and drop on 2D viewportvolzhs2016-10-263-6/+453
| | | | | | |
* | | | | | | Merge pull request #6918 from pkowal1982/tween_fix_k3kRémi Verschelde2016-10-302-5/+14
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix regression #6864 caused by #6613
| * | | | | | | Fix regression #6864 caused by #6613Pawel Kowal2016-10-262-5/+14
| | | | | | | |
* | | | | | | | Merge pull request #6887 from leezh/regex_moduleRémi Verschelde2016-10-3015-1973/+1769
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | RegEx re-implemented as a module
| * | | | | | | | Changed RegEx to inherit ResourceZher Huei Lee2016-10-272-4/+8
| | | | | | | | |
| * | | | | | | | Added global sub and bounds checking to RegExZher Huei Lee2016-10-273-19/+54
| | | | | | | | |
| * | | | | | | | RegEx re-implemented as a moduleZher Huei Lee2016-10-2715-1973/+1730
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-wrote nrex as a module using godot-specific parts and new features: * Added string substitutions. * Named groups are now supported. * Removed use of mutable variables in RegEx. RegExMatch is returned instead.