Skip to content
Snippets Groups Projects
  1. Aug 10, 2016
    • Tomas's avatar
      Lua->C getintfield() use lua_tointeger (#4408) · c013c73f
      Tomas authored
      previously function used tonumber which returned float
      this caused errors in large numbers and resulted in
      obj-def-handlers being invalid when retrived from lua tables in c
      c013c73f
    • Rogier's avatar
      Fixes for compiling with a newer (system) jsoncpp (#4429) · 4503b509
      Rogier authored
      * Move included json code to jsoncpp subdirectory
      
      This is needed to avoid having to specify the minetest src directory
      as a system include when fixing the json includes.
      
      * Fix json includes
      
      They used "", so that the compiler searches the project's directory
      first. The result was that when compiling with a system jsoncpp,
      the project's own version of json.h was still included, instead of
      the system version.
      
      The includes now use <>, so a system location, or one specified with
      '-Ilocation' is searched only.
      
      * Fix for jsoncpp deprecated function warning
      
      When compiling with a newer version of jsoncpp (and
      ENABLE_SYSTEM_JSONCPP=true), jsoncpp emits a warning
      about a deprecated function that minetest uses.
      4503b509
    • Loïc Blot's avatar
      Permit usage of std::unordered_map & std::unorderered_set on c++11 compilers (#4430) · 058a869b
      Loïc Blot authored
      This fallback to std::map & std::set for older compilers
      
      Use UNORDERED_SET as an example in decoration and ore biome sets
      
      Use UNORDERED_MAP as an example in nameidmapping
      058a869b
    • Rémi Verschelde's avatar
      Add simulation category · 8df89db3
      Rémi Verschelde authored
      8df89db3
  2. Aug 05, 2016
    • paramat's avatar
      Decorations: Fix decoration height check errors · b6d845ad
      paramat authored
      Fix height check comparison from '>=' to '>'.
      Fix getHeight() for schematic decorations to account for
      'deco place center y' flag and for how normal placement
      sinks schematic 1 node into the ground.
      
      Jungletrees were not being placed at y = 46, y = 47 despite
      having an acceptable 16 nodes of height above ground surface.
      b6d845ad
  3. Aug 04, 2016
    • paramat's avatar
      Mapgen: Remove unused 'flat' and 'trees' flags from mg_flags · ea12da93
      paramat authored
      When the 'flat' and 'trees' flags were moved into mgv6_spflags they
      were left in mg_flags in an attempt to support old mgv6 worlds. However
      their appearence in mg_flags causes confusion, also, later, old-world
      support was found to be broken for mgv6 worlds with 'notrees'.
      
      This commit cleans up the mess and comes a month after a thread warning
      of the change, and explaining the required action, was posted in the
      news subforum. Only old mgv6 worlds with 'flat' or 'notrees' are
      affected, a small minority of worlds, the required action being
      correctly setting these flags in mgv6_spflags.
      
      Disable a section of the 'map settings manager' unit test which is to
      be changed as it is causing problems for pull requests.
      ea12da93
    • Dorian Wouters's avatar
      Fix l_request_insecure_environment not ignoring all whitespace (#4395) · fca8e538
      Dorian Wouters authored
      l_request_insecure_environment didn't ignore all whitespace in the
      secure.trusted_mods config option.
      
      Replaces std::remove with std::remove_if and the isspace function.
      fca8e538
    • est31's avatar
      4ec66719
  4. Aug 03, 2016
  5. Jul 30, 2016
  6. Jul 29, 2016
    • Nathaniel Olsen's avatar
      Update README.txt (#4368) · cc01c3cb
      Nathaniel Olsen authored
      * Update README.txt
      
      As of Ubuntu 16.10, libpng12-dev is replaced with libpng12-0, since libpng12-0 is available in 16.04 repositories, I think that needed to be changed.
      
      Also I changed 'git-core' to 'git' for fedora users, keep it consistent with the ubuntu/debian instructions.
      
      * Update README.txt
      cc01c3cb
    • Fernando Carmona Varo's avatar
      buildbot: retrieve short commit hash properly · 6b74e196
      Fernando Carmona Varo authored
      Instead of trying to manually parse the output of 'git show' which can be different across different git configurations, properly use the 'git rev-parse' command that is intended for this purpose.
      6b74e196
  7. Jul 28, 2016
    • Loïc Blot's avatar
      Increase android versionCode (#4350) · 919d9d79
      Loïc Blot authored
      This little update is due to a packaging problem when uploading on play store. They don't permit to re upload an APK with same version code.
      This case was a fail on openssl packaged version which was old and rejected by Google but they don't remove the APK then i should increase the version code to permit having it on play store
      919d9d79
  8. Jul 27, 2016
  9. Jul 26, 2016
  10. Jul 24, 2016
  11. Jul 21, 2016
  12. Jul 12, 2016
  13. Jul 09, 2016
  14. Jul 08, 2016
    • est31's avatar
      Ubuntu build HOWTO: Suggest to install git instead of git-core · 27905f1a
      est31 authored
      The package docs for the git-core Ubuntu package in all supported
      Ubuntu versions, including 12.04 say:
      
      This is a transitional dummy package.  The 'git-core' package has been
      renamed to 'git', which has been installed automatically.  This git-core
      package is now obsolete, and can safely be removed from the system if no
      other package depends on it.
      
      Fixes #4109
      27905f1a
Loading