Skip to content

Commit

Permalink
Merge pull request Deathspike#68 from Deathspike/release/4.1
Browse files Browse the repository at this point in the history
Release/4.1
  • Loading branch information
Roel van Uden authored May 20, 2017
2 parents b70801b + 80e4560 commit cf77838
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion mangarack-component-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "mangarack-component-common",
"repository": "git:https://github.com/Deathspike/mangarack",
"typings": "dist/default",
"version": "4.1.1",
"version": "4.1.2",
"dependencies": {
"tslib": "1.7.1"
},
Expand Down
2 changes: 1 addition & 1 deletion mangarack-component-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "mangarack-component-core",
"repository": "git:https://github.com/Deathspike/mangarack",
"typings": "dist/default",
"version": "4.1.1",
"version": "4.1.2",
"dependencies": {
"crypto-js": "3.1.9-1",
"tslib": "1.7.1"
Expand Down
6 changes: 3 additions & 3 deletions mangarack-component-core/src/providers/mangafox/series.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function downloadImageAsync($: mio.IHtmlServiceDocument): Promise<mio.IBlob> {
* @return Each artist.
*/
function getArtists($: mio.IHtmlServiceDocument): string[] {
return $('a[href*=\'/search/artist/\']')
return $('#title a[href*=\'/search/artist/\']')
.map((_, a) => $(a).text())
.get();
}
Expand All @@ -74,7 +74,7 @@ function getArtists($: mio.IHtmlServiceDocument): string[] {
* @return Each author.
*/
function getAuthors($: mio.IHtmlServiceDocument): string[] {
return $('a[href*=\'/search/author/\']')
return $('#title a[href*=\'/search/author/\']')
.map((_, a) => $(a).text())
.get();
}
Expand Down Expand Up @@ -114,7 +114,7 @@ function getChapters($: mio.IHtmlServiceDocument): mio.IChapter[] {
* @return Each genre.
*/
function getGenres($: mio.IHtmlServiceDocument): string[] {
return $('a[href*=\'/search/genres/\']')
return $('#title a[href*=\'/search/genres/\']')
.map((_, a) => $(a).text())
.get()
.map(value => remapGenreType[value] || value);
Expand Down
2 changes: 1 addition & 1 deletion mangarack-component-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "mangarack-component-library",
"repository": "git:https://github.com/Deathspike/mangarack",
"typings": "dist/default",
"version": "4.1.1",
"version": "4.1.2",
"dependencies": {
"tslib": "1.7.1"
},
Expand Down
2 changes: 1 addition & 1 deletion mangarack-node-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "mangarack-node-core",
"repository": "git:https://github.com/Deathspike/mangarack",
"typings": "dist/default",
"version": "4.1.1",
"version": "4.1.2",
"dependencies": {
"cheerio": "0.22.0",
"request": "2.81.0",
Expand Down
2 changes: 1 addition & 1 deletion mangarack-node-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "mangarack-node-library",
"repository": "git:https://github.com/Deathspike/mangarack",
"typings": "dist/default",
"version": "4.1.1",
"version": "4.1.2",
"dependencies": {
"tslib": "1.7.1"
},
Expand Down
2 changes: 1 addition & 1 deletion mangarack-runnable-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "mangarack-runnable-cli",
"repository": "git:https://github.com/Deathspike/mangarack",
"typings": "dist/default",
"version": "4.1.1",
"version": "4.1.2",
"dependencies": {
"archiver": "1.3.0",
"gm": "1.22.0",
Expand Down
2 changes: 1 addition & 1 deletion mangarack-runnable-daemon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"name": "mangarack-runnable-daemon",
"repository": "git:https://github.com/Deathspike/mangarack",
"typings": "dist/default",
"version": "4.1.1",
"version": "4.1.2",
"dependencies": {
"basic-auth": "1.1.0",
"body-parser": "1.17.1",
Expand Down
2 changes: 1 addition & 1 deletion mangarack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"main": "src/default",
"name": "mangarack",
"repository": "git:https://github.com/Deathspike/mangarack",
"version": "4.1.1",
"version": "4.1.2",
"bin": {
"mangarack": "./bin/mangarack",
"mangarack-cli": "./bin/mangarack-cli",
Expand Down

0 comments on commit cf77838

Please sign in to comment.