Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | minetest.register_on_player_receive_fields() | Perttu Ahola | 2012-07-22 | 11 | -3/+127 | |
| | ||||||
* | Implement formspec | darkrose | 2012-07-22 | 8 | -57/+407 | |
| | ||||||
* | Update Lua API documentation to include minetest.get_modnames() | Matthew I | 2012-07-22 | 1 | -0/+2 | |
| | ||||||
* | Add "/mods" command to list mods to client | Matthew I | 2012-07-22 | 1 | -0/+17 | |
| | ||||||
* | Add minetest.get_modnames() to Lua API | Matthew I | 2012-07-22 | 3 | -0/+63 | |
| | ||||||
* | Version 0.4.1 | Perttu Ahola | 2012-07-21 | 1 | -1/+1 | |
| | ||||||
* | Fix signedness warning in base64.cpp | Andreas Zwinkau | 2012-07-21 | 1 | -1/+1 | |
| | ||||||
* | Fix wctomb use | Andreas Zwinkau | 2012-07-21 | 1 | -2/+1 | |
| | | | | | | | wctomb(NULL, _) returns "nonzero if the encoding has nontrivial shift state, or zero if the encoding is stateless." I assume the intentation was to get the size of the target buffer. Use MB_CUR_MAX for this. | |||||
* | Remove mbtowc warnings | Andreas Zwinkau | 2012-07-21 | 1 | -6/+10 | |
| | | | | | | | | | As mbtowc(_, _, 1) reads at most one char, everything other than a return value of 1 is an error. Since the input strings are static, an assert protects against future changes. Likewise, wctomb should currently never encounter a character, which actually needs a multibyte representation. | |||||
* | Actually fix facedir-rotated nodes placed using minetest.env:place_node() | Perttu Ahola | 2012-07-21 | 2 | -5/+10 | |
| | ||||||
* | Fix hovering after mining a block underneath you while sneaking | Matthew I | 2012-07-21 | 2 | -13/+38 | |
| | ||||||
* | Rotate facedir-rotated top and bottom textures too, and re-implement nodebox ↵ | Perttu Ahola | 2012-07-21 | 2 | -44/+51 | |
| | | | | side rotation | |||||
* | Facedir rotation of nodebox textures | Perttu Ahola | 2012-07-21 | 1 | -0/+42 | |
| | ||||||
* | Check whether node is known before reading definition in ↵ | Perttu Ahola | 2012-07-21 | 1 | -1/+2 | |
| | | | | __builtin:item:on_step() | |||||
* | Fix signed overflow in getPointedThing | Bad-Command | 2012-07-21 | 1 | -0/+8 | |
| | ||||||
* | Fix typo in scriptapi.cpp in minetest.get_craft_recipe() | Perttu Ahola | 2012-07-21 | 1 | -1/+1 | |
| | ||||||
* | Server-side checking of digging; disable_anticheat setting | Perttu Ahola | 2012-07-21 | 6 | -7/+101 | |
| | ||||||
* | BITCH, THIS IS 0.4.0. | Perttu Ahola | 2012-07-21 | 3 | -3/+5 | |
| | ||||||
* | Define M_PI on MSVC | Perttu Ahola | 2012-07-21 | 5 | -0/+11 | |
| | ||||||
* | Add a random-ish contributor list to credit screen | Perttu Ahola | 2012-07-21 | 1 | -3/+3 | |
| | ||||||
* | Check for table type when reading groups from Lua | darkrose | 2012-07-21 | 1 | -0/+2 | |
| | ||||||
* | Add minetest.get_craft_recipe() | darkrose | 2012-07-21 | 4 | -2/+160 | |
| | ||||||
* | Add support for "textures/all" (and thus texture packs) to server | darkrose | 2012-07-21 | 1 | -0/+2 | |
| | ||||||
* | Make lava buckets work as fuel in minimal game | darkrose | 2012-07-21 | 1 | -1/+1 | |
| | ||||||
* | Remove trenches from map generator (cyisfor) (glitches: read below) | darkrose | 2012-07-21 | 1 | -6/+7 | |
| | | | | | | This causes glitches in very high cliffs by not making mud "flow" down from them. Those are quite rare currently because of the lame height differences generated. | |||||
* | Message cleanups (consistency) and prevent /me when not allowed to shout | Calinou | 2012-07-21 | 3 | -14/+20 | |
| | ||||||
* | Handle nil placer as it might occur when using minetest.env:place_node. (Uberi) | darkrose | 2012-07-21 | 1 | -1/+1 | |
| | ||||||
* | Remove util/old/genmap.py, because it is uselessly old | Perttu Ahola | 2012-07-19 | 2 | -373/+0 | |
| | ||||||
* | Allow defining player's inventory form in Lua | Perttu Ahola | 2012-07-19 | 10 | -10/+129 | |
| | ||||||
* | Fix /builtin/misc.lua:47: attempt to call method 'is_player' (a nil value) | Perttu Ahola | 2012-06-19 | 1 | -0/+1 | |
| | ||||||
* | Fix random glitches in transparent animations | Perttu Ahola | 2012-06-18 | 1 | -0/+3 | |
| | ||||||
* | Add pointed_thing to lua_api.txt | Perttu Ahola | 2012-06-17 | 1 | -0/+7 | |
| | ||||||
* | Hopefully fix includes on mingw | Perttu Ahola | 2012-06-17 | 3 | -6/+6 | |
| | ||||||
* | Increment protocol version | Perttu Ahola | 2012-06-17 | 2 | -18/+10 | |
| | ||||||
* | Explain node boxes in lua_api.txt | Perttu Ahola | 2012-06-17 | 1 | -1/+37 | |
| | ||||||
* | Custom boxy nodes (stairs, slabs) and collision changes | Kahrl | 2012-06-17 | 19 | -645/+1104 | |
| | ||||||
* | Optimize headers | Perttu Ahola | 2012-06-17 | 81 | -92/+221 | |
| | ||||||
* | Properly and efficiently use split utility headers | Perttu Ahola | 2012-06-17 | 73 | -159/+130 | |
| | ||||||
* | Initially split utility.h to multiple files in util/ | Perttu Ahola | 2012-06-17 | 30 | -2326/+2684 | |
| | ||||||
* | Mention node drawtypes in lua_api.txt | Perttu Ahola | 2012-06-16 | 1 | -1/+21 | |
| | ||||||
* | Fix /setpassword and /clearpassword | Perttu Ahola | 2012-06-16 | 1 | -6/+26 | |
| | ||||||
* | Fix "Node placement prediction failed for (places __default) - Name not known" | Perttu Ahola | 2012-06-16 | 1 | -2/+5 | |
| | ||||||
* | Add desynchronize_mapblock_texture_animation setting and improve ↵ | Perttu Ahola | 2012-06-16 | 3 | -7/+18 | |
| | | | | minetest.conf.example a bit | |||||
* | Fix build error due to DEBUGFILE | Perttu Ahola | 2012-06-16 | 1 | -1/+2 | |
| | ||||||
* | Revert back proper crack texture | Perttu Ahola | 2012-06-16 | 1 | -0/+0 | |
| | ||||||
* | Clean up constants.h a bit | Perttu Ahola | 2012-06-16 | 2 | -43/+47 | |
| | ||||||
* | Allow node cracking animations of any length | Perttu Ahola | 2012-06-16 | 4 | -7/+49 | |
| | ||||||
* | Remove tiles and special_tiles from node definition prototype because ↵ | Perttu Ahola | 2012-06-16 | 1 | -5/+7 | |
| | | | | otherwise the old names can't be used | |||||
* | Update field names to non-deprecated ones in node definition prototype | Perttu Ahola | 2012-06-16 | 2 | -5/+4 | |
| | ||||||
* | Use new field names and reorder fields a bit in minimal game | Perttu Ahola | 2012-06-16 | 1 | -67/+67 | |
| |