Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
3.0.1 hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLeerName committed May 27, 2023
1 parent 3b4894b commit 2e9b760
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Mania Converter 3.0
# Mania Converter 3.0.1
Converter of FNF or osu!mania maps/charts, example from 4 key to 6 key, now with UI! It can remove damage notes, convert to osu!mania and more. Works with 1-512 keys. (yeah its possible)

# [VERY POG WEB VERSION (UPDATED IN MAY)](https://theleername.github.io/mania-converter/)
# [VERY POG WEB VERSION (UPD 27.05.2023)](https://theleername.github.io/mania-converter/)
- wow! its support mobile devices!!!
- the best frontend code only here!!!!

## [How to build it *(click)*](https://github.com/TheLeerName/mania-converter/blob/main/docs/building.md)

## (Latest) 3.0 - The UI Update 2
- Now on HaxeFlixel (again yeah)
- Supports of 1-512 key
- CMD arguments works too: `ManiaConverter.exe "Camellia - Quaoar (-MysticEyes) [Celestial].osu" "quaoar-celestial.json"`
## (Latest) 3.0.1 - Hotfix
- Fixed difficulty name parsing (thx to [LeoroyX](https://gamebanana.com/posts/10786130) for report)
- Fixed song name parsing
- Time of notes in osu is integer now
- Removed stupid trace in remove duplicates function

### [Check past changelogs here](https://github.com/TheLeerName/mania-converter/blob/main/docs/changelogs.md)

Expand Down
8 changes: 7 additions & 1 deletion docs/changelogs.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelogs of Mania Converter

## (Latest) 3.0 - The UI Update 2
## (Latest) 3.0.1 - Hotfix
- Fixed difficulty name parsing (thx to [LeoroyX](https://gamebanana.com/posts/10786130) for report)
- Fixed song name parsing
- Time of notes in osu is integer now
- Removed stupid trace in remove duplicates function

## 3.0 - The UI Update 2
- Now on HaxeFlixel
- Supports of 1-512 key
- CMD arguments works too: `ManiaConverter.exe "Camellia - Quaoar (-MysticEyes) [Celestial].osu" "quaoar-celestial.json"`
Expand Down
2 changes: 1 addition & 1 deletion source/Main.hx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Main extends Sprite
{
public static var version(get, default):String;
static function get_version():String {
var curVersion:String = "3.0 (&CT)"; // &CT will be replaced by formatted compileTime
var curVersion:String = "3.0.1 (&CT)"; // &CT will be replaced by formatted compileTime

var suffix:String = compileTime.substring(0, compileTime.indexOf(" ", compileTime.indexOf(" ") + 1)); // removing utc thing
suffix = suffix.replace("-", ""); // removing underline
Expand Down

0 comments on commit 2e9b760

Please sign in to comment.