Browse Source

simplify template master

master 1.1.0
cagette@ct8 4 years ago
parent
commit
a2b9bf3e54
  1. 1
      lang/de/tmp/README.md
  2. 1
      lang/en/tmp/README.md
  3. 1
      lang/master/tmp/README.md
  4. 2
      lang/master/tpl/design.mtt
  5. 3
      src/App.hx

1
lang/de/tmp/README.md

@ -1 +0,0 @@
This is where the compiled templates are.

1
lang/en/tmp/README.md

@ -1 +0,0 @@
This is where the compiled templates are.

1
lang/master/tmp/README.md

@ -1 +0,0 @@
This is where the compiled templates are.

2
lang/master/tpl/design.mtt

@ -201,7 +201,7 @@
<!--
::raw _("Cagette.net is made by <a href='https://www.alilo.fr' target='_blank'><img src='/img/alilo-trans-black.png' /></a>")::<br/>
-->
<span>version ::VERSION::-::getPlatform()::</span>
<span>version ::VERSION::</span>
</div>
<div class="row">

3
src/App.hx

@ -16,7 +16,8 @@ class App extends sugoi.BaseApp {
* @doc https://github.com/fponticelli/thx.semver
*/
//public static var VERSION = ([0,9,2] : Version).withPre("july");
public static var VERSION = ([0,9,2] : Version).withPre(MyMacros.getGitShortSHA(), MyMacros.getGitCommitDate());
//public static var VERSION = ([0,9,2] : Version).withPre(MyMacros.getGitShortSHA(), MyMacros.getGitCommitDate());
public static var VERSION = ([0,9,2] : Version).withPre(MyMacros.getGitCommitDate());
public function new(){
super();

Loading…
Cancel
Save