From 2ec2a64536bdc289bfc6a245acd22c92170a00ca Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 8 Jun 2021 22:22:10 -0400 Subject: [PATCH] prep for release --- README.md | 2 ++ cgi.d | 4 ++++ minigui.d | 14 +++++++++++--- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 55b0b02..65aecce 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,8 @@ Released: May 2020 minigui 2.0 came out with deprecations on some event properties, moved style properties, and various other changes. See http://arsd-official.dpldocs.info/arsd.minigui.html#history for details. +database.d now considers null strings as NULL when inserting/updating. before it would consider it '' to the database. Empty strings are still ''. + ## 9.0 Released: December 2020 diff --git a/cgi.d b/cgi.d index 25befc5..80745b9 100644 --- a/cgi.d +++ b/cgi.d @@ -595,6 +595,10 @@ static: } auto byChunk(size_t sz) { return ByChunk(sz); } + + void close() { + std.stdio.stdin.close; + } } } diff --git a/minigui.d b/minigui.d index 54ed48b..d1cedf5 100644 --- a/minigui.d +++ b/minigui.d @@ -566,7 +566,7 @@ class Widget : ReflectableProperties { auto old = dynamicState_; dynamicState_ = newValue; - useStyleProperties((s) { + useStyleProperties((scope Widget.Style s) { if(s.variesWithState(old ^ newValue)) redraw(); }); @@ -1487,8 +1487,12 @@ class Widget : ReflectableProperties { History: Added May 5, 2021 + + Bugs: + It does not do the static checks on gdc right now. +/ final protected bool emit(EventType, this This, Args...)(Args args) { + version(GNU) {} else static assert(classStaticallyEmits!(This, EventType), "The " ~ This.stringof ~ " class is not declared to emit " ~ EventType.stringof); auto e = new EventType(this, args); e.dispatch(); @@ -3110,7 +3114,7 @@ struct StyleInformation { // through the [VisualTheme] public @property opDispatch(string name)() { typeof(__traits(getMember, Widget.Style.init, name)()) prop; - w.useStyleProperties((props) { + w.useStyleProperties((scope Widget.Style props) { //visualTheme.useStyleProperties(w, (props) { prop = __traits(getMember, props, name); }); @@ -6280,7 +6284,7 @@ class Window : Widget { event.relatedTarget = mouseLastOver; event.sendDirectly(); - ele.useStyleProperties((s) { + ele.useStyleProperties((scope Widget.Style s) { ele.parentWindow.win.cursor = s.cursor; }); } @@ -6550,9 +6554,13 @@ private void delegate() makeAutomaticHandler(alias fn, T)(T t) { } else { static if(is(typeof(fn) Params == __parameters)) struct S { + static if(!__(traits(compiles, mixin(`{ static foreach(i; 1..4) {} }`)))) { + pragma(msg, "warning: automatic handler of params not yet implemented on your compiler"); + } else mixin(q{ static foreach(idx, ignore; Params) { mixin("Params[idx] " ~ __traits(identifier, Params[idx .. idx + 1]) ~ ";"); } + }); } return () { dialog((S s) {