Commit 0d5384a

Nick Faro committed on
Temporarily remove version include thing
commit 0d5384a0bb3392422228d6661820a25ed163cbdb parent f55ca61
3 changed files +2−14
Modifiedconstants.pas +1−1
@@ -20,7 +20,7 @@ type
20 const 20 const
21 UGE_FORMAT_VERSION = 6; 21 UGE_FORMAT_VERSION = 6;
22 22
23 HT_GIT_TAG = {$INCLUDE revision.inc} {$ifdef DEVELOPMENT} + '-DEBUG'{$ENDIF}; 23 //HT_GIT_TAG = {$INCLUDE revision.inc} {$ifdef DEVELOPMENT} + '-DEBUG'{$ENDIF};
24 24
25 SYM_ROW = 'row'; 25 SYM_ROW = 'row';
26 SYM_TICK = 'tick'; 26 SYM_TICK = 'tick';
ModifiedhUGETracker.lpi +0−12
@@ -67,9 +67,6 @@
67 </Verbosity> 67 </Verbosity>
68 <WriteFPCLogo Value="False"/> 68 <WriteFPCLogo Value="False"/>
69 <CustomOptions Value="-dPRODUCTION"/> 69 <CustomOptions Value="-dPRODUCTION"/>
70 <ExecuteBefore>
71 <Command Value="./git2revisioninc.cmd"/>
72 </ExecuteBefore>
73 </Other> 70 </Other>
74 </CompilerOptions> 71 </CompilerOptions>
75 </Item2> 72 </Item2>
@@ -120,9 +117,6 @@
120 </Verbosity> 117 </Verbosity>
121 <WriteFPCLogo Value="False"/> 118 <WriteFPCLogo Value="False"/>
122 <CustomOptions Value="-dPRODUCTION"/> 119 <CustomOptions Value="-dPRODUCTION"/>
123 <ExecuteBefore>
124 <Command Value="./git2revisioninc.cmd"/>
125 </ExecuteBefore>
126 </Other> 120 </Other>
127 </CompilerOptions> 121 </CompilerOptions>
128 </Item3> 122 </Item3>
@@ -175,9 +169,6 @@
175 </Verbosity> 169 </Verbosity>
176 <WriteFPCLogo Value="False"/> 170 <WriteFPCLogo Value="False"/>
177 <CustomOptions Value="-dPRODUCTION"/> 171 <CustomOptions Value="-dPRODUCTION"/>
178 <ExecuteBefore>
179 <Command Value="./git2revisioninc.cmd"/>
180 </ExecuteBefore>
181 </Other> 172 </Other>
182 </CompilerOptions> 173 </CompilerOptions>
183 </Item4> 174 </Item4>
@@ -409,9 +400,6 @@
409 </Verbosity> 400 </Verbosity>
410 <WriteFPCLogo Value="False"/> 401 <WriteFPCLogo Value="False"/>
411 <CustomOptions Value="-dDEVELOPMENT"/> 402 <CustomOptions Value="-dDEVELOPMENT"/>
412 <ExecuteBefore>
413 <Command Value="./git2revisioninc.cmd"/>
414 </ExecuteBefore>
415 </Other> 403 </Other>
416 </CompilerOptions> 404 </CompilerOptions>
417 </CONFIG> 405 </CONFIG>
Modifiedtracker.pas +1−1
@@ -632,7 +632,7 @@ procedure TfrmTracker.UpdateWindowTitle;
632 var 632 var
633 S: String; 633 S: String;
634 begin 634 begin
635 S := 'hUGETracker '+HT_GIT_TAG; 635 S := 'hUGETracker';//+HT_GIT_TAG;
636 636
637 if Trim(Song.Name) <> '' then begin 637 if Trim(Song.Name) <> '' then begin
638 S += ' - ['; 638 S += ' - [';