Skip to content
Snippets Groups Projects
  1. Jan 18, 2016
  2. Jan 16, 2016
    • Rogier's avatar
      Fix error message in settings tab overlapping 'save' button · 487ab593
      Rogier authored
      The save button is now fully functional again when an error message
      is shown.
      
      After an invalid value is entered in the settings tab dialog, the GUI
      label for the error message that is shown was partly overlapping the
      'save' button, so that the top half of the button could not be clicked
      on.
      487ab593
  3. Jan 14, 2016
  4. Jan 10, 2016
  5. Jan 09, 2016
    • Dalai Felinto's avatar
      New 3D Mode: Pageflip · 9943ae3f
      Dalai Felinto authored
      The pageflip mode requires a stereo quadbuffer, and a modern graphic
      card. Patch tested with NVidia 3D Vision.
      
      The mini-map is not drawn, but that's what is done for topbottom and
      sidebyside modes as well.
      
      Also most of the time the user would prefer the HUD to be off. That's
      for the user to decide though, and toggle it manually.
      
      Finally, the interocular distance (aka eye separation) is twice as much
      as the "3d_paralax_strength" settings. I find this a strange design
      decision. I didn't want to chance this though, since it's how the other
      3d modes interpret this settings.
      9943ae3f
  6. Jan 07, 2016
  7. Dec 26, 2015
  8. Dec 20, 2015
  9. Dec 15, 2015
    • paramat's avatar
      Mgfractal: Add 3D and 4D fractals · c26eb87a
      paramat authored
      3D Mandelbrot/Mandelbar
      3D Christmas Tree
      3D Mandelbulb
      3D Cosine Mandelbulb
      4D Mandelbulb
      Plus corresponding julia set for each
      Add credits for formulas
      Rename parameter 'formula' to 'fractal'
      Speed optimisations
      c26eb87a
  10. Dec 10, 2015
    • est31's avatar
      Fix some setting documentation · 8e3602f6
      est31 authored
      * Horizontal and vertical are used wrongly. Use height and width because
      	horizontal/vertical describes different things. Thanks @kilbith for pointing out.
      * Update minetest.conf.example and settings_translation_file.cpp
      * Correct maximum/minimum copy paste mistake.
      8e3602f6
  11. Dec 02, 2015
  12. Nov 24, 2015
  13. Nov 23, 2015
  14. Nov 21, 2015
    • paramat's avatar
      Mapgen: Add global 'decorations' flag · d7bbe817
      paramat authored
      Flag is set by default in MapgenParams
      The global 'trees' flag remains but is now
      undocumented and unset by default in MapgenParams
      Add mgv6_spflag 'trees' set by default in
      defaultsettings.cpp to affect new worlds only
      This is automatically backwards
      compatible for existing worlds
      d7bbe817
    • Rui's avatar
      Log static_spawn error only once · 4fd394b6
      Rui authored
      4fd394b6
  15. Nov 15, 2015
  16. Nov 14, 2015
  17. Nov 13, 2015
  18. Nov 12, 2015
  19. Nov 11, 2015
  20. Nov 08, 2015
    • est31's avatar
      Settings tab: add v3f type · 9a91f58e
      est31 authored
      Add the v3f type, currently is just a nice placeholder for string.
      Currently undocumented, on wish of @PilzAdam, to support future changes.
      9a91f58e
  21. Nov 07, 2015
  22. Nov 06, 2015
    • paramat's avatar
    • est31's avatar
      Add server side ncurses terminal · 5e507c98
      est31 authored
      This adds a chat console the server owner can use for administration
      or to talk with players.
      It runs in its own thread, which makes the user interface immune to
      the server's lag, behaving just like a client, except timeout.
      As it uses the same console code as the f10 console, things like nick
      completion or a scroll buffer basically come for free.
      The terminal itself is written in a general way so that adding a
      client version later on is just about implementing an interface.
      
      Fatal errors are printed after the console exists and the ncurses
      terminal buffer gets cleaned up with endwin(), so that the error still
      remains visible.
      
      The server owner can chose their username their entered text will
      have in chat and where players can send PMs to.
      Once the username is secured with a password to prevent anybody to
      take over the server, the owner can execute admin tasks over the
      console.
      
      This change includes a contribution by @kahrl who has improved ncurses
      library detection.
      5e507c98
  23. Nov 05, 2015
  24. Nov 04, 2015
  25. Nov 03, 2015
  26. Oct 31, 2015
  27. Oct 29, 2015
    • paramat's avatar
      findSpawnPos: Add setting for max height above water level · c0a7c670
      paramat authored
      Increase default from 6 to 16 to help with mgv7 and mgfractal
      Large-scale or alternative mapgens can result in a lowland spawn point not
      being found, causing a spawn at (0, 0, 0) possibly buried underground
      The max height is now settable to allow correct player spawn
      in any mapgen or when using custom noise parameters
      c0a7c670
  28. Oct 25, 2015
  29. Oct 24, 2015
  30. Oct 22, 2015
    • Robert Zenz's avatar
      Add more ways to pass data to check_player_privs · c3284783
      Robert Zenz authored
      The callback can now be invoked with either the player object or name as
      the first parameter, and with either a table or a list of strings, like
      this:
      
          minetest.check_player_privs(player_name, { shout = true, fly = true })
          minetest.check_player_privs(player_name, "shout", "fly")
          minetest.check_player_privs(player, { shout = true, fly = true })
          minetest.check_player_privs(player, "shout", "fly")
      c3284783
Loading