Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package minetest-game for openSUSE:Factory checked in at 2022-10-03 13:46:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/minetest-game (Old) and /work/SRC/openSUSE:Factory/.minetest-game.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "minetest-game" Mon Oct 3 13:46:43 2022 rev:15 rq:1007598 version:5.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/minetest-game/minetest-game.changes 2022-08-26 09:08:10.209377150 +0200 +++ /work/SRC/openSUSE:Factory/.minetest-game.new.2275/minetest-game.changes 2022-10-03 13:47:29.057708745 +0200 @@ -1,0 +2,6 @@ +Wed Sep 28 19:40:52 UTC 2022 - Simon Vogl <simon.v...@gmx.net> + +- Update to version 5.6.1: + * Various bug fixes + +------------------------------------------------------------------- Old: ---- minetest_game-5.6.0.tar.gz New: ---- minetest_game-5.6.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ minetest-game.spec ++++++ --- /var/tmp/diff_new_pack.sgeIcK/_old 2022-10-03 13:47:29.585709906 +0200 +++ /var/tmp/diff_new_pack.sgeIcK/_new 2022-10-03 13:47:29.589709915 +0200 @@ -17,7 +17,7 @@ Name: minetest-game -Version: 5.6.0 +Version: 5.6.1 Release: 0 Summary: Minetest Game License: CC-BY-3.0 AND CC-BY-SA-3.0 AND LGPL-2.1-or-later AND CC-BY-SA-4.0 AND CC0-1.0 ++++++ minetest_game-5.6.0.tar.gz -> minetest_game-5.6.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/minetest_game-5.6.0/mods/creative/mod.conf new/minetest_game-5.6.1/mods/creative/mod.conf --- old/minetest_game-5.6.0/mods/creative/mod.conf 2022-07-29 22:03:06.000000000 +0200 +++ new/minetest_game-5.6.1/mods/creative/mod.conf 2022-08-18 11:02:24.000000000 +0200 @@ -1,3 +1,4 @@ name = creative description = Minetest Game mod: creative -depends = default, sfinv +depends = sfinv +optional_depends = default diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/minetest_game-5.6.0/mods/stairs/init.lua new/minetest_game-5.6.1/mods/stairs/init.lua --- old/minetest_game-5.6.0/mods/stairs/init.lua 2022-07-29 22:03:06.000000000 +0200 +++ new/minetest_game-5.6.1/mods/stairs/init.lua 2022-08-18 11:02:24.000000000 +0200 @@ -32,7 +32,13 @@ if placer then local placer_pos = placer:get_pos() if placer_pos then - param2 = minetest.dir_to_facedir(vector.subtract(p1, placer_pos)) + local diff = vector.subtract(p1, placer_pos) + param2 = minetest.dir_to_facedir(diff) + -- The player places a node on the side face of the node he is standing on + if p0.y == p1.y and math.abs(diff.x) <= 0.5 and math.abs(diff.z) <= 0.5 and diff.y < 0 then + -- reverse node direction + param2 = (param2 + 2) % 4 + end end local finepos = minetest.pointed_thing_to_face_pos(placer, pointed_thing)