Move BUGS -> NOTES
This commit is contained in:
parent
2c782973ea
commit
f63c207778
1
NOTES
1
NOTES
@ -1,3 +1,4 @@
|
|||||||
* Upstream books allow to save contents if title has only a space character.
|
* Upstream books allow to save contents if title has only a space character.
|
||||||
Possibly use some string manipulation to remove any preceeding spaces, and
|
Possibly use some string manipulation to remove any preceeding spaces, and
|
||||||
submit upstream.
|
submit upstream.
|
||||||
|
* Adding a group rating of {attached_node = 1} does not work.
|
||||||
|
6
init.lua
6
init.lua
@ -59,7 +59,8 @@ local function on_rightclick(pos, node, clicker, itemstack, pointed_thing)
|
|||||||
|
|
||||||
local formspec
|
local formspec
|
||||||
if owner == player_name then
|
if owner == player_name then
|
||||||
formspec = "size[8,8]" .. default.gui_bg ..
|
formspec = "size[8,8]" ..
|
||||||
|
default.gui_bg ..
|
||||||
default.gui_bg_img ..
|
default.gui_bg_img ..
|
||||||
"field[0.5,1;7.5,0;title;Title:;" ..
|
"field[0.5,1;7.5,0;title;Title:;" ..
|
||||||
minetest.formspec_escape(title) .. "]" ..
|
minetest.formspec_escape(title) .. "]" ..
|
||||||
@ -67,7 +68,8 @@ local function on_rightclick(pos, node, clicker, itemstack, pointed_thing)
|
|||||||
minetest.formspec_escape(text) .. "]" ..
|
minetest.formspec_escape(text) .. "]" ..
|
||||||
"button_exit[2.5,7.5;3,1;save;Save]"
|
"button_exit[2.5,7.5;3,1;save;Save]"
|
||||||
else
|
else
|
||||||
formspec = "size[8,8]" .. default.gui_bg ..
|
formspec = "size[8,8]" ..
|
||||||
|
default.gui_bg ..
|
||||||
default.gui_bg_img ..
|
default.gui_bg_img ..
|
||||||
"label[0.5,0.5;by " .. owner .. "]" ..
|
"label[0.5,0.5;by " .. owner .. "]" ..
|
||||||
"tablecolumns[color;text]" ..
|
"tablecolumns[color;text]" ..
|
||||||
|
Loading…
x
Reference in New Issue
Block a user