forked from tardypad/sailfishos-daily-comics
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 5 new strips, fix one old one (#108)
* Add 5 new strips, fix one old one * [plugins/thefarside] Delete directory For details see #108 (comment) * [plugins/keskenkasvuisia/info.json] Omit Instagram page as home-page * [plugins/lassijaleevi/info.json] Use Suomi Wikipedia page as home-page --------- Co-authored-by: olf <Olf0@users.noreply.github.com>
- Loading branch information
Showing
18 changed files
with
71 additions
and
6 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 @@ | ||
function(page) { | ||
var regex = /"assets":\s*{\s*"featured":\s*{\s*"url":\s*"([^ "]+)/; | ||
var match = regex.exec(page); | ||
return match[1]; | ||
} |
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,11 @@ | ||
{ | ||
"name": "Bizarro", | ||
"color": "cc3e32", | ||
"language": "en", | ||
"authors": [ | ||
"Dan Piraro", | ||
"Wayne \"Wayno\" Honath" | ||
], | ||
"homepage": "https://comicskingdom.com/bizarro/about", | ||
"stripSource": "https://comicskingdom.com/bizarro/" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 @@ | ||
function(page) { | ||
var regex = /<img[^>]+srcset="(\/\/[^ "]+)/; | ||
var match = regex.exec(page); | ||
return "https:" + match[1]; | ||
} |
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,12 @@ | ||
{ | ||
"name": "Harald Hirmuinen", | ||
"color": "e7c5aa", | ||
"language": "fi", | ||
"authors": [ | ||
// These are reruns of strips by either of these, both have passed on | ||
"Dik Browne", | ||
"Chris Browne" | ||
], | ||
"homepage": "https://www.hs.fi/haraldhirmuinen/", | ||
"stripSource": "https://www.hs.fi/haraldhirmuinen/" | ||
} |
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,7 +1,7 @@ | ||
function(page) { | ||
var regex = /data-image="[^"]*\/([^"\/]*).jpg"/; | ||
var regex = /<img\s+class="diks-card__image"\s+src="([^"]+)/; | ||
var match = regex.exec(page); | ||
var hash = match[1] | ||
var hash = match[1]; | ||
|
||
return "http://is.mediadelivery.fi/img/1920/" + hash + ".jpg"; | ||
return hash.replace(/FREE_\d+/,"FREE"); | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 @@ | ||
function(page) { | ||
var regex = /<img[^>]+srcset="(\/\/[^ "]+)/; | ||
var match = regex.exec(page); | ||
return "https:" + match[1]; | ||
} |
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,11 @@ | ||
{ | ||
"name": "Keskenkasvuisia", | ||
"color": "7eb97f", | ||
"language": "fi", | ||
"authors": [ | ||
"Aurora Raiskinen", | ||
"Jyrki Vainio" | ||
], | ||
"homepage": "https://www.hs.fi/sarjakuvat/keskenkasvuisia/", | ||
"stripSource": "https://www.hs.fi/sarjakuvat/keskenkasvuisia/" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 @@ | ||
function(page) { | ||
var regex = /<img[^>]+srcset="(\/\/[^ "]+)/; | ||
var match = regex.exec(page); | ||
return "https:" + match[1]; | ||
} |
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,10 @@ | ||
{ | ||
"name": "Lassi ja Leevi", | ||
"color": "ec1d23", | ||
"language": "fi", | ||
"authors": [ | ||
"Bill Watterson" | ||
], | ||
"homepage": "https://fi.wikipedia.org/wiki/Lassi_ja_Leevi", | ||
"stripSource": "https://www.hs.fi/lassijaleevi/" | ||
} |