all repos — h3 @ fa6257d886099a912862f0f0ae242d17c4c853cb

A tiny, extremely minimalist JavaScript microframework.

Updated release name and number; minor changes.
h3rald h3rald@h3rald.com
Thu, 23 Apr 2020 10:10:06 +0200
commit

fa6257d886099a912862f0f0ae242d17c4c853cb

parent

ff6cfbd8b53bff65a137f23d2cf0168c19053365

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.1.0/h3.js" target="_blank" class="button primary">Download v0.1.0 (Audacious Andorian)</a> +<a href="https://raw.githubusercontent.com/h3rald/h3/v0.2.0/h3.js" target="_blank" class="button primary">Download v0.2.0 (Brave Bajoran)</a> Yes there is also a [NPM package](https://www.npmjs.com/package/@h3rald/h3) if you want to use it with WebPack and similar, but let me repeat: _it's just one file_.
M VERSIONVERSION

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

-0.1.0:Audacious Andorian +0.2.0:Brave Bajoran
M docs/H3_DeveloperGuide.htmdocs/H3_DeveloperGuide.htm

@@ -7333,7 +7333,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.1.0/h3.js" target="_blank" class="button primary">Download v0.1.0 (Audacious Andorian)</a></p> +<p><a href="https://raw.githubusercontent.com/h3rald/h3/v0.2.0/h3.js" target="_blank" class="button primary">Download v0.2.0 (Brave Bajoran)</a></p> <p>Yes there is also a <a href="https://www.npmjs.com/package/@h3rald/h3">NPM package</a> if you want to use it with WebPack and similar, but let me repeat: <em>it&rsquo;s just one file</em>.</p>

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

h3("img", { alt: "H3", src: "images/h3.svg" }), ]), h3("div.version.col-sm.col-md", [ - h3("div.version-number", "v0.1.0"), - h3("div.version-label", "“Audacious Andorian“"), + h3("div.version-number", "v0.2.0"), + h3("div.version-label", "“Brave Bajoran“"), ]), h3("label.drawer-toggle.button.col-sm-last", { for: "drawer-control" }), ]);

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

</div> <div id="footer"> - <p><span class="copy"></span> Fabio Cevasco &ndash; April 22, 2020</p> + <p><span class="copy"></span> Fabio Cevasco &ndash; April 23, 2020</p> <p><span>Powered by</span> <a href="https://h3rald.com/hastyscribe"><span class="hastyscribe"></span></a></p> </div> </div>
M docs/js/app.jsdocs/js/app.js

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

h3("img", { alt: "H3", src: "images/h3.svg" }), ]), h3("div.version.col-sm.col-md", [ - h3("div.version-number", "v0.1.0"), - h3("div.version-label", "“Audacious Andorian“"), + h3("div.version-number", "v0.2.0"), + h3("div.version-label", "“Brave Bajoran“"), ]), h3("label.drawer-toggle.button.col-sm-last", { for: "drawer-control" }), ]);
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.1.0/h3.js" target="_blank" class="button primary">Download v0.1.0 (Audacious Andorian)</a> +<a href="https://raw.githubusercontent.com/h3rald/h3/v0.2.0/h3.js" target="_blank" class="button primary">Download v0.2.0 (Brave Bajoran)</a> Yes there is also a [NPM package](https://www.npmjs.com/package/@h3rald/h3) if you want to use it with WebPack and similar, but let me repeat: _it's just one file_.
M docs/md/tutorial.mddocs/md/tutorial.md

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

h3("img", { alt: "H3", src: "images/h3.svg" }), ]), h3("div.version.col-sm.col-md", [ - h3("div.version-number", "v0.1.0"), - h3("div.version-label", "“Audacious Andorian“"), + h3("div.version-number", "v0.2.0"), + h3("div.version-label", "“Brave Bajoran“"), ]), h3("label.drawer-toggle.button.col-sm-last", { for: "drawer-control" }), ]);
M package.jsonpackage.json

@@ -1,6 +1,6 @@

{ "name": "@h3rald/h3", - "version": "0.1.0", + "version": "0.2.0", "description": "A tiny, extremely minimalist JavaScript microframework.", "main": "h3.js", "scripts": {