mirror of
https://github.com/Jackett/Jackett
synced 2025-01-03 13:46:10 +00:00
add mactorrentsdownload a public site. resolves #12396
This commit is contained in:
parent
a3b2ad054c
commit
88ab9db461
2 changed files with 78 additions and 0 deletions
|
@ -86,6 +86,7 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
|||
* LimeTorrents
|
||||
* LinuxTracker
|
||||
* MacTorrents
|
||||
* Mac Torrents Download
|
||||
* MegaPeer
|
||||
* MejorTorrent
|
||||
* Mikan
|
||||
|
|
77
src/Jackett.Common/Definitions/mactorrentsdownload.yml
Normal file
77
src/Jackett.Common/Definitions/mactorrentsdownload.yml
Normal file
|
@ -0,0 +1,77 @@
|
|||
---
|
||||
id: mactorrentsdownload
|
||||
name: Mac Torrents Download
|
||||
description: "Mac Torrents Download is a Public tracker for Mac software"
|
||||
language: en-US
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- https://www.torrentmac.net/
|
||||
|
||||
caps:
|
||||
categorymappings:
|
||||
- {id: "applications", cat: PC/Mac, desc: "Apps"}
|
||||
- {id: "games", cat: PC/Games, desc: Games}
|
||||
- {id: "uncategorized", cat: Other, desc: Uncategorized}
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
download:
|
||||
selectors:
|
||||
- selector: a[href$=".torrent"]
|
||||
attribute: href
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: /
|
||||
inputs:
|
||||
s: "{{ .Keywords }}"
|
||||
|
||||
rows:
|
||||
selector: article[id^="post-"]
|
||||
filters:
|
||||
- name: andmatch
|
||||
|
||||
fields:
|
||||
category:
|
||||
selector: a[href*="/category/"]
|
||||
attribute: href
|
||||
filters:
|
||||
- name: split
|
||||
args: ["/", 4]
|
||||
title:
|
||||
selector: a
|
||||
attribute: title
|
||||
details:
|
||||
selector: a
|
||||
attribute: href
|
||||
download:
|
||||
selector: a
|
||||
attribute: href
|
||||
poster:
|
||||
selector: img
|
||||
attribute: src
|
||||
description:
|
||||
selector: section p
|
||||
date:
|
||||
selector: time
|
||||
attribute: datetime
|
||||
filters:
|
||||
- name: append
|
||||
args: " -07:00" # PDT
|
||||
- name: dateparse
|
||||
args: "2006-01-02 -07:00"
|
||||
size:
|
||||
text: "512 MB"
|
||||
seeders:
|
||||
text: 1
|
||||
leechers:
|
||||
text: 1
|
||||
downloadvolumefactor:
|
||||
text: 0
|
||||
uploadvolumefactor:
|
||||
text: 1
|
||||
# WordPress 4.9.18
|
Loading…
Reference in a new issue