From 58153752f57ad1fe9c9ef8c6c39d0fa94d9d87c3 Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Fri, 15 Sep 2023 13:06:51 +0100 Subject: [PATCH] assorted tcg: remove freeleech and exclusive results (#14692) --- src/Jackett.Common/Definitions/theempire.yml | 23 ++++++++------------ src/Jackett.Common/Definitions/thegeeks.yml | 23 ++++++++------------ src/Jackett.Common/Definitions/theoccult.yml | 23 ++++++++------------ src/Jackett.Common/Definitions/theplace.yml | 23 ++++++++------------ src/Jackett.Common/Definitions/theshow.yml | 23 ++++++++------------ src/Jackett.Common/Definitions/thevault.yml | 23 ++++++++------------ 6 files changed, 54 insertions(+), 84 deletions(-) diff --git a/src/Jackett.Common/Definitions/theempire.yml b/src/Jackett.Common/Definitions/theempire.yml index c341d4bf9..e50deadd6 100644 --- a/src/Jackett.Common/Definitions/theempire.yml +++ b/src/Jackett.Common/Definitions/theempire.yml @@ -59,10 +59,6 @@ settings: type: info label: How to get the Cookie default: "
  1. Login to this tracker with your browser
  2. Open the DevTools panel by pressing F12
  3. Select the Network tab
  4. Click on the Doc button (Chrome Browser) or HTML button (FireFox)
  5. Refresh the page by pressing F5
  6. Click on the first row entry
  7. Select the Headers tab on the Right panel
  8. Find 'cookie:' in the Request Headers section
  9. Select and Copy the whole cookie string (everything after 'cookie: ') and Paste here.
" - - name: freeleech - type: checkbox - label: Search freeleech only - default: false - name: sort type: select label: Sort requested from site @@ -83,6 +79,10 @@ settings: type: info label: Results Per Page default: For best results, change the Torrents per page: setting to 100 on your account profile. + - name: info_tcg + type: info + label: Message from the TCG staff + default: We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett. login: method: cookie @@ -98,14 +98,14 @@ search: inputs: $raw: "{{ range .Categories }}filter_cat[{{.}}]=1&{{end}}" search: "{{ .Keywords }}" - # 0 active, 1 incldead, 2 onlydead, 3 free, 4 exclusive, 5 neutral - incldead: "{{ if .Config.freeleech }}3{{ else }}1{{ end }}" + # 0 active, 1 incldead, 2 onlydead, 3 free (not used by request), 4 exclusive, 5 neutral + incldead: 1 titleonly: 1 # 0 Exact, 1 Fuzzy, 3 Parsed, 4 Simple # 2 Pure is not used nonboolean: 0 rows: - selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]) + selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]):not(:has(font[color="green"])):not(:has(font[color="blue"])):not(:contains("*TCG*")) fields: category: @@ -143,14 +143,9 @@ search: - name: dateparse args: "yyyy-MM-ddHH:mm:ss" downloadvolumefactor: - case: - "font[color=\"green\"]": 0 - "font[color=\"blue\"]": 0 - "*": 1 + text: 1 uploadvolumefactor: - case: - "font[color=\"green\"]": 0 - "*": 1 + text: 1 minimumratio: text: 1.0 minimumseedtime: diff --git a/src/Jackett.Common/Definitions/thegeeks.yml b/src/Jackett.Common/Definitions/thegeeks.yml index 574a68118..a95ba908b 100644 --- a/src/Jackett.Common/Definitions/thegeeks.yml +++ b/src/Jackett.Common/Definitions/thegeeks.yml @@ -102,10 +102,6 @@ settings: type: info label: How to get the Cookie default: "
  1. Login to this tracker with your browser
  2. Open the DevTools panel by pressing F12
  3. Select the Network tab
  4. Click on the Doc button (Chrome Browser) or HTML button (FireFox)
  5. Refresh the page by pressing F5
  6. Click on the first row entry
  7. Select the Headers tab on the Right panel
  8. Find 'cookie:' in the Request Headers section
  9. Select and Copy the whole cookie string (everything after 'cookie: ') and Paste here.
" - - name: freeleech - type: checkbox - label: Search freeleech only - default: false - name: sort type: select label: Sort requested from site @@ -126,6 +122,10 @@ settings: type: info label: Results Per Page default: For best results, change the Torrents per page: setting to 100 on your account profile. + - name: info_tcg + type: info + label: Message from TCG staff + default: We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett. login: method: cookie @@ -141,14 +141,14 @@ search: inputs: $raw: "{{ range .Categories }}filter_cat[{{.}}]=1&{{end}}" search: "{{ .Keywords }}" - # 0 active, 1 incldead, 2 onlydead, 3 free, 4 exclusive, 5 neutral - incldead: "{{ if .Config.freeleech }}3{{ else }}1{{ end }}" + # 0 active, 1 incldead, 2 onlydead, 3 free (not used by request), 4 exclusive, 5 neutral + incldead: 1 titleonly: 1 # 0 Exact, 1 Fuzzy, 3 Parsed, 4 Simple # 2 Pure is not used nonboolean: 0 rows: - selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]) + selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]):not(:has(font[color="green"])):not(:has(font[color="blue"])):not(:contains("*TCG*")) fields: category: @@ -186,14 +186,9 @@ search: leechers: selector: td:nth-child(10) downloadvolumefactor: - case: - "font[color=\"green\"]": 0 - "font[color=\"blue\"]": 0 - "*": 1 + text: 1 uploadvolumefactor: - case: - "font[color=\"green\"]": 0 - "*": 1 + text: 1 minimumratio: text: 1.0 minimumseedtime: diff --git a/src/Jackett.Common/Definitions/theoccult.yml b/src/Jackett.Common/Definitions/theoccult.yml index 81b74f47f..f48780c6a 100644 --- a/src/Jackett.Common/Definitions/theoccult.yml +++ b/src/Jackett.Common/Definitions/theoccult.yml @@ -75,10 +75,6 @@ settings: type: info label: How to get the Cookie default: "
  1. Login to this tracker with your browser
  2. Open the DevTools panel by pressing F12
  3. Select the Network tab
  4. Click on the Doc button (Chrome Browser) or HTML button (FireFox)
  5. Refresh the page by pressing F5
  6. Click on the first row entry
  7. Select the Headers tab on the Right panel
  8. Find 'cookie:' in the Request Headers section
  9. Select and Copy the whole cookie string (everything after 'cookie: ') and Paste here.
" - - name: freeleech - type: checkbox - label: Search freeleech only - default: false - name: sort type: select label: Sort requested from site @@ -99,6 +95,10 @@ settings: type: info label: Results Per Page default: For best results, change the Torrents per page: setting to 100 on your account profile. + - name: info_tcg + type: info + label: Message from the TCG staff + default: We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett. login: method: cookie @@ -114,14 +114,14 @@ search: inputs: $raw: "{{ range .Categories }}filter_cat[{{.}}]=1&{{end}}" search: "{{ .Keywords }}" - # 0 active, 1 incldead, 2 onlydead, 3 free, 4 exclusive, 5 neutral - incldead: "{{ if .Config.freeleech }}3{{ else }}1{{ end }}" + # 0 active, 1 incldead, 2 onlydead, 3 free (not used by request), 4 exclusive, 5 neutral + incldead: 1 titleonly: 1 # 0 Exact, 1 Fuzzy, 3 Parsed, 4 Simple # 2 Pure is not used nonboolean: 0 rows: - selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]) + selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]):not(:has(font[color="green"])):not(:has(font[color="blue"])):not(:contains("*TCG*")) fields: category: @@ -159,14 +159,9 @@ search: leechers: selector: td:nth-child(10) downloadvolumefactor: - case: - "font[color=\"green\"]": 0 - "font[color=\"blue\"]": 0 - "*": 1 + text: 1 uploadvolumefactor: - case: - "font[color=\"green\"]": 0 - "*": 1 + text: 1 minimumratio: text: 1.0 minimumseedtime: diff --git a/src/Jackett.Common/Definitions/theplace.yml b/src/Jackett.Common/Definitions/theplace.yml index f8247c7a2..2a61a6ee2 100644 --- a/src/Jackett.Common/Definitions/theplace.yml +++ b/src/Jackett.Common/Definitions/theplace.yml @@ -56,10 +56,6 @@ settings: type: info label: How to get the Cookie default: "
  1. Login to this tracker with your browser
  2. Open the DevTools panel by pressing F12
  3. Select the Network tab
  4. Click on the Doc button (Chrome Browser) or HTML button (FireFox)
  5. Refresh the page by pressing F5
  6. Click on the first row entry
  7. Select the Headers tab on the Right panel
  8. Find 'cookie:' in the Request Headers section
  9. Select and Copy the whole cookie string (everything after 'cookie: ') and Paste here.
" - - name: freeleech - type: checkbox - label: Search freeleech only - default: false - name: sort type: select label: Sort requested from site @@ -80,6 +76,10 @@ settings: type: info label: Results Per Page default: For best results, change the Torrents per page: setting to 100 on your account profile. + - name: info_tcg + type: info + label: Message from the TCG staff + default: We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett. login: method: cookie @@ -95,14 +95,14 @@ search: inputs: $raw: "{{ range .Categories }}filter_cat[{{.}}]=1&{{end}}" search: "{{ .Keywords }}" - # 0 active, 1 incldead, 2 onlydead, 3 free, 4 exclusive, 5 neutral - incldead: "{{ if .Config.freeleech }}3{{ else }}1{{ end }}" + # 0 active, 1 incldead, 2 onlydead, 3 free (not used by request), 4 exclusive, 5 neutral + incldead: 1 titleonly: 1 # 0 Exact, 1 Fuzzy, 3 Parsed, 4 Simple # 2 Pure is not used nonboolean: 0 rows: - selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]) + selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]):not(:has(font[color="green"])):not(:has(font[color="blue"])):not(:contains("*TCG*")) fields: category: @@ -140,14 +140,9 @@ search: leechers: selector: td:nth-child(10) downloadvolumefactor: - case: - "font[color=\"green\"]": 0 - "font[color=\"blue\"]": 0 - "*": 1 + text: 1 uploadvolumefactor: - case: - "font[color=\"green\"]": 0 - "*": 1 + text: 1 minimumratio: text: 1.0 minimumseedtime: diff --git a/src/Jackett.Common/Definitions/theshow.yml b/src/Jackett.Common/Definitions/theshow.yml index 4a69097a2..8e50f9b4b 100644 --- a/src/Jackett.Common/Definitions/theshow.yml +++ b/src/Jackett.Common/Definitions/theshow.yml @@ -76,10 +76,6 @@ settings: type: info label: How to get the Cookie default: "
  1. Login to this tracker with your browser
  2. Open the DevTools panel by pressing F12
  3. Select the Network tab
  4. Click on the Doc button (Chrome Browser) or HTML button (FireFox)
  5. Refresh the page by pressing F5
  6. Click on the first row entry
  7. Select the Headers tab on the Right panel
  8. Find 'cookie:' in the Request Headers section
  9. Select and Copy the whole cookie string (everything after 'cookie: ') and Paste here.
" - - name: freeleech - type: checkbox - label: Search freeleech only - default: false - name: sort type: select label: Sort requested from site @@ -100,6 +96,10 @@ settings: type: info label: Results Per Page default: For best results, change the Torrents per page: setting to 100 on your account profile. + - name: info_tcg + type: info + label: Message from TCG staff + default: We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett. login: method: cookie @@ -115,14 +115,14 @@ search: inputs: $raw: "{{ range .Categories }}filter_cat[{{.}}]=1&{{end}}" search: "{{ .Keywords }}" - # 0 active, 1 incldead, 2 onlydead, 3 free, 4 exclusive, 5 neutral - incldead: "{{ if .Config.freeleech }}3{{ else }}1{{ end }}" + # 0 active, 1 incldead, 2 onlydead, 3 free (not used by request), 4 exclusive, 5 neutral + incldead: 1 titleonly: 1 # 0 Exact, 1 Fuzzy, 3 Parsed, 4 Simple # 2 Pure is not used nonboolean: 0 rows: - selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]) + selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]):not(:has(font[color="green"])):not(:has(font[color="blue"])):not(:contains("*TCG*")) fields: category: @@ -160,14 +160,9 @@ search: leechers: selector: td:nth-child(10) downloadvolumefactor: - case: - "font[color=\"green\"]": 0 - "font[color=\"blue\"]": 0 - "*": 1 + text: 1 uploadvolumefactor: - case: - "font[color=\"green\"]": 0 - "*": 1 + text: 1 minimumratio: text: 1.0 minimumseedtime: diff --git a/src/Jackett.Common/Definitions/thevault.yml b/src/Jackett.Common/Definitions/thevault.yml index 57006e3ea..bd56323ef 100644 --- a/src/Jackett.Common/Definitions/thevault.yml +++ b/src/Jackett.Common/Definitions/thevault.yml @@ -74,10 +74,6 @@ settings: type: info label: How to get the Cookie default: "
  1. Login to this tracker with your browser
  2. Open the DevTools panel by pressing F12
  3. Select the Network tab
  4. Click on the Doc button (Chrome Browser) or HTML button (FireFox)
  5. Refresh the page by pressing F5
  6. Click on the first row entry
  7. Select the Headers tab on the Right panel
  8. Find 'cookie:' in the Request Headers section
  9. Select and Copy the whole cookie string (everything after 'cookie: ') and Paste here.
" - - name: freeleech - type: checkbox - label: Search freeleech only - default: false - name: sort type: select label: Sort requested from site @@ -98,6 +94,10 @@ settings: type: info label: Results Per Page default: For best results, change the Torrents per page: setting to 100 on your account profile. + - name: info_tcg + type: info + label: Message from the TCG staff + default: We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett. login: method: cookie @@ -113,14 +113,14 @@ search: inputs: $raw: "{{ range .Categories }}filter_cat[{{.}}]=1&{{end}}" search: "{{ .Keywords }}" - # 0 active, 1 incldead, 2 onlydead, 3 free, 4 exclusive, 5 neutral - incldead: "{{ if .Config.freeleech }}3{{ else }}1{{ end }}" + # 0 active, 1 incldead, 2 onlydead, 3 free (not used by request), 4 exclusive, 5 neutral + incldead: 1 titleonly: 1 # 0 Exact, 1 Fuzzy, 3 Parsed, 4 Simple # 2 Pure is not used nonboolean: 0 rows: - selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]) + selector: table[border="0"] > tbody > tr.ttable:has(a[href^="browse.php?cat="]):not(:has(font[color="green"])):not(:has(font[color="blue"])):not(:contains("*TCG*")) fields: category: @@ -158,14 +158,9 @@ search: leechers: selector: td:nth-child(10) downloadvolumefactor: - case: - "font[color=\"green\"]": 0 - "font[color=\"blue\"]": 0 - "*": 1 + text: 1 uploadvolumefactor: - case: - "font[color=\"green\"]": 0 - "*": 1 + text: 1 minimumratio: text: 1.0 minimumseedtime: