diff --git a/README.md b/README.md index 41313b0..cb8227a 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,5 @@ For details, check out the [wiki](https://github.com/jakads/Randosu/wiki) - More randomization options - Friendlier UI using TKinter - Auto-select .osu file to randomize using osu client (something like osu!StreamCompanion's Now Playing feature) -- Chances of switching -> Proportions of switching -- Make scatter only avoid 16+th jacks - Calculate the end of sliders to prevent sliderends going out of bounds * Any help about this is greatly appreciated \ No newline at end of file diff --git a/Randosu.exe b/Randosu.exe index b63c1e5..3a7a2cf 100644 Binary files a/Randosu.exe and b/Randosu.exe differ diff --git a/functions.py b/functions.py index 2dc2f07..737eabd 100644 --- a/functions.py +++ b/functions.py @@ -16,7 +16,7 @@ def intro(): 'hi', 'yes', 'epic', - 'The Ultmiate Map Radnomizer for all modes in osu!' + 'More visual layouts coming soon:tm:', ] introweight = [30] + [10] + [1] * (len(introlist) - 2) return choices(introlist, introweight)[0] @@ -34,7 +34,8 @@ def crash(): 'I hate myself.', 'When you mix up the pattern too intensely', 'damn', - 'h' + 'h', + 'the fuck' ] return choices(crashlist)[0] diff --git a/randosu.py b/randosu.py index 6cfc0a6..bc3cb60 100644 --- a/randosu.py +++ b/randosu.py @@ -164,7 +164,7 @@ crashlog = f'CrashLog_{datetime.now().strftime("%Y%m%d%H%M%S")}.log' with open(crashlog,mode='w',encoding='utf-8') as c: c.write(crash()) - c.write(f'Target File: {sys.argv[1]}\n') + c.write(f'\n\nTarget File: {sys.argv[1]}\n') c.write('If you would like to tell the dev about this issue, please attach the file above with this crash report.\n') c.write('DO NOT EDIT ANYTHING WRITTEN HERE.\n\n') c.write(traceback.format_exc()) diff --git a/src/mania.py b/src/mania.py index 7e03cab..1a4a546 100644 --- a/src/mania.py +++ b/src/mania.py @@ -144,7 +144,7 @@ def randosu(path, content): i=0 - f = open('test.log',mode='w',encoding='utf-8') + # f = open('test.log',mode='w',encoding='utf-8') # Int, Boolean List for checking the previous occupation (used for Scatter) # Defaults to [False, False, ..., False] @@ -267,9 +267,9 @@ def randosu(path, content): i += 1 - f.write(f'{randcol} | {n["ms"]}, {ceil(mpb/4)}, {bestcol}, {goodcol}, {leftcol}\n') + # f.write(f'{randcol} | {n["ms"]}, {ceil(mpb/4)}, {bestcol}, {goodcol}, {leftcol}\n') - f.close() + # f.close() with open(filename,'w',encoding='utf-8') as osu: col = [int(512*(2*column+1)/(2*keys)) for column in range(keys)] diff --git a/version.txt b/version.txt index 6da28dd..341cf11 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.1.1 \ No newline at end of file +0.2.0 \ No newline at end of file