aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-07-22Add minetest.get_modnames() to Lua APIMatthew I
2012-07-21Fix signedness warning in base64.cppAndreas Zwinkau
2012-07-21Fix wctomb useAndreas Zwinkau
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.
2012-07-21Remove mbtowc warningsAndreas Zwinkau
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.
2012-07-21Fix hovering after mining a block underneath you while sneakingMatthew I
2012-07-21Rotate facedir-rotated top and bottom textures too, and re-implement nodebox ↵Perttu Ahola
side rotation
2012-07-21Facedir rotation of nodebox texturesPerttu Ahola
2012-07-21Fix signed overflow in getPointedThingBad-Command
2012-07-21Fix typo in scriptapi.cpp in minetest.get_craft_recipe()Perttu Ahola
2012-07-21Server-side checking of digging; disable_anticheat settingPerttu Ahola
2012-07-21Define M_PI on MSVCPerttu Ahola
2012-07-21Add a random-ish contributor list to credit screenPerttu Ahola
2012-07-21Check for table type when reading groups from Luadarkrose
2012-07-21Add minetest.get_craft_recipe()darkrose
2012-07-21Add support for "textures/all" (and thus texture packs) to serverdarkrose
2012-07-21Remove trenches from map generator (cyisfor) (glitches: read below)darkrose
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.
2012-07-21Message cleanups (consistency) and prevent /me when not allowed to shoutCalinou
2012-07-19Allow defining player's inventory form in LuaPerttu Ahola
2012-06-19Fix /builtin/misc.lua:47: attempt to call method 'is_player' (a nil value)Perttu Ahola
2012-06-18Fix random glitches in transparent animationsPerttu Ahola
2012-06-17Hopefully fix includes on mingwPerttu Ahola
2012-06-17Increment protocol versionPerttu Ahola
2012-06-17Custom boxy nodes (stairs, slabs) and collision changesKahrl
2012-06-17Optimize headersPerttu Ahola
2012-06-17Properly and efficiently use split utility headersPerttu Ahola
2012-06-17Initially split utility.h to multiple files in util/Perttu Ahola
2012-06-16Fix "Node placement prediction failed for (places __default) - Name not known"Perttu Ahola
2012-06-16Add desynchronize_mapblock_texture_animation setting and improve ↵Perttu Ahola
minetest.conf.example a bit
2012-06-16Fix build error due to DEBUGFILEPerttu Ahola
2012-06-16Clean up constants.h a bitPerttu Ahola
2012-06-16Allow node cracking animations of any lengthPerttu Ahola
2012-06-16Node texture animationPerttu Ahola
2012-06-11Add comment about ItemSAO being deprecatedPerttu Ahola
2012-06-10Node placement client-side predictionPerttu Ahola
2012-06-09Remove a random old comment and a #define from game.cppPerttu Ahola
2012-06-08Update and fix doc/mapformat.txt; make current format more solid in mapblock.cppPerttu Ahola
2012-06-07Add disallow_empty_password settingPerttu Ahola
2012-06-06Allow groups in crafting recipesPerttu Ahola
2012-06-06Remove obsolete "footprints" default setting from defaultsettings.cppPerttu Ahola
2012-06-06Allow replacements in cooking and fuel recipesKahrl
2012-06-05Add after_destruct and cache the existence of on_construct, on_destruct and ↵Perttu Ahola
after_destruct for quick skipping when a node does not have them
2012-06-05place_node, dig_node and punch_node; an in-game tester tool; remove old codePerttu Ahola
2012-06-05Fix NDT_RAILLIKE tweakingsPerttu Ahola
2012-06-05Shadily clean up NDT_RAILLIKE to surely differ from the few leftover ↵darkrose
non-LGPLv2 parts from the standpoint of copyright law.
2012-06-05Clean and optimize clouds.cpp enough to not really contain any of the small ↵Perttu Ahola
amount of non-LGPLv2/later code left
2012-06-05Switch the license to be LGPLv2/later, with small parts still remaining as ↵Perttu Ahola
GPLv2/later, by agreement of major contributors
2012-06-04Use gettext for more basic user interface stringsPerttu Ahola
2012-06-04Remove misdesigned exception from ReliablePacketBufferPerttu Ahola
2012-06-04Add ignore_world_load_errors configuration option and provide better error ↵Perttu Ahola
messages
2012-06-04Improve GUIMessageMenu (move and resize elements based on size of text)Perttu Ahola