summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* ABMs: Make catch-up behaviour optionalparamat2015-10-18
| | | | | Default is true for backwards compatibility Update lua_api.txt
* Settings tab: double click opens/closes treesKahrl2015-10-18
|
* Settings tab: don't autoscroll when toggling "Show technical names"Kahrl2015-10-18
|
* Remove wstrgettextest312015-10-18
| | | | | | | Everywhere where wstrgettext was used, its output was converted back to utf8. As wstrgettext internally converts the return value from utf8 to wstring, it has been a waste. Remove the function, and use strgettext instead.
* Display sane output for empty descriptionsest312015-10-18
| | | | | | | | | | According to its man page, the function gettext(3) "may return a nonempty string" when msgid is "". This commit fixes a bug where the comment "" for some settings caused gettext to return a "nonempty string", in this case header info of the po file.
* Fix GUITable selection issues with treesKahrl2015-10-17
| | | | | | | | | | | | | | | | | | | | | - setOpenedTrees(): this internal function was calling setSelected() to update m_selected. Since setSelected() calls autoScroll(), this caused the scrollbar to scroll back to the selected row in some cases when that shouldn't be done. For example, clicking the "+" to open a tree caused autoscroll. Fix this by making setOpenedTrees() modify m_selected directly. - setDynamicData(): set scrollbar position after calling setSelected(), not before. This avoids setSelected()'s autoscroll messing up the scrollbar position again. - setSelected(): If an invisible row is selected, open all parents of the selected row in order to make the selected row visible. This fixes the issue where all the trees are closed again whenever you return from the setting edit dialog to the settings tab.
* Re-add "file" type for --add-location for xgettext callest312015-10-17
| | | | | | | | | Passing line numbers in the comments is bad. References: * Commit 94961b3364f76d5861913af321e9be6200d080b3 * Previous commit
* New settings tab contain all possible settingsPilzAdam2015-10-17
| | | | | Settings are automatically parsed from builtin/settingtypes.txt The edit dialog automatically adjust based on the type of setting
* Fix == to =Rui2015-10-17
|
* Fix missing include on AIXkwolekr2015-10-17
|
* Refactor Thread class to improve readability and portabilitykwolekr2015-10-16
| | | | | | | | | - Fix some incompatibilities with obscure platforms (AIX and WinCE) - Clean up Thread class interface - Add m_ prefix to private member variables - Simplify platform-dependent logic, reducing preprocessor conditional clauses and improving readibility - Add Thread class documentation
* Refactor thread utility interfacekwolekr2015-10-16
| | | | | - Add "thr_" prefix to thread utility functions - Compare threadid_ts in a portable manner, where possible
* Fix crash regression when invsize formspec gets usedest312015-10-17
| | | | | | | | | | | | | | | | | | | | | The invsize formspec element is outdated. Even though, it is still supported, only a deprecation warning is shown, introduced by commit [1]. The lua context passed to the log_deprecated method added by commit [1] is NULL for the invsize deprecation warning, as its run on the client and not the server. Commit [1] has removed checks for NULL inside the log_deprecated method, resulting in a crash when a formspec with an invsize element is parsed. This commit puts the check back. Fixes #3260. Referenced commits: [1]: b5acec0a3c5701c53854ff7afdf4008863e6e8df "Add proper lua api deprecated handling" [2]: 7b8d372947aae232ddf598155e972bb4dda157a "Use warningstream for deprecated field messages and refactor log_deprecated"
* Fix enforcing of nametag hidingest312015-10-15
| | | | | | | | | | | | Commit d2ca662569427d36642660314668e416bf68f3c8 "Enforce hiding nametag" didn't fix the issue for "client" instances, where the nametag update was received before the object was added to the scene. This resulted in the grey shadow on the nametag that commit tried to fix. Thanks to @neoascetic for pointing out that there still is a shadow.
* Compress textures and fontsMaksim Gamarnik2015-10-15
| | | | | Used PNGOUT, OptiPNG and DeflOpt. Removes ~350 KB without any loss in quality.
* Add BufReader and vector-based serialization methodskwolekr2015-10-15
|
* Clean up gettext initializationShadowNinja2015-10-15
|
* Use warningstream for deprecated field messages and refactor log_deprecatedShadowNinja2015-10-15
|
* Remove explicit syslog printing for uncaught exceptions on AndroidShadowNinja2015-10-15
| | | | | All log operations are now added to the syslog implicitly. Also, pass along mutable string to argument vector for main().
* Rename macros with two leading underscoresShadowNinja2015-10-14
| | | | These names are reserved for the compiler/library implementations.
* Always use errorstream for DEBUG_EXCEPTION_HANDLERShadowNinja2015-10-14
|
* Lower log level for benign socket errorsShadowNinja2015-10-14
|
* Use warningstream for log messages with WARNINGShadowNinja2015-10-14
| | | | Remove DTIME macro and its uses, too
* Refactor loggingShadowNinja2015-10-14
| | | | | | | | | - Add warning log level - Change debug_log_level setting to enumeration string - Map Irrlicht log events to MT log events - Encapsulate log_* functions and global variables into a class, Logger - Unify dstream with standard logging mechanism - Unify core.debug() with standard core.log() script API
* Fix how address is logged when a wrong password is suppliedKahrl2015-10-12
| | | | | | - SRP: print the address only once, not twice - Legacy: previously the address was not printed at all - Make both messages structurally the same, to facilitate log analyzers
* Localize digprop_err functionRui2015-10-12
|
* Mgfractal: Independant offset and slice params for mandelbrot and juliaparamat2015-10-11
| | | | | | | Player now spawns on julia set due to julia offset Add commented-out '#include profiler.h' for timetaker use Use v3fs to reduce number of parameters Tune tunnel width to match mgv7
* Fractal mapgen: Fix mysterious bugparamat2015-10-10
|
* Clear list rings when loading a new formspecest312015-10-10
| | | | | | | | | Fixes a bug where the old list ring remained when a new formspec was displayed over the old one. This created the list-ring of the new formspec to be partly ignored. Thanks to @VanessaE to report the bug, and @DonBatman to produce the code that exposed it.
* Mapgen: Use mapgen-specific names for constants in headersparamat2015-10-09
| | | | | Update copyright years in all mapgens Add myself to copyright notices in mgv5 and mgv7
* Fractal mapgen: Add seabed and large pseudorandom cavesparamat2015-10-07
|
* Android/Mapgen: Add fractal mapgen file to android makefilesparamat2015-10-06
|
* Correct SRP documentationest312015-10-06
| | | | Previous statements were wrong.
* Add viewing range GUI settingkilbith2015-10-06
|
* Mapgen: Add 4D fractal mapgenparamat2015-10-06
|
* Mgv5: getGroundLevelAtPoint searches a larger rangeparamat2015-10-05
|
* Translated using Weblate (Spanish)OdnetninI2015-10-05
| | | | Currently translated at 99.6% (277 of 278 strings)
* Translated using Weblate (German)pilino12342015-10-05
| | | | Currently translated at 100.0% (278 of 278 strings)
* Translated using Weblate (German)Luca Gronmaier2015-10-05
| | | | Currently translated at 100.0% (278 of 278 strings)
* Translated using Weblate (German)pilino12342015-10-05
| | | | Currently translated at 100.0% (278 of 278 strings)
* Translated using Weblate (German)Luca Gronmaier2015-10-05
| | | | Currently translated at 100.0% (278 of 278 strings)
* Translated using Weblate (Spanish)andrewgigena2015-10-05
| | | | Currently translated at 100.0% (278 of 278 strings)
* Translated using Weblate (Ukrainian)Olexandr2015-10-05
| | | | Currently translated at 81.6% (227 of 278 strings)
* Translated using Weblate (Ukrainian)Olexandr2015-10-05
| | | | Currently translated at 78.0% (217 of 278 strings)
* Translated using Weblate (Spanish)Laura Arjona Reina2015-10-05
| | | | Currently translated at 100.0% (278 of 278 strings)
* Translated using Weblate (Norwegian Bokmål)Christian Haug2015-10-05
| | | | Currently translated at 3.5% (10 of 278 strings)
* Translated using Weblate (Hungarian)way-hu2015-10-05
| | | | Currently translated at 92.8% (258 of 278 strings)
* Translated using Weblate (Spanish)Laura Arjona Reina2015-10-05
| | | | Currently translated at 100.0% (278 of 278 strings)
* Translated using Weblate (Spanish)Laura Arjona Reina2015-10-05
| | | | Currently translated at 100.0% (278 of 278 strings)
* Translated using Weblate (Ukrainian)Olexandr2015-10-05
| | | | | | Currently translated at 66.5% (185 of 278 strings) Maybe it is better to describe allowed symbols instead of writing regex?