Skip to content
Snippets Groups Projects
  1. Jan 10, 2016
  2. Jan 09, 2016
  3. Jan 08, 2016
    • est31's avatar
      Fix redis error reporting · 57a46193
      est31 authored
      Previously, we assumed that reply->str was NULL
      terminated. However, this turned out to be not true,
      as users reported crashes in strlen connected to
      where reply->str was appended to an std::string.
      
      Use the method recomended by the docs, to read the
      length separately.
      57a46193
  4. Jan 07, 2016
  5. Jan 04, 2016
    • ShadowNinja's avatar
      Improve Doxyfile · bd40ee2b
      ShadowNinja authored
      * Add main page.
      * Organize into sections.
      * Add threading sources.
      * Include SpatialAreaStore, LevelDB/Redis, sound, FreeType, and cURL in output.
      * Add logo.
      * Fix project name hardcoding.
      * Remove PAPER_TYPE (only used when GENERATE_LATEX is enabled).
      * Have dot render graphs as SVG (smaller, and works even if dot's text drawing functionality is broken).
      * Enable built-in STL support.
      * Enable search bar.
      * Switch from header-bar based navigation to treeview based navigation.
      * Enable dynamic HTML (collapses graphs).
      * Enable generation timestamp.
      bd40ee2b
    • gregorycu's avatar
      Fix for commit 87dcee6a It uses the wrong variable and only covers some use... · e7e9171f
      gregorycu authored
      Fix for commit 87dcee6a It uses the wrong variable and only covers some use cases. This change covers all use cases.
      e7e9171f
  6. Jan 03, 2016
  7. Jan 01, 2016
  8. Dec 31, 2015
  9. Dec 30, 2015
    • est31's avatar
      Fix client crashing when connecting to server · a142e4f4
      est31 authored
      My commit
      
      e2d54c9f "shutdown when requested from lua in singleplayer too"
      
      broke minetest's feature to connect to servers. The client crashed
      after the connection init was complete.
      
      Thanks to @sofar for reporting the bug.
      
      Fixes #3498.
      a142e4f4
    • ShadowNinja's avatar
      Fix cache path with RUN_IN_PLACE · 9719aded
      ShadowNinja authored
      If an `XDG_CACHE_HOME` can't be found or `RUN_IN_PLACE` is enabled,
      `path_cache` is left at its default of `$PATH_USER/cache`
      (at a time when `PATH_USER` is `..`), rather than being reset to
      `$PATH_USER/cache` after `PATH_USER` has been properly set.
      9719aded
    • Rogier's avatar
      Include custom error message in all SQLite3 exceptions. · cb30facd
      Rogier authored
      And replace manual tests for error with SQLOK() where possible.
      cb30facd
    • Rogier's avatar
      Handle SQLITE_BUSY errors gracefully · c6bb6f99
      Rogier authored
      This allows other applications (e.g. minetestmapper) to interrogate
      the database while minetest is running, without causing an almost
      certain minetest crash.
      c6bb6f99
  10. Dec 29, 2015
  11. Dec 26, 2015
  12. Dec 25, 2015
  13. Dec 23, 2015
    • sapier's avatar
      9c9b02ca
    • est31's avatar
      Android: Tell make about sub-makes to speed up build · 98d16e0d
      est31 authored
      Before, sub-makes called by make were called without make knowing they
      were sub-makes. This however led make's jobserver not do its tasks,
      and the build process ended up with inefficient parralelisation. This
      commit fixes this by applying the two ways the make manual tells
      about: putting + to the start of the line (used when ndk-build is
      invoked), and exchanging "make" with "$(MAKE)".
      
      Before, make complained with messages like:
      
      make[2]: warning: jobserver unavailable: using -j1.  Add `+' to parent make rule.
      
      This complaint can now only been seen for openssl. openssl has issues
      if make gets exchanged with $(MAKE): if exchanged, above error message
      is multiplied for various subdirs of the openssl source tree.
      
      On a 4 core box, "make -j 4" build time from "make clean_all" cleaned
      source tree could be improved from 15:34 minutes to 10:45 minutes.
      This means a speedup of 45%.
      98d16e0d
  14. Dec 22, 2015
  15. Dec 21, 2015
Loading