Move folders around

This commit is contained in:
544146
2023-09-16 18:11:13 +01:00
parent b9292981e2
commit cbccbee539
671 changed files with 8093 additions and 27 deletions
+5 -2
View File
@@ -14,8 +14,8 @@ drs_video.webm
drs_video.webm.json
drs_video.webm.log
drs-files/
!drs-files/**/*.json
resources/drs/
!resources/drs/**/*.json
.idea
@@ -174,3 +174,6 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
!/DanceDashLaunchHelper/obj/DanceDashLaunchHelper.csproj.nuget.dgspec.json
!/DanceDashLaunchHelper/obj/project.assets.json
!/DanceDashLaunchHelper/obj/project.packagespec.json
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,4 @@
{
"name": "pre_commit_placeholder_package",
"version": "0.0.0"
}
-23
View File
@@ -1,23 +0,0 @@
```bash
find . -type f | sed 's/.*\.//' | sort -u
```
```bash
find . -type f -name "*.xml"
```
```bash
find . -type f -name "*.xml" | wc -l
```
```bash
find . -type f -name "*.m4a" | wc -l
```
```bash
find . -type f -name '*.xml' | grep -Eo '_[0-9][a-zA-Z]\.xml$' | sort | uniq
```
```bash
find . -type f -name "song.json" -exec rm -f {} \;
```
+4230
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -12,8 +12,8 @@ from model.dancerush import DRSSongDifficulties
from model.dancerush import DRSSongDifficulty
from model.dancerush import DRSTrack
TRACK_LIST = r'drs-files\datax\music\music-info-base.xml'
TRACKS_BASE_DIR = r'drs-files\datax\music'
TRACK_LIST = r'resources\drs\datax\music\music-info-base.xml'
TRACKS_BASE_DIR = r'resources\drs\datax\music'
ALL_SONG_METADATA = open(TRACK_LIST, encoding='utf-8').read()
ALL_SONG_METADATA_DICT = xmltodict.parse(ALL_SONG_METADATA)

Some files were not shown because too many files have changed in this diff Show More