Browse Source

Merge branch 'master' of https://git.poweris.moe/yttt-xdu/XDUPlayer

tags/v1.5.0
fire bingo 5 years ago
parent
commit
14efed32e3
5 changed files with 4 additions and 1368 deletions
  1. +2
    -2
      .gitmodules
  2. +0
    -1354
      Js/BgmLoop.json
  3. +1
    -1
      Js/Main.js
  4. +1
    -1
      Js/UtageParse.js
  5. +0
    -10
      gulpfile.js

+ 2
- 2
.gitmodules View File

@@ -1,8 +1,8 @@
[submodule "Js/Translations"]
path = Js/Translations
url = https://git.poweris.moe/xdutranslations.git
url = https://git.poweris.moe/yttt-xdu/xdutranslations.git
branch = .
[submodule "CustomData"]
path = CustomData
url = https://git.poweris.moe/customdata.git
url = https://git.poweris.moe/yttt-xdu/customdata.git
branch = .

+ 0
- 1354
Js/BgmLoop.json
File diff suppressed because it is too large
View File


+ 1
- 1
Js/Main.js View File

@@ -543,7 +543,7 @@ function openHelpModal(event) {
<div style="margin-top: auto; text-align: center;">All Symphogear content belongs to its respective owners</div>
<div id="modal-buttons">
<button onclick="closeModal(event)">Close</button>
<a href="https://git.poweris.moe/xduplayer.git/" target="_blank">Source</a>
<a href="https://git.poweris.moe/yttt-xdu/XDUPlayer" target="_blank">Source</a>
</div>
</div>`;
document.getElementById("click-catcher").style.cssText = 'display: flex;';


+ 1
- 1
Js/UtageParse.js View File

@@ -36,7 +36,7 @@ class UtageInfo {
//commonFunctions.getFileText(`${this.rootDirectory}XDUData/Utage/Diva/Settings/Scenario.tsv`),
commonFunctions.getFileText(`${this.rootDirectory}XDUData/Utage/Diva/Settings/Sound.tsv`), //5
commonFunctions.getFileText(`${this.rootDirectory}XDUData/Utage/Diva/Settings/Texture.tsv`), //6
commonFunctions.getFileJson(`${this.rootDirectory}Js/BgmLoop.json`), //7
commonFunctions.getFileJson(`${this.rootDirectory}XDUData/Bgm/BgmLoop.json`), //7
commonFunctions.getFileJson(`${this.rootDirectory}Js/Translations/XduQuestCustom.json`), //8
commonFunctions.getFileJson(`${this.rootDirectory}Js/Translations/XduSceneCustom.json`), //9
commonFunctions.getFileText(`${this.rootDirectory}CustomData/Utage/Diva/Settings/CustomCharacter.tsv`), //10


+ 0
- 10
gulpfile.js View File

@@ -26,9 +26,6 @@ const cssToCopy = [
"Css/main.min.css",
"Css/generic.min.css"
];
const jsonFiles = [
"Js/BgmLoop.json",
];
const translations = [
"Js/Translations/**"
];
@@ -50,7 +47,6 @@ gulp.task('dist', gulp.series(
buildCss,
copyCss
),
buildJson,
buildJsonTranslations,
copyHtml,
copyImages,
@@ -117,12 +113,6 @@ function copyCustomData() {
.pipe(gulp.dest('Dist/CustomData'));
}

function buildJson() {
return gulp.src(jsonFiles)
.pipe(jsonmin())
.pipe(gulp.dest('Dist/Js'));
}

function buildJsonTranslations() {
return gulp.src(translations)
.pipe(jsonmin())


Loading…
Cancel
Save