Skip to content
Snippets Groups Projects
  1. Oct 24, 2015
    • est31's avatar
      Better gettext support for protocol version mismatch messages · 85c6b5fd
      est31 authored
      Previously, xgettext failed to resolve the dynamic call.
      Thanks to @JakubVanek for pointing this out.
      85c6b5fd
    • est31's avatar
      Small logging refactor and additional options · 2f19abd7
      est31 authored
      -> Get rid of Logger::logToSystem and use normal downstream output system for android instead
      
      -> Give the downstream output system more information: enrich the log function of ILogOutput
      	with information and add ICombinedLogOutput for easier use.
      
      -> Make Logger::getLevelLabel() static and public so that it can be used by downstream log output.
      
      -> Add g_ and m_ prefixes where required
      2f19abd7
    • PilzAdam's avatar
      Improve Lua settings menu · 6f2d9de7
      PilzAdam authored
      * Add key settings to setting table and ignore them later
        This way they are added to the auto-generated minetest.conf.example
      * Add flags type
      * Add input validation for int, float and flags
      * Break in-game graphic settings into multiple sections
      * Parse settingtpes.txt in mods and games
      * Improve description for a lot of settings
      * Fix typos and wording in settingtypes.txt
      * Convert language setting to an enum
      6f2d9de7
    • kwolekr's avatar
      Fix compilation under MSVC and remove unnecessary conditional function prototype · 2d207afe
      kwolekr authored
      Thanks to SmallJoker for pointing this out.
      2d207afe
    • BlockMen's avatar
    • cheapie's avatar
      Improve rollback database indexing · 380e1504
      cheapie authored
      Index more columns in the action table of the rollback DB to improve the performance of /rollback_check
      380e1504
    • est31's avatar
      Flush rollback log more often · f9eb31f3
      est31 authored
      Flushes the buffer of rollback actions that wait to get saved in two more situations:
      
      1. Flushes in the destructor of the rollback. This makes the server not
      forget the last < 500 rollback entries when it shuts down.
      
      2. Flushes the rollback when /rollback_check is invoked. This is neccessary
      as otherwise it leads to confusion if users want to test the rollback functionality
      by placing a node and then executing the check on it, or if the actions were
      very recent out of other reasons.
      f9eb31f3
    • kwolekr's avatar
      Fix some threading things and add additional thread unittests · 964be640
      kwolekr authored
      - Fix thread name reset on start()
      - Fully reset thread state on kill()
      - Add unittests to check for correct object states under various circumstances
      964be640
  2. Oct 23, 2015
  3. Oct 22, 2015
  4. Oct 19, 2015
  5. Oct 18, 2015
  6. Oct 17, 2015
    • Kahrl's avatar
      Fix GUITable selection issues with trees · c4d18623
      Kahrl authored
      - 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.
      c4d18623
    • est31's avatar
      Re-add "file" type for --add-location for xgettext call · 6b408248
      est31 authored
      Passing line numbers in the comments is bad.
      
      References:
      
      * Commit 94961b33
      * Previous commit
      6b408248
    • PilzAdam's avatar
      New settings tab contain all possible settings · 006ef5b4
      PilzAdam authored
      Settings are automatically parsed from builtin/settingtypes.txt
      The edit dialog automatically adjust based on the type of setting
      006ef5b4
    • Rui's avatar
      Fix == to = · 06e5d0f5
      Rui authored
      06e5d0f5
    • kwolekr's avatar
      Fix missing include on AIX · 6ba9d654
      kwolekr authored
      6ba9d654
    • kwolekr's avatar
      Refactor Thread class to improve readability and portability · 765a834c
      kwolekr authored
      - 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
      765a834c
    • kwolekr's avatar
      Refactor thread utility interface · 6be74d17
      kwolekr authored
      - Add "thr_" prefix to thread utility functions
      - Compare threadid_ts in a portable manner, where possible
      6be74d17
    • est31's avatar
      Fix crash regression when invsize formspec gets used · 836486a9
      est31 authored
      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]: b5acec0a "Add proper lua api deprecated handling"
      
      [2]: 7b8d3729 "Use warningstream for deprecated field messages and refactor log_deprecated"
      836486a9
  7. Oct 15, 2015
  8. Oct 14, 2015
  9. Oct 12, 2015
Loading