Move BUGS -> NOTES

master
James Stevenson 2016-07-23 19:54:25 -04:00
parent 2c782973ea
commit f63c207778
3 changed files with 5 additions and 3 deletions

1
BUGS
View File

@ -1 +0,0 @@
Adding a group rating of {attached_node = 1} does not work.

1
NOTES
View File

@ -1,3 +1,4 @@
* Upstream books allow to save contents if title has only a space character.
Possibly use some string manipulation to remove any preceeding spaces, and
submit upstream.
* Adding a group rating of {attached_node = 1} does not work.

View File

@ -59,7 +59,8 @@ local function on_rightclick(pos, node, clicker, itemstack, pointed_thing)
local formspec
if owner == player_name then
formspec = "size[8,8]" .. default.gui_bg ..
formspec = "size[8,8]" ..
default.gui_bg ..
default.gui_bg_img ..
"field[0.5,1;7.5,0;title;Title:;" ..
minetest.formspec_escape(title) .. "]" ..
@ -67,7 +68,8 @@ local function on_rightclick(pos, node, clicker, itemstack, pointed_thing)
minetest.formspec_escape(text) .. "]" ..
"button_exit[2.5,7.5;3,1;save;Save]"
else
formspec = "size[8,8]" .. default.gui_bg ..
formspec = "size[8,8]" ..
default.gui_bg ..
default.gui_bg_img ..
"label[0.5,0.5;by " .. owner .. "]" ..
"tablecolumns[color;text]" ..