Skip to content

Commit

Permalink
Attempt on fixing #162
Browse files Browse the repository at this point in the history
  • Loading branch information
izu-co committed Nov 13, 2021
1 parent bd7cfbf commit 768f833
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 53 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ token.yml
*.user.yml
lib
test.*
updates.json
updates.json
cr_token.yml
2 changes: 1 addition & 1 deletion crunchy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ async function getMedia(mMeta: CrunchyEpMeta){
appstore.fn = ([
['title', mMeta.episodeTitle],
['episode', mMeta.episodeNumber],
['service', 'Crunchyroll'],
['service', 'CR'],
['showTitle', mMeta.seasonTitle],
['season', mMeta.seasonID]
] as [yargs.AvailableFilenameVars, string|number][]).map((a): Variable => {
Expand Down
90 changes: 45 additions & 45 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "multi-downloader-nx",
"short_name": "aniDL",
"version": "1.0.3",
"version": "1.0.4",
"description": "Download videos from Funimation or Crunchyroll via cli",
"keywords": [
"download",
Expand Down Expand Up @@ -30,7 +30,7 @@
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"got": "^11.7.0",
"hls-download": "^2.6.4",
"hls-download": "^2.6.5",
"iso-639": "^0.2.2",
"lookpath": "^1.1.0",
"m3u8-parsed": "^1.3.0",
Expand All @@ -40,10 +40,10 @@
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^16.11.6",
"@types/node": "^16.11.7",
"@types/yargs": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^7.30.0",
"pkg": "^5.4.1",
"removeNPMAbsolutePaths": "^2.0.0",
Expand All @@ -63,4 +63,4 @@
"pretest": "npm run tsc",
"test": "cd lib && node modules/build win64 && node modules/build linux64 && node modules/build macos64"
}
}
}
1 change: 1 addition & 0 deletions tsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const ignore = [
path.join('bin', 'mkvtoolnix'),
path.join('config', 'token.yml'),
path.join('config', 'updates.json'),
path.join('config', 'cr_token.yml'),
'.eslint',
].map(a => path.join(__dirname, a));

Expand Down

0 comments on commit 768f833

Please sign in to comment.