Move folders around
This commit is contained in:
+5
-2
@@ -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"
|
||||
}
|
||||
@@ -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
File diff suppressed because it is too large
Load Diff
+2
-2
@@ -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
Reference in New Issue
Block a user