Skip to content

Commit e9fa83b

Browse files
committed
a
1 parent a853389 commit e9fa83b

File tree

3 files changed

+72
-0
lines changed

3 files changed

+72
-0
lines changed

setup/windows-github.bat

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
@echo off
2+
color 0a
3+
cd ..
4+
@echo on
5+
echo Installing dependencies...
6+
echo This might take a few moments depending on your internet speed.
7+
haxelib install lime 8.2.2
8+
haxelib install openfl 9.4.1
9+
haxelib install flixel 5.6.2
10+
haxelib install flixel-addons 3.3.2
11+
haxelib install flixel-tools 1.5.1
12+
haxelib install hscript-iris 1.1.3
13+
haxelib install tjson 1.4.0
14+
haxelib install hxdiscord_rpc 1.2.4
15+
haxelib install hxvlc 2.0.1 --skip-dependencies
16+
haxelib install helder.set 0.3.1
17+
haxelib install yaml 2.0.1
18+
haxelib install haxe-concurrent 5.1.3
19+
haxelib install actuate 1.9.0
20+
haxelib install flixel-ui 2.6.1
21+
haxelib install hscript 2.5.0
22+
haxelib install noisehx 0.0.1
23+
haxelib install haxeui-core 1.7.0
24+
haxelib install haxeui-flixel 1.7.0
25+
haxelib install funkin-modchart 1.2.3
26+
haxelib install deflatex 1.0.0
27+
haxelib install crypto 1.0.4
28+
haxelib install openflCamera 1.0.7
29+
haxelib install openflMicrophone 1.0.1
30+
haxelib set lime 8.2.2
31+
haxelib set openfl 9.4.1
32+
haxelib git flxsoundfilters https://github.com/TheZoroForce240/FlxSoundFilters
33+
haxelib git hxWebSockets https://github.com/ianharrigan/hxWebSockets
34+
haxelib git funkin-modchart https://github.com/TheoDevelops/FunkinModchart
35+
haxelib git linc_dialogs https://github.com/snowkit/linc_dialogs.git
36+
haxelib git flxanimate https://github.com/Dot-Stuff/flxanimate 768740a56b26aa0c072720e0d1236b94afe68e3e
37+
haxelib git linc_luajit https://github.com/superpowers04/linc_luajit 1906c4a96f6bb6df66562b3f24c62f4c5bba14a7
38+
haxelib git funkin.vis https://github.com/beihu235/funkVis-FrequencyFixed
39+
haxelib git grig.audio https://gitlab.com/haxe-grig/grig.audio.git cbf91e2180fd2e374924fe74844086aab7891666
40+
haxelib git flixel-text-input https://github.com/FunkinCrew/flixel-text-input 951a0103a17bfa55eed86703ce50b4fb0d7590bc
41+
haxelib git FlxPartialSound https://github.com/FunkinCrew/FlxPartialSound.git f986332ba5ab02abd386ce662578baf04904604a
42+
haxelib git moonchart https://github.com/MaybeMaru/moonchart
43+
haxelib git tentools https://github.com/TentaRJ/tentools.git
44+
haxelib git systools https://github.com/haya3218/systools
45+
haxelib run lime rebuild systools windows
46+
echo Finished!

setup/windows.bat

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,28 @@ haxelib git tentools https://github.com/TentaRJ/tentools.git
4444
haxelib git systools https://github.com/haya3218/systools
4545
haxelib run lime rebuild systools windows
4646
echo Finished!
47+
pause
48+
49+
REM Ask user if they want to ensure the exact required versions
50+
set /p ensure_versions="Do you want to ensure the exact required library versions? (y/n): "
51+
if /i "%ensure_versions%"=="y" (
52+
haxelib set lime 8.2.2
53+
haxelib set openfl 9.4.1
54+
haxelib set flixel 5.6.2
55+
haxelib set flixel-addons 3.3.2
56+
haxelib set flixel-tools 1.5.1
57+
haxelib set hscript-iris 1.1.3
58+
haxelib set tjson 1.4.0
59+
haxelib set hxdiscord_rpc 1.3.0
60+
haxelib set hxvlc 2.0.1
61+
haxelib set helder.set 0.3.1
62+
haxelib set yaml 2.0.1
63+
haxelib set hxWebSockets git
64+
haxelib set haxe-concurrent 5.1.3
65+
haxelib set actuate 1.9.0
66+
haxelib set flixel-ui 2.6.1
67+
haxelib set hscript 2.5.0
68+
haxelib set noisehx 0.0.1
69+
REM Add more haxelib set commands here if you add more versioned libraries above
70+
echo All required library versions have been set.
71+
)

source/shop/DaShop.hx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ class DaShop extends MusicBeatState
7777
desc.alignment = CENTER;
7878
desc.scrollFactor.set(1,1);
7979
add(desc);
80+
8081
super.create();
8182
}
8283

0 commit comments

Comments
 (0)