mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-11-30 08:07:52 +00:00
Merge remote-tracking branch 'origin/rewrite/master' into bugfix/controller-overflow
This commit is contained in:
commit
9947425a9e
|
|
@ -128,7 +128,7 @@
|
||||||
<haxeflag name="-w" value="-WDeprecated" />
|
<haxeflag name="-w" value="-WDeprecated" />
|
||||||
|
|
||||||
<!-- Haxe 4.3.0+: Enable pretty syntax errors and stuff. -->
|
<!-- Haxe 4.3.0+: Enable pretty syntax errors and stuff. -->
|
||||||
<haxedef name="message-reporting" value="pretty" />
|
<haxedef name="message.reporting" value="pretty" />
|
||||||
|
|
||||||
<!-- _________________________________ Custom _______________________________ -->
|
<!-- _________________________________ Custom _______________________________ -->
|
||||||
<!-- Disable trace() calls in release builds to bump up performance.
|
<!-- Disable trace() calls in release builds to bump up performance.
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,7 @@ class Constants
|
||||||
public static final URL_KICKSTARTER:String = 'https://www.kickstarter.com/projects/funkin/friday-night-funkin-the-full-ass-game/';
|
public static final URL_KICKSTARTER:String = 'https://www.kickstarter.com/projects/funkin/friday-night-funkin-the-full-ass-game/';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GIT REPO DATA
|
* REPOSITORY DATA
|
||||||
*/
|
*/
|
||||||
// ==============================
|
// ==============================
|
||||||
|
|
||||||
|
|
@ -86,6 +86,11 @@ class Constants
|
||||||
public static final GIT_HASH:String = funkin.util.macro.GitCommit.getGitCommitHash();
|
public static final GIT_HASH:String = funkin.util.macro.GitCommit.getGitCommitHash();
|
||||||
#end
|
#end
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The current library versions, as provided by hmm.
|
||||||
|
*/
|
||||||
|
public static final LIBRARY_VERSIONS:Array<String> = funkin.util.macro.HaxelibVersions.getLibraryVersions();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* COLORS
|
* COLORS
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -123,6 +123,17 @@ class CrashHandler
|
||||||
|
|
||||||
fullContents += '=====================\n';
|
fullContents += '=====================\n';
|
||||||
|
|
||||||
|
fullContents += 'Haxelibs: \n';
|
||||||
|
|
||||||
|
for (lib in Constants.LIBRARY_VERSIONS)
|
||||||
|
{
|
||||||
|
fullContents += '- ${lib}\n';
|
||||||
|
}
|
||||||
|
|
||||||
|
fullContents += '\n';
|
||||||
|
|
||||||
|
fullContents += '=====================\n';
|
||||||
|
|
||||||
fullContents += '\n';
|
fullContents += '\n';
|
||||||
|
|
||||||
fullContents += message;
|
fullContents += message;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue