Skip to content

Commit

Permalink
Merge pull request #536 from rix1337/dev
Browse files Browse the repository at this point in the history
v.11.0.13
  • Loading branch information
rix1337 authored Oct 15, 2021
2 parents 53d244a + 58b6b58 commit 49ba9f0
Show file tree
Hide file tree
Showing 9 changed files with 171 additions and 10 deletions.
11 changes: 11 additions & 0 deletions .github/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@
---

### Changelog:
- **11.0.13** Betaversion 2.0.0
von [FeedCrawler Sponsors Helper](https://github.com/rix1337/RSScrawler/wiki/5.-FeedCrawler-Sponsors-Helper) verfügbar
- Damit werden Captchas auf DW wieder automatisch und zuverlässig gelöst
- Einfach über das `chromium`-Tag ziehen und vorher den vorhandenen `/config`-Ordner löschen
- Der API-Key von Anti-Captcha muss noch manuell im Addon eingegeben werden, die restliche Einrichtung funktioniert
bequem automatisch.
- **11.0.13** Fix: Exception bei Hinzufügen von DW-Links über
den [FeedCrawler Sponsors Helper](https://github.com/rix1337/RSScrawler/wiki/5.-FeedCrawler-Sponsors-Helper)
- **11.0.13** Fix: Exception bei fehlenden IMDb-Votes
- **11.0.13** Update auf Bootstrap Icons 1.6.0
- **11.0.13** Update auf Bootstrap 5.1.3
- **11.0.12** IMDb Schreibweise korrigiert
- **11.0.11** Fix: Exception in IMDb-Suche
- **11.0.10** Fix: Exception in IMDb-Suche
Expand Down
9 changes: 7 additions & 2 deletions feedcrawler/sites/shared/content_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,14 @@ def search_imdb(self, desired_rating, feed):
internal.logger.debug(
"%s - Release ignoriert (Film zu alt)" % post.title)
continue
if int("".join(re.findall('\d+', str(imdb_data.data["votes"])))) < 1500:
try:
if int("".join(re.findall('\d+', str(imdb_data.data["votes"])))) < 1500:
internal.logger.debug(
post.title + " - Release ignoriert (Weniger als 1500 IMDb-Votes)")
continue
except KeyError:
internal.logger.debug(
post.title + " - Release ignoriert (Weniger als 1500 IMDb-Votes)")
post.title + " - Release ignoriert (Konnte keine IMDb-Votes finden)")
continue
if float(str(imdb_data.data["rating"]).replace(",", ".")) > desired_rating:
download_links = False
Expand Down
2 changes: 1 addition & 1 deletion feedcrawler/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


def get_version():
return "11.0.12"
return "11.0.13"


def create_version_file():
Expand Down
2 changes: 1 addition & 1 deletion feedcrawler/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -1436,7 +1436,7 @@ def to_download(payload):
global already_added

try:
payload = decode_base64(payload).split("|")
payload = decode_base64(payload.replace("%3D", "=")).split("|")
except:
return "Failed", 400
if payload:
Expand Down
149 changes: 147 additions & 2 deletions feedcrawler/web/css/bootstrap-icons.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
@font-face {
font-family: "bootstrap-icons";
src: url("./fonts/bootstrap-icons.woff2?856008caa5eb66df68595e734e59580d") format("woff2"),
url("./fonts/bootstrap-icons.woff?856008caa5eb66df68595e734e59580d") format("woff");
src: url("./fonts/bootstrap-icons.woff2?45695e8b569b2b0178db2713ca47065c") format("woff2"),
url("./fonts/bootstrap-icons.woff?45695e8b569b2b0178db2713ca47065c") format("woff");
}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
display: inline-block;
Expand Down Expand Up @@ -5497,3 +5498,147 @@
.bi-safe::before {
content: "\f65a";
}

.bi-apple::before {
content: "\f65b";
}

.bi-microsoft::before {
content: "\f65d";
}

.bi-windows::before {
content: "\f65e";
}

.bi-behance::before {
content: "\f65c";
}

.bi-dribbble::before {
content: "\f65f";
}

.bi-line::before {
content: "\f660";
}

.bi-medium::before {
content: "\f661";
}

.bi-paypal::before {
content: "\f662";
}

.bi-pinterest::before {
content: "\f663";
}

.bi-signal::before {
content: "\f664";
}

.bi-snapchat::before {
content: "\f665";
}

.bi-spotify::before {
content: "\f666";
}

.bi-stack-overflow::before {
content: "\f667";
}

.bi-strava::before {
content: "\f668";
}

.bi-wordpress::before {
content: "\f669";
}

.bi-vimeo::before {
content: "\f66a";
}

.bi-activity::before {
content: "\f66b";
}

.bi-easel2-fill::before {
content: "\f66c";
}

.bi-easel2::before {
content: "\f66d";
}

.bi-easel3-fill::before {
content: "\f66e";
}

.bi-easel3::before {
content: "\f66f";
}

.bi-fan::before {
content: "\f670";
}

.bi-fingerprint::before {
content: "\f671";
}

.bi-graph-down-arrow::before {
content: "\f672";
}

.bi-graph-up-arrow::before {
content: "\f673";
}

.bi-hypnotize::before {
content: "\f674";
}

.bi-magic::before {
content: "\f675";
}

.bi-person-rolodex::before {
content: "\f676";
}

.bi-person-video::before {
content: "\f677";
}

.bi-person-video2::before {
content: "\f678";
}

.bi-person-video3::before {
content: "\f679";
}

.bi-person-workspace::before {
content: "\f67a";
}

.bi-radioactive::before {
content: "\f67b";
}

.bi-webcam-fill::before {
content: "\f67c";
}

.bi-webcam::before {
content: "\f67d";
}

.bi-yin-yang::before {
content: "\f67e";
}
4 changes: 2 additions & 2 deletions feedcrawler/web/css/bootstrap.min.css

Large diffs are not rendered by default.

Binary file modified feedcrawler/web/css/fonts/bootstrap-icons.woff
Binary file not shown.
Binary file modified feedcrawler/web/css/fonts/bootstrap-icons.woff2
Binary file not shown.
4 changes: 2 additions & 2 deletions feedcrawler/web/js/bootstrap.bundle.min.js

Large diffs are not rendered by default.

0 comments on commit 49ba9f0

Please sign in to comment.