-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add formatter config & update README
- Loading branch information
1 parent
978927a
commit fc4e2e4
Showing
12 changed files
with
2,226 additions
and
2,181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
|
||
[*.js,*.md] | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"arrowParens": "avoid", | ||
"endOfLine": "lf", | ||
"trailingComma": "none", | ||
"useTabs": false, | ||
"semi": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,3 +41,5 @@ yarn build | |
## 授權條款 | ||
|
||
本軟體遵守[MIT](LICENSE)授權條款。 | ||
|
||
所有從本軟體下載的資料版權由萬代南夢宮娛樂所有 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"name": "mltd-asset-downloader", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"private": true, | ||
"scripts": { | ||
"build": "webpack --mode production", | ||
"postbuild": "pkg -t node16-linux-x64,node16-macos-x64,node16-win-x64 -C brotli --out-path dist dist/mltd-asset-downloader.js", | ||
"dev": "webpack --mode development --watch", | ||
"start": "node build/mltd-asset-downloader" | ||
}, | ||
"dependencies": { | ||
"@msgpack/msgpack": "^2.7.0", | ||
"bluebird": "^3.7.2", | ||
"chalk": "^4.1.2", | ||
"cli-progress": "^3.9.0", | ||
"commander": "^8.1.0", | ||
"inquirer": "^8.1.2", | ||
"log-update": "^4.0.0", | ||
"node-fetch": "^2.6.1", | ||
"sprintf-js": "^1.1.2" | ||
}, | ||
"devDependencies": { | ||
"pkg": "^5.3.1", | ||
"webpack": "^5.48.0", | ||
"webpack-cli": "^4.7.2" | ||
} | ||
{ | ||
"name": "mltd-asset-downloader", | ||
"version": "1.0.0", | ||
"license": "MIT", | ||
"private": true, | ||
"scripts": { | ||
"build": "webpack --mode production", | ||
"postbuild": "pkg -t node16-linux-x64,node16-macos-x64,node16-win-x64 -C brotli --out-path dist dist/mltd-asset-downloader.js", | ||
"dev": "webpack --mode development --watch", | ||
"start": "node build/mltd-asset-downloader" | ||
}, | ||
"dependencies": { | ||
"@msgpack/msgpack": "^2.7.0", | ||
"bluebird": "^3.7.2", | ||
"chalk": "^4.1.2", | ||
"cli-progress": "^3.9.0", | ||
"commander": "^8.1.0", | ||
"inquirer": "^8.1.2", | ||
"log-update": "^4.0.0", | ||
"node-fetch": "^2.6.1", | ||
"sprintf-js": "^1.1.2" | ||
}, | ||
"devDependencies": { | ||
"pkg": "^5.3.1", | ||
"webpack": "^5.48.0", | ||
"webpack-cli": "^4.7.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
{ | ||
"checksumFailed": "checksum failed while downloading %s.", | ||
"checksumComplete": "checksum completed.", | ||
"cliBatchSize": "batch size of downloading file, default CPU cores count", | ||
"cliChecksum": "don't download any file and check all downloaded files", | ||
"cliDescription": "asset downloader for THE IDOLM@STER MILLION LIVE! Theater Days (MLTD)", | ||
"cliDryRun": "don't download to disk. This may be helpful to test your network speed ¯\\_(ツ)_/¯", | ||
"cliHelp": "display this help", | ||
"cliLatest": "skip all interactive prompts and download latest assets directly", | ||
"cliOutputPath": "downloaded path", | ||
"cliUsage": "[options]", | ||
"cliVersion": "output the version number", | ||
"confirmDownload": "downloading selected assets, proceed?", | ||
"done": "done", | ||
"downloadAssets": "downloading assets to %s ...", | ||
"downloadComplete": "download completed.", | ||
"downloadManifest": "downloading manifests ...", | ||
"downloadMessage": "choose assets to download", | ||
"eaccesText": "permission denied: accessing %s", | ||
"getLatestManifest": "getting latest manifest from https://api.matsurihi.me ...", | ||
"getManifestList": "getting manifest list from https://api.matsurihi.me ...", | ||
"file": "files", | ||
"sigintText": "aborted by user." | ||
{ | ||
"checksumFailed": "checksum failed while downloading %s.", | ||
"checksumComplete": "checksum completed.", | ||
"checksummingAssets": "checksumming assets in %s ...", | ||
"cliBatchSize": "batch size of downloading file, default CPU cores count", | ||
"cliChecksum": "don't download any file and check all downloaded files", | ||
"cliDescription": "asset downloader for THE IDOLM@STER MILLION LIVE! Theater Days (MLTD)", | ||
"cliDryRun": "don't download to disk. This may be helpful to test your network speed ¯\\_(ツ)_/¯", | ||
"cliHelp": "display this help", | ||
"cliLatest": "skip all interactive prompts and download latest assets directly", | ||
"cliOutputPath": "downloaded path", | ||
"cliUsage": "[options]", | ||
"cliVersion": "output the version number", | ||
"confirmDownload": "downloading selected assets, proceed?", | ||
"done": "done", | ||
"downloadComplete": "download completed.", | ||
"downloadingAssets": "downloading assets to %s ...", | ||
"downloadingManifest": "downloading manifests ...", | ||
"downloadMessage": "choose assets to download", | ||
"eaccesText": "permission denied: accessing %s", | ||
"getLatestManifest": "getting latest manifest from https://api.matsurihi.me ...", | ||
"getManifestList": "getting manifest list from https://api.matsurihi.me ...", | ||
"file": "files", | ||
"sigintText": "aborted by user." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
{ | ||
"checksumFailed": "下載檔案 %s 時校驗失敗。", | ||
"checksumComplete": "檔案校驗完成。", | ||
"cliBatchSize": "一次要下載幾個檔案,預設為CPU核心數", | ||
"cliChecksum": "不下載任何檔案,只檢查已下載的檔案是否正確", | ||
"cliDescription": "偶像大師 百萬人演唱會! 劇場時光 (MLTD) 遊戲資源下載器", | ||
"cliDryRun": "不要把檔案存到硬碟裡。這個功能可能在測網速的時候有用 ¯\\_(ツ)_/¯", | ||
"cliHelp": "顯示這個說明", | ||
"cliLatest": "跳過所有選項並直接下載最新版遊戲資源", | ||
"cliOutputPath": "存檔路徑", | ||
"cliUsage": "[選項]", | ||
"cliVersion": "印出版本號", | ||
"confirmDownload": "是否要開始下載所選的資源?", | ||
"done": "完成", | ||
"downloadAssets": "正在下載檔案到 %s ...", | ||
"downloadComplete": "下載完成。", | ||
"downloadManifest": "正在下載資源列表 ...", | ||
"downloadMessage": "選擇要下載的資源版本", | ||
"eaccesText": "沒有權限存取: %s", | ||
"getLatestManifest": "正在從 https://api.matsurihi.me 取得最新版資源列表 ...", | ||
"getManifestList": "正在從 https://api.matsurihi.me 取得資源列表 ...", | ||
"file": "個檔案", | ||
"sigintText": "被使用者中斷。" | ||
{ | ||
"checksumFailed": "下載檔案 %s 時檢查失敗。", | ||
"checksumComplete": "檔案檢查完成。", | ||
"checksummingAssets": "正在檢查 %s 裡的檔案 ...", | ||
"cliBatchSize": "一次要下載幾個檔案,預設為CPU核心數", | ||
"cliChecksum": "不下載任何檔案,只檢查已下載的檔案是否正確", | ||
"cliDescription": "偶像大師 百萬人演唱會! 劇場時光 (MLTD) 遊戲資源下載器", | ||
"cliDryRun": "不要把檔案存到硬碟裡。這個功能可能在測網速的時候有用 ¯\\_(ツ)_/¯", | ||
"cliHelp": "顯示這個說明", | ||
"cliLatest": "跳過所有選項並直接下載最新版遊戲資源", | ||
"cliOutputPath": "存檔路徑", | ||
"cliUsage": "[選項]", | ||
"cliVersion": "印出版本號", | ||
"confirmDownload": "是否要開始下載所選的資源?", | ||
"done": "完成", | ||
"downloadComplete": "下載完成。", | ||
"downloadingAssets": "正在下載檔案到 %s ...", | ||
"downloadingManifest": "正在下載資源列表 ...", | ||
"downloadMessage": "選擇要下載的資源版本", | ||
"eaccesText": "沒有權限存取 %s 。", | ||
"getLatestManifest": "正在從 https://api.matsurihi.me 取得最新版資源列表 ...", | ||
"getManifestList": "正在從 https://api.matsurihi.me 取得資源列表 ...", | ||
"file": "個檔案", | ||
"sigintText": "被使用者中斷。" | ||
} |
Oops, something went wrong.