mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-17 12:23:36 +00:00
icons and changelog and newgrounds
This commit is contained in:
parent
5d96dc44e0
commit
86955d6670
|
@ -5,10 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [unreleased]
|
## [unreleased]
|
||||||
|
### Added
|
||||||
|
- Easter eggs
|
||||||
### Changed
|
### Changed
|
||||||
- New icons, old one was placeholder since October woops!
|
- New icons, old one was placeholder since October woops!
|
||||||
- Made the transitions between the story mode levels more seamless.
|
- Made the transitions between the story mode levels more seamless.
|
||||||
|
- Offset of the Newgrounds logo on boot screen.
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- Should show intro credits on desktop versions of the game more consistently
|
||||||
- Layering on Week 4 songs with GF and the LIMO LOL HOW TF I MISS THIS
|
- Layering on Week 4 songs with GF and the LIMO LOL HOW TF I MISS THIS
|
||||||
- Chart's and chart editor now support changeBPM, GOD BLESS MTH FOR THIS ONE I BEEN STRUGGLIN WIT THAT SINCE OCTOBER LMAO ([GOD BLESS MTH](https://github.com/ninjamuffin99/Funkin/pull/382))
|
- Chart's and chart editor now support changeBPM, GOD BLESS MTH FOR THIS ONE I BEEN STRUGGLIN WIT THAT SINCE OCTOBER LMAO ([GOD BLESS MTH](https://github.com/ninjamuffin99/Funkin/pull/382))
|
||||||
- Fixed sustain note trails ALSO THANKS TO MTH U A REAL ONE ([MTH VERY POWERFUL](https://github.com/ninjamuffin99/Funkin/pull/415))
|
- Fixed sustain note trails ALSO THANKS TO MTH U A REAL ONE ([MTH VERY POWERFUL](https://github.com/ninjamuffin99/Funkin/pull/415))
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<project>
|
<project>
|
||||||
<!-- _________________________ Application Settings _________________________ -->
|
<!-- _________________________ Application Settings _________________________ -->
|
||||||
|
|
||||||
<app title="Friday Night Funkin'" file="Funkin" packageName="com.ninjamuffin99.funkin" main="Main" version="0.2.7" company="ninjamuffin99" />
|
<app title="Friday Night Funkin'" file="Funkin" packageName="com.ninjamuffin99.funkin" main="Main" version="0.2.7.1" company="ninjamuffin99" />
|
||||||
|
|
||||||
<!--Switch Export with Unique ApplicationID and Icon-->
|
<!--Switch Export with Unique ApplicationID and Icon-->
|
||||||
<set name="APP_ID" value="0x0100f6c013bbc000" />
|
<set name="APP_ID" value="0x0100f6c013bbc000" />
|
||||||
|
|
|
@ -14,6 +14,8 @@ import io.newgrounds.objects.events.Result.GetVersionResult;
|
||||||
import lime.app.Application;
|
import lime.app.Application;
|
||||||
import openfl.display.Stage;
|
import openfl.display.Stage;
|
||||||
|
|
||||||
|
using StringTools;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* MADE BY GEOKURELI THE LEGENED GOD HERO MVP
|
* MADE BY GEOKURELI THE LEGENED GOD HERO MVP
|
||||||
*/
|
*/
|
||||||
|
@ -28,6 +30,7 @@ class NGio
|
||||||
public static var ngScoresLoaded(default, null):FlxSignal = new FlxSignal();
|
public static var ngScoresLoaded(default, null):FlxSignal = new FlxSignal();
|
||||||
|
|
||||||
public static var GAME_VER:String = "";
|
public static var GAME_VER:String = "";
|
||||||
|
public static var GAME_VER_NUMS:String = '';
|
||||||
public static var gotOnlineVer:Bool = false;
|
public static var gotOnlineVer:Bool = false;
|
||||||
|
|
||||||
public static function noLogin(api:String)
|
public static function noLogin(api:String)
|
||||||
|
@ -43,7 +46,8 @@ class NGio
|
||||||
{
|
{
|
||||||
var call = NG.core.calls.app.getCurrentVersion(GAME_VER).addDataHandler(function(response:Response<GetCurrentVersionResult>)
|
var call = NG.core.calls.app.getCurrentVersion(GAME_VER).addDataHandler(function(response:Response<GetCurrentVersionResult>)
|
||||||
{
|
{
|
||||||
GAME_VER = response.result.data.current_version;
|
GAME_VER = response.result.data.currentVersion;
|
||||||
|
GAME_VER_NUMS = GAME_VER.split(" ")[0].trim();
|
||||||
trace('CURRENT NG VERSION: ' + GAME_VER);
|
trace('CURRENT NG VERSION: ' + GAME_VER);
|
||||||
gotOnlineVer = true;
|
gotOnlineVer = true;
|
||||||
});
|
});
|
||||||
|
|
|
@ -88,7 +88,10 @@ class TitleState extends MusicBeatState
|
||||||
#elseif CHARTING
|
#elseif CHARTING
|
||||||
FlxG.switchState(new ChartingState());
|
FlxG.switchState(new ChartingState());
|
||||||
#else
|
#else
|
||||||
startIntro();
|
new FlxTimer().start(1, function(tmr:FlxTimer)
|
||||||
|
{
|
||||||
|
startIntro();
|
||||||
|
});
|
||||||
#end
|
#end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -223,7 +226,8 @@ class TitleState extends MusicBeatState
|
||||||
|
|
||||||
override function update(elapsed:Float)
|
override function update(elapsed:Float)
|
||||||
{
|
{
|
||||||
Conductor.songPosition = FlxG.sound.music.time;
|
if (FlxG.sound.music != null)
|
||||||
|
Conductor.songPosition = FlxG.sound.music.time;
|
||||||
// FlxG.watch.addQuick('amp', FlxG.sound.music.amplitude);
|
// FlxG.watch.addQuick('amp', FlxG.sound.music.amplitude);
|
||||||
|
|
||||||
if (FlxG.keys.justPressed.F)
|
if (FlxG.keys.justPressed.F)
|
||||||
|
@ -270,7 +274,7 @@ class TitleState extends MusicBeatState
|
||||||
|
|
||||||
var version:String = "v" + Application.current.meta.get('version');
|
var version:String = "v" + Application.current.meta.get('version');
|
||||||
|
|
||||||
if (version.trim() != NGio.GAME_VER.trim() && !OutdatedSubState.leftState)
|
if (version.trim() != NGio.GAME_VER_NUMS && !OutdatedSubState.leftState)
|
||||||
{
|
{
|
||||||
trace('OLD VERSION!');
|
trace('OLD VERSION!');
|
||||||
FlxG.switchState(new OutdatedSubState());
|
FlxG.switchState(new OutdatedSubState());
|
||||||
|
|
Loading…
Reference in a new issue