updated links and services in config.js
This commit is contained in:
parent
0bccc1aed7
commit
b9a6869355
1 changed files with 8 additions and 35 deletions
43
config.js
43
config.js
|
|
@ -12,52 +12,25 @@ import {
|
|||
export const items = [
|
||||
{
|
||||
id: 'blog',
|
||||
regex: markdownLinkRegex('melkat.blog'),
|
||||
regex: markdownLinkRegex('dylan.weblog.lol'),
|
||||
getLatest: async () =>
|
||||
getJsonFeedItemTitle('https://melkat.blog/feed.json'),
|
||||
getJsonFeedItemTitle('https://dylan.weblog.lol/feed.json'),
|
||||
},
|
||||
{
|
||||
id: 'pics',
|
||||
regex: markdownLinkRegex('melkat.pics'),
|
||||
regex: markdownLinkRegex('https://dylan.some.pics/'),
|
||||
getLatest: async () =>
|
||||
getJsonFeedItemTitle('https://melkat.pics/feed.json'),
|
||||
},
|
||||
{
|
||||
id: 'lol',
|
||||
regex: markdownLinkRegex('melkat.lol'),
|
||||
getLatest: async () =>
|
||||
getJsonFeedItemContent('https://melkat.lol/feed.json'),
|
||||
},
|
||||
{
|
||||
id: 'maloja',
|
||||
regex: markdownLinkRegex('scrobbles.melkat.dev'),
|
||||
getLatest: async () => getMalojaScrobble('https://scrobbles.melkat.dev'),
|
||||
},
|
||||
{
|
||||
id: 'books',
|
||||
regex: markdownLinkRegex('reads.melkat.dev/profile/melanie'),
|
||||
getLatest: async () =>
|
||||
getReadingBooklogr('https://reads-api.melkat.dev', 'melanie'),
|
||||
getJsonFeedItemTitle('https://dylan.some.pics/feed.json'),
|
||||
},
|
||||
{
|
||||
id: 'letterboxd',
|
||||
regex: markdownLinkRegex('letterboxd.com/zicklepop'),
|
||||
getLatest: async () => getLetterboxdActivity('zicklepop', false),
|
||||
regex: markdownLinkRegex('letterboxd.com/STFUDonny'),
|
||||
getLatest: async () => getLetterboxdActivity('stfudonny', false),
|
||||
},
|
||||
{
|
||||
id: 'trakt',
|
||||
regex: markdownLinkRegex('trakt.tv/users/zicklepop'),
|
||||
regex: markdownLinkRegex('trakt.tv/users/crankle'),
|
||||
getLatest: async () =>
|
||||
getTraktEpisode('zicklepop', 'd0a982626d7793b5cf1857a2128277cc', false),
|
||||
},
|
||||
{
|
||||
id: 'link',
|
||||
regex: markdownLinkRegex('melkat.link'),
|
||||
getLatest: async () => getRSSItemTitle('https://melkat.link/feeds/shared'),
|
||||
},
|
||||
{
|
||||
id: 'dev',
|
||||
regex: markdownLinkRegex('melkat.dev/melanie'),
|
||||
getLatest: async () => getRSSItemTitle('https://melkat.dev/melanie.rss'),
|
||||
getTraktEpisode('crankle', '78e1e87b446901f7e4f0883dd4995cec', false),
|
||||
},
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue