Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Improve Script CPP API diagnostics | kwolekr | 2015-08-05 |
| | |||
* | Fix tiling issues for PLANTLIKE and FIRELIKE with FSAA | RealBadAngel | 2015-08-05 |
| | |||
* | Biome API: Make fallback biome stone and water, disable filler | paramat | 2015-08-03 |
| | |||
* | Add AreaStore data structure | est31 | 2015-07-27 |
| | |||
* | Fix MSVC number conversion warning | SmallJoker | 2015-07-25 |
| | |||
* | Fix minetest.get_(all)_craft_recipe(s) regression | est31 | 2015-07-25 |
| | | | | | Since 03e0dd33a847a83d975282c6caf6b926306e7b57 the calls didn't return an output count for the recipes. | ||
* | Cleanup server addparticle(spawner) by merge two identical functions. | Loic Blot | 2015-07-25 |
| | |||
* | Optional reconnect functionality | est31 | 2015-07-23 |
| | | | | | | Enable the server to request the client to reconnect. This can be done with the now extended minetest.request_shutdown([reason], [reconnect]) setting. | ||
* | Added get_player_velocity() method. Fixes #1176 | Elia Argentieri | 2015-07-20 |
| | |||
* | Refactor particle code to remove the while loops | TeTpaAka | 2015-07-18 |
| | | | | Replaces while loops with proper getfield calls | ||
* | Make acc and vel deprecated in add_particle and search for acceleration and ↵ | TeTpaAka | 2015-07-18 |
| | | | | | | velocity instead The doc and the actual behaviour differed. | ||
* | Fix invisible player when the attached entity is removed | TeTpaAka | 2015-07-18 |
| | |||
* | Fix relief mapping issues | RealBadAngel | 2015-07-16 |
| | |||
* | Fix damage flash when damage disabled | kwolekr | 2015-07-10 |
| | |||
* | Use UTF-8 instead of narrow | est31 | 2015-07-08 |
| | | | | | Use wide_to_utf8 and utf8_to_wide instead of wide_to_narrow and narrow_to_wide at almost all places. Only exceptions: test functions for narrow conversion, and chat, which is done in a separate commit. | ||
* | Fix code style from recent commits and add misc. optimizations | kwolekr | 2015-07-02 |
| | |||
* | Add Lua errors to error dialog | rubenwardy | 2015-06-29 |
| | |||
* | Fix bug when craft input isn't replaced | TeTpaAka | 2015-06-22 |
| | |||
* | Fix some issues with animations, and allow non-looped animations to be defined | MirceaKitsune | 2015-06-22 |
| | |||
* | Mapgen objects: Enable heatmap and humidmap for all biome api mapgens | paramat | 2015-06-20 |
| | |||
* | Use utf-8 in formspecs | Ilya Zhuravlev | 2015-06-13 |
| | |||
* | Add minetest.register_on_player_hpchange | TeTpaAka | 2015-06-13 |
| | |||
* | Add return list of individual counts to find_node_in_area | TeTpaAka | 2015-06-13 |
| | |||
* | dofile error reporting for syntax errors | est31 | 2015-06-12 |
| | | | | | According to doc, dofile() raises an error when parsing failed due to syntax errors. Fixes #2775 | ||
* | Fix uninitialized variable error | est31 | 2015-06-02 |
| | | | | | If you run minetest with valgrind, you'll quickly notice uninitialized jump depend error messages that point to s_base.cpp:131. This commit fixes those. | ||
* | Make get_biome_list() error message more helpful | kwolekr | 2015-05-28 |
| | |||
* | Add some missing getter functions to the lua API | TeTpaAka | 2015-05-28 |
| | | | | | | | | | | | | | | | | | | | | | | | ObjectRef: get_properties get_armor_groups get_animation get_attach get_bone_position Players: get_physics_override hud_get_hotbar_itemcount hud_get_hotbar_image hud_get_hotbar_selected_image get_sky get_day_night_ratio get_local_animation get_eye_offset Global: minetest.get_gen_notify minetest.get_noiseparams | ||
* | Fix Windows build, clean up included headers | SmallJoker | 2015-05-22 |
| | | | | Also fix a startup error caused by s_security.cpp | ||
* | Replace instances of std::map<std::string, std::string> with StringMap | kwolekr | 2015-05-19 |
| | | | | | | Also, clean up surrounding code style Replace by-value parameter passing with const refs when possible Fix post-increment of iterators | ||
* | Fix null dereference when loading schematic from definition without a ↵ | kwolekr | 2015-05-17 |
| | | | | NodeDefManager | ||
* | Record MapBlock modification reasons as flags instead of strings | kwolekr | 2015-05-17 |
| | | | | | This improves performance of MapBlock::raiseModified by a factor of 6. Also, clean up mapblock.h a bit and inline small functions. | ||
* | SAPI/Noise: Add PerlinNoiseMap:getMapSlice() function | kwolekr | 2015-05-17 |
| | | | | | | This adds the ability to grab 'slices' of noise calculated by PerlinNoiseMap. Retrieving smaller slices of noise from the computation result as needed optimizes memory usage while maintaining a reasonable amount of CPU overhead. | ||
* | Add optional buffer param for bulk data array writes in Lua | kwolekr | 2015-05-17 |
| | |||
* | Fix current mod name change missed during rebase | ShadowNinja | 2015-05-16 |
| | |||
* | SAPI: Accept either ARGB8 table or ColorString to specify colors | kwolekr | 2015-05-16 |
| | |||
* | Add core.get_dir_list | ShadowNinja | 2015-05-16 |
| | |||
* | Add core.request_insecure_environment() | ShadowNinja | 2015-05-16 |
| | |||
* | Add core.mkdir | ShadowNinja | 2015-05-16 |
| | |||
* | Add mod security | ShadowNinja | 2015-05-16 |
| | | | | Due to compatibility concerns, this is temporarily disabled. | ||
* | Add push_ARGB8 to script/common/c_converter | TeTpaAka | 2015-05-15 |
| | |||
* | Generalize core.get/set_nametag_color into core.get/set_nametag_attributes | TeTpaAka | 2015-05-15 |
| | |||
* | Add minetest.register_on_punchplayer | Brandon | 2015-05-15 |
| | |||
* | Add get and set functions for the nametag color | TeTpaAka | 2015-05-15 |
| | |||
* | Fix compiler warning about sign comparison | est31 | 2015-05-13 |
| | |||
* | is_player() is no player-only function | est31 | 2015-05-12 |
| | |||
* | Make early protocol auth mechanism generic, and add SRP | est31 | 2015-05-11 |
| | | | | | | | Adds everything needed for SRP (and everything works too), but still deactivated, as protocol v25 init packets aren't final yet. Can be activated by changing the LATEST_PROTOCOL_VERSION header to 25 inside networkprotocol.h. | ||
* | Schematics: Add per-node force placement option | kwolekr | 2015-05-09 |
| | |||
* | Tests: Add schematic unittests | kwolekr | 2015-05-08 |
| | | | | | Improve schematic file-saving interface Add ability to create temporary test files | ||
* | Fix missing Y component assignment in check_v3f | kwolekr | 2015-05-08 |
| | |||
* | Remove duplicate lua_getfield() in c_converter.cpp | Kevin Ott | 2015-05-07 |
| | | | | Fixes #2678 |