This commit is contained in:
pvincent
2021-08-30 18:30:00 +04:00
parent 0854d556fe
commit 8bd119a818
3 changed files with 2 additions and 11 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
::use 'design.mtt':: <!--::use 'design.mtt'::-->
<div class="text-center" style="height:400px;width:100%;"> <div class="text-center" style="height:400px;width:100%;">
<h1> <h1>
<span class="glyphicon glyphicon-cog"></span> <span class="glyphicon glyphicon-cog"></span>
@@ -14,4 +14,4 @@
</div> </div>
::end:: <!--::end::-->
-8
View File
@@ -1,5 +1,4 @@
import db.User; import db.User;
import thx.semver.Version;
import Common; import Common;
class App extends sugoi.BaseApp { class App extends sugoi.BaseApp {
@@ -10,13 +9,6 @@ class App extends sugoi.BaseApp {
public var eventDispatcher:hxevents.Dispatcher<Event>; public var eventDispatcher:hxevents.Dispatcher<Event>;
public var plugins:Array<sugoi.plugin.IPlugIn>; public var plugins:Array<sugoi.plugin.IPlugIn>;
/**
* Version management
* @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 = "cagette-péi " + MyMacros.getGitCommitDate();
public static var VERSION = "cagette-pei"; // empty yet, cf.BaseApp.loadConfig public static var VERSION = "cagette-pei"; // empty yet, cf.BaseApp.loadConfig
public function new() { public function new() {
-1
View File
@@ -45,7 +45,6 @@ class BaseApp {
var PATH = Web.getCwd() + "../"; var PATH = Web.getCwd() + "../";
var json = haxe.Json.parse(sys.io.File.getContent(PATH + "package.json")); var json = haxe.Json.parse(sys.io.File.getContent(PATH + "package.json"));
App.VERSION = json.version; App.VERSION = json.version;
App.log('configuration has been reloaded, VERSION=${App.VERSION}'); App.log('configuration has been reloaded, VERSION=${App.VERSION}');
} }