all repos — h3 @ deeb33f4f49d2e18b56fdcb979a843c1c17aee46

A tiny, extremely minimalist JavaScript microframework.

Started working on new minor version.
h3rald h3rald@h3rald.com
Sun, 02 Aug 2020 14:12:42 +0200
commit

deeb33f4f49d2e18b56fdcb979a843c1c17aee46

parent

21175bbdf85e344ca639c90a314f78bfce2e64e9

M README.mdREADME.md

@@ -19,7 +19,7 @@ ### I'm sold! Where can I get it?

Here, look, it's just one file: -<a href="https://raw.githubusercontent.com/h3rald/h3/v0.10.0/h3.js" target="_blank" class="button primary">Download v0.10.0 (Jittery Jem'Hadar)</a> +<a href="https://raw.githubusercontent.com/h3rald/h3/v0.11.0/h3.js" target="_blank" class="button primary">Download v0.11.0 (Keen Klingon)</a> <small>Or get the minified version [here](https://raw.githubusercontent.com/h3rald/h3/v0.9.0/h3.min.js).</small>
M docs/H3_DeveloperGuide.htmdocs/H3_DeveloperGuide.htm

@@ -7335,7 +7335,7 @@ <h3>I&rsquo;m sold! Where can I get it?<a href="#document-top" title="Go to top"></a></h3>

<p>Here, look, it&rsquo;s just one file:</p> -<p><a href="https://raw.githubusercontent.com/h3rald/h3/v0.10.0/h3.js" target="_blank" class="button primary">Download v0.10.0 (Jittery Jem'Hadar)</a></p> +<p><a href="https://raw.githubusercontent.com/h3rald/h3/v0.11.0/h3.js" target="_blank" class="button primary">Download v0.11.0 (Keen Klingon)</a></p> <p><small>Or get the minified version <a href="https://raw.githubusercontent.com/h3rald/h3/v0.9.0/h3.min.js">here</a>.</small></p>

@@ -7716,8 +7716,8 @@ h("a.logo.col-sm-1", { href: "#/" }, [

h("img", { alt: "H3", src: "images/h3.svg" }), ]), h("div.version.col-sm.col-md", [ - h("div.version-number", "v0.10.0"), - h("div.version-label", "“Jittery Jem'Hadar“"), + h("div.version-number", "v0.11.0"), + h("div.version-label", "“Keen Klingon“"), ]), h("label.drawer-toggle.button.col-sm-last", { for: "drawer-control" }), ]);

@@ -8125,7 +8125,7 @@ </ul>

</div> <div id="footer"> - <p><span class="copy"></span> Fabio Cevasco &ndash; August 1, 2020</p> + <p><span class="copy"></span> Fabio Cevasco &ndash; August 2, 2020</p> <p><span>Powered by</span> <a href="https://h3rald.com/hastyscribe"><span class="hastyscribe"></span></a></p> </div> </div>
M docs/example/assets/js/h3.jsdocs/example/assets/js/h3.js

@@ -1,5 +1,5 @@

/** - * H3 v0.10.0 "Jittery Jem'Hadar" + * H3 v0.11.0 "Keen Klingon" * Copyright 2020 Fabio Cevasco <h3rald@h3rald.com> * * @license MIT

@@ -54,14 +54,14 @@ }

} return true; } - return checkProperties(obj1, obj2); // && checkProperties(obj2, obj1); + return checkProperties(obj1, obj2); }; const selectorRegex = /^([a-z][a-z0-9:_=-]*)?(#[a-z0-9:_=-]+)?(\.[^ ]+)*$/i; const [PATCH, INSERT, DELETE] = [-1, -2, -3]; let $onrenderCallbacks = []; -// Virtual Node Implementation with HyperScript-like syntax +// Virtual DOM implementation with HyperScript syntax class VNode { constructor(...args) { this.type = undefined;
M docs/js/app.jsdocs/js/app.js

@@ -50,8 +50,8 @@ h("a.logo.col-sm-1", { href: "#/" }, [

h("img", { alt: "H3", src: "images/h3.svg" }), ]), h("div.version.col-sm.col-md", [ - h("div.version-number", "v0.10.0"), - h("div.version-label", "“Jittery Jem'Hadar“"), + h("div.version-number", "v0.11.0"), + h("div.version-label", "“Keen Klingon“"), ]), h("label.drawer-toggle.button.col-sm-last", { for: "drawer-control" }), ]);
M docs/js/h3.jsdocs/js/h3.js

@@ -1,5 +1,5 @@

/** - * H3 v0.10.0 "Jittery Jem'Hadar" + * H3 v0.11.0 "Keen Klingon" * Copyright 2020 Fabio Cevasco <h3rald@h3rald.com> * * @license MIT

@@ -54,14 +54,14 @@ }

} return true; } - return checkProperties(obj1, obj2); // && checkProperties(obj2, obj1); + return checkProperties(obj1, obj2); }; const selectorRegex = /^([a-z][a-z0-9:_=-]*)?(#[a-z0-9:_=-]+)?(\.[^ ]+)*$/i; const [PATCH, INSERT, DELETE] = [-1, -2, -3]; let $onrenderCallbacks = []; -// Virtual Node Implementation with HyperScript-like syntax +// Virtual DOM implementation with HyperScript syntax class VNode { constructor(...args) { this.type = undefined;
M docs/md/overview.mddocs/md/overview.md

@@ -12,7 +12,7 @@ ### I'm sold! Where can I get it?

Here, look, it's just one file: -<a href="https://raw.githubusercontent.com/h3rald/h3/v0.10.0/h3.js" target="_blank" class="button primary">Download v0.10.0 (Jittery Jem'Hadar)</a> +<a href="https://raw.githubusercontent.com/h3rald/h3/v0.11.0/h3.js" target="_blank" class="button primary">Download v0.11.0 (Keen Klingon)</a> <small>Or get the minified version [here](https://raw.githubusercontent.com/h3rald/h3/v0.9.0/h3.min.js).</small>
M docs/md/tutorial.mddocs/md/tutorial.md

@@ -133,8 +133,8 @@ h("a.logo.col-sm-1", { href: "#/" }, [

h("img", { alt: "H3", src: "images/h3.svg" }), ]), h("div.version.col-sm.col-md", [ - h("div.version-number", "v0.10.0"), - h("div.version-label", "“Jittery Jem'Hadar“"), + h("div.version-number", "v0.11.0"), + h("div.version-label", "“Keen Klingon“"), ]), h("label.drawer-toggle.button.col-sm-last", { for: "drawer-control" }), ]);
M h3.jsh3.js

@@ -1,5 +1,5 @@

/** - * H3 v0.10.0 "Jittery Jem'Hadar" + * H3 v0.11.0 "Keen Klingon" * Copyright 2020 Fabio Cevasco <h3rald@h3rald.com> * * @license MIT
M h3.min.jsh3.min.js

@@ -1,5 +1,5 @@

/** - * H3 v0.10.0 "Jittery Jem'Hadar" + * H3 v0.11.0 "Keen Klingon" * Copyright 2020 Fabio Cevasco <h3rald@h3rald.com> * * @license MIT
M package.jsonpackage.json

@@ -1,7 +1,7 @@

{ "name": "@h3rald/h3", "version": "0.11.0", - "versionName": "Jittery Jem'Hadar", + "versionName": "Keen Klingon", "description": "A tiny, extremely minimalist JavaScript microframework.", "main": "h3.js", "scripts": {

@@ -41,4 +41,4 @@ "coveralls": "^3.0.11",

"jest": "^25.3.0", "terser": "^4.8.0" } -} +}