mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-01-27 07:17:20 +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" />
|
||||
|
||||
<!-- Haxe 4.3.0+: Enable pretty syntax errors and stuff. -->
|
||||
<haxedef name="message-reporting" value="pretty" />
|
||||
<haxedef name="message.reporting" value="pretty" />
|
||||
|
||||
<!-- _________________________________ Custom _______________________________ -->
|
||||
<!-- 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/';
|
||||
|
||||
/**
|
||||
* GIT REPO DATA
|
||||
* REPOSITORY DATA
|
||||
*/
|
||||
// ==============================
|
||||
|
||||
|
@ -86,6 +86,11 @@ class Constants
|
|||
public static final GIT_HASH:String = funkin.util.macro.GitCommit.getGitCommitHash();
|
||||
#end
|
||||
|
||||
/**
|
||||
* The current library versions, as provided by hmm.
|
||||
*/
|
||||
public static final LIBRARY_VERSIONS:Array<String> = funkin.util.macro.HaxelibVersions.getLibraryVersions();
|
||||
|
||||
/**
|
||||
* COLORS
|
||||
*/
|
||||
|
|
|
@ -123,6 +123,17 @@ class CrashHandler
|
|||
|
||||
fullContents += '=====================\n';
|
||||
|
||||
fullContents += 'Haxelibs: \n';
|
||||
|
||||
for (lib in Constants.LIBRARY_VERSIONS)
|
||||
{
|
||||
fullContents += '- ${lib}\n';
|
||||
}
|
||||
|
||||
fullContents += '\n';
|
||||
|
||||
fullContents += '=====================\n';
|
||||
|
||||
fullContents += '\n';
|
||||
|
||||
fullContents += message;
|
||||
|
|
Loading…
Reference in a new issue