1
Fork 0

Add new chart

This commit is contained in:
prescientmoon 2024-09-19 02:54:12 +02:00
parent 18d0f320ab
commit d7ac4094b2
Signed by: prescientmoon
SSH key fingerprint: SHA256:WFp/cO76nbarETAoQcQXuV+0h7XJsEsOCI0UsyPIy6U
3 changed files with 4 additions and 2 deletions

View file

@ -12,8 +12,8 @@ url=$2
curr=$(pwd) curr=$(pwd)
dir_path=$SHIMMERING_ASSET_DIR/songs/$name dir_path=$SHIMMERING_ASSET_DIR/songs/raw/$name
mkdir $dir_path mkdir -p $dir_path
cd $dir_path cd $dir_path
http GET "$url" > temp http GET "$url" > temp

View file

@ -628,3 +628,4 @@ MVURBD,ETIA.,Rotaeno,絶滅,PST 4,4.5,999,絶滅,PRS 7+,7.8,"1,031",絶滅,FTR 1
Vulcānus,"Team Grimoire Vulcānus,"Team Grimoire
vs. Aoi",Rotaeno,Volution,PST 5,5.5,968,Volution CCCLX,PRS 8,8.4,"1,234",Volution IV,FTR 10+,10.9,"1,542",N/A,,,,Light,212,5.10.0,24/8/29,N/A,,✓ vs. Aoi",Rotaeno,Volution,PST 5,5.5,968,Volution CCCLX,PRS 8,8.4,"1,234",Volution IV,FTR 10+,10.9,"1,542",N/A,,,,Light,212,5.10.0,24/8/29,N/A,,✓
epitaxy,Camellia,World Extend 3: Illusions,Dec18,PST 3,3.0,826,Dec18,PRS 6,6.0,939,Dec18,FTR 8,8.6,"1,177",Dec18,ETR 9,9.6,"1,410",Light,183,5.10.0,24/8/29,5.10.0,24/8/29, epitaxy,Camellia,World Extend 3: Illusions,Dec18,PST 3,3.0,826,Dec18,PRS 6,6.0,939,Dec18,FTR 8,8.6,"1,177",Dec18,ETR 9,9.6,"1,410",Light,183,5.10.0,24/8/29,5.10.0,24/8/29,
"Rain of Conflict in a Radiant Abyss",ak+q,Memory Archive: Partner,"Nitro ""v20170309""",PST 5,5.0,831,"Nitro ""v20170309""",PRS 7+,7.8,934,"Nitro ""v20170309""",FTR 9,9.5,"1,174","Nitro meets Toaster ""v20170309""",ETR 10,10.5,"1,247",Conflict,195,5.10.2,24/9/12,5.10.2,24/9/12,✓

1 Song Artist Pack Note Design Level CC Notes Note Design Level CC Notes Note Design Level CC Notes Note Design Level CC Notes Side BPM Version Date Version Date Original
628
629
630
631

View file

@ -130,6 +130,7 @@ pub fn run() -> Result<(), Error> {
let image_out_path = let image_out_path =
out_dir.join(format!("{difficulty_string}_{BITMAP_IMAGE_SIZE}.jpg")); out_dir.join(format!("{difficulty_string}_{BITMAP_IMAGE_SIZE}.jpg"));
image image
// .blur(27.5)
.save(&image_out_path) .save(&image_out_path)
.with_context(|| format!("Could not save image to {image_out_path:?}"))?; .with_context(|| format!("Could not save image to {image_out_path:?}"))?;
} }