Loading debian/changelog +8 −0 Original line number Diff line number Diff line blogi (20260415+4) unstable; urgency=medium * Fix hidden default:false in all widget schemas (accordion, article, button, customhtml, grid, image, list, popup, section, slider, survey, table, textbox, video, container) -- Jan Koester <jan.koester@tuxist.de> Tue, 15 Apr 2026 00:00:00 +0200 blogi (20260415+3) unstable; urgency=medium * Fix stale currentProps after property save in PropertyPanel Loading editor/widgets/accordion/accordion.cpp +4 −0 Original line number Diff line number Diff line Loading @@ -210,6 +210,10 @@ extern "C" { // Visibility addField("hidden", "Hidden", "checkbox", nullptr, "desktop"); { json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1); json_object_object_add(hf, "default", json_object_new_boolean(false)); } addField("custom_css", "Custom CSS", "textarea", ".we-xxx { ... }"); return arr; Loading editor/widgets/article/article.cpp +4 −0 Original line number Diff line number Diff line Loading @@ -182,6 +182,10 @@ extern "C" { addField("opacity", "Opacity", "text", "0.0 - 1.0", "desktop"); addField("vertical_align", "Vertical Align", "select", nullptr, "desktop", mkOpts({"top","center","bottom"})); addField("hidden", "Hidden", "checkbox", nullptr, "desktop"); { json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1); json_object_object_add(hf, "default", json_object_new_boolean(false)); } addField("custom_css", "Custom CSS", "textarea", ".we-xxx { color: red; }"); return arr; } Loading editor/widgets/button/button.cpp +4 −0 Original line number Diff line number Diff line Loading @@ -355,6 +355,10 @@ extern "C" { addField("width", "Width", "text", "e.g. 200px", "desktop"); addField("height", "Height", "text", "e.g. auto", "desktop"); addField("hidden", "Hidden", "checkbox", nullptr, "desktop"); { json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1); json_object_object_add(hf, "default", json_object_new_boolean(false)); } addField("custom_css", "Custom CSS", "textarea", ".we-xxx { color: red; }"); addField("g_event_enabled", "Enable Google Event", "checkbox"); addField("g_event_name", "Event Name", "text", "button_click", "all", nullptr, mkVisible("g_event_enabled", "true")); Loading editor/widgets/container.cpp +4 −0 Original line number Diff line number Diff line Loading @@ -231,6 +231,10 @@ extern "C" { addField("opacity", "Opacity", "text", "0.0 - 1.0", "desktop"); addField("vertical_align", "Vertical Align", "select", nullptr, "desktop", mkOpts({"top","center","bottom"})); addField("hidden", "Hidden", "checkbox", nullptr, "desktop"); { json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1); json_object_object_add(hf, "default", json_object_new_boolean(false)); } return arr; } Loading Loading
debian/changelog +8 −0 Original line number Diff line number Diff line blogi (20260415+4) unstable; urgency=medium * Fix hidden default:false in all widget schemas (accordion, article, button, customhtml, grid, image, list, popup, section, slider, survey, table, textbox, video, container) -- Jan Koester <jan.koester@tuxist.de> Tue, 15 Apr 2026 00:00:00 +0200 blogi (20260415+3) unstable; urgency=medium * Fix stale currentProps after property save in PropertyPanel Loading
editor/widgets/accordion/accordion.cpp +4 −0 Original line number Diff line number Diff line Loading @@ -210,6 +210,10 @@ extern "C" { // Visibility addField("hidden", "Hidden", "checkbox", nullptr, "desktop"); { json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1); json_object_object_add(hf, "default", json_object_new_boolean(false)); } addField("custom_css", "Custom CSS", "textarea", ".we-xxx { ... }"); return arr; Loading
editor/widgets/article/article.cpp +4 −0 Original line number Diff line number Diff line Loading @@ -182,6 +182,10 @@ extern "C" { addField("opacity", "Opacity", "text", "0.0 - 1.0", "desktop"); addField("vertical_align", "Vertical Align", "select", nullptr, "desktop", mkOpts({"top","center","bottom"})); addField("hidden", "Hidden", "checkbox", nullptr, "desktop"); { json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1); json_object_object_add(hf, "default", json_object_new_boolean(false)); } addField("custom_css", "Custom CSS", "textarea", ".we-xxx { color: red; }"); return arr; } Loading
editor/widgets/button/button.cpp +4 −0 Original line number Diff line number Diff line Loading @@ -355,6 +355,10 @@ extern "C" { addField("width", "Width", "text", "e.g. 200px", "desktop"); addField("height", "Height", "text", "e.g. auto", "desktop"); addField("hidden", "Hidden", "checkbox", nullptr, "desktop"); { json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1); json_object_object_add(hf, "default", json_object_new_boolean(false)); } addField("custom_css", "Custom CSS", "textarea", ".we-xxx { color: red; }"); addField("g_event_enabled", "Enable Google Event", "checkbox"); addField("g_event_name", "Event Name", "text", "button_click", "all", nullptr, mkVisible("g_event_enabled", "true")); Loading
editor/widgets/container.cpp +4 −0 Original line number Diff line number Diff line Loading @@ -231,6 +231,10 @@ extern "C" { addField("opacity", "Opacity", "text", "0.0 - 1.0", "desktop"); addField("vertical_align", "Vertical Align", "select", nullptr, "desktop", mkOpts({"top","center","bottom"})); addField("hidden", "Hidden", "checkbox", nullptr, "desktop"); { json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1); json_object_object_add(hf, "default", json_object_new_boolean(false)); } return arr; } Loading