diff --git a/README.md b/README.md
index 3f99bd463..e84bef72d 100644
--- a/README.md
+++ b/README.md
@@ -67,6 +67,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* SceneAccess
* SceneFZ
* SceneTime
+ * SDBits
* Shareisland
* Shazbat
* SpeedCD
diff --git a/src/Jackett/Definitions/sdbits.yml b/src/Jackett/Definitions/sdbits.yml
new file mode 100644
index 000000000..ad0fb7e8b
--- /dev/null
+++ b/src/Jackett/Definitions/sdbits.yml
@@ -0,0 +1,92 @@
+---
+ site: sdbits
+ name: SDBits
+ description: "SDBits is a small tracker that focuses on SD movies and tv."
+ language: en-us
+ links:
+ - http://sdbits.org
+
+ caps:
+ categories:
+ 6: Audio # Audio
+ 3: TV/Documentary # Documentary
+ 1: Movies # Movies
+ 4: Audio # Music
+ 5: TV/Sport # Sports
+ 2: TV # TV
+
+ modes:
+ search: [q]
+ tv-search: [q, season, ep]
+
+ login:
+ path: /takeloginn3.php
+ method: post
+ inputs:
+ uname: "{{ .Config.username }}"
+ password: "{{ .Config.password }}"
+ returnto: "/"
+ error:
+ - selector: td.embedded:has(h2:contains("failed")+table)
+ test:
+ path: /browse.php
+ selector: span.smallfont:has(a[href="logout.php"])
+
+ ratio:
+ path: /browse.php
+ selector: span.smallfont:has(a[href="logout.php"])
+ filters:
+ - name: regexp
+ args: "Ratio:[ \u00a0](.*?)\u00a0"
+
+ search:
+ path: /browse.php
+ method: post
+ inputs:
+ $raw: "{{range .Categories}}c{{.}}=1&{{end}}"
+ search: "{{ .Query.Keywords }}"
+ incldead: "1"
+ descriptions: "0"
+ rows:
+ selector: table#torrent-list > tbody > tr[id]
+ fields:
+ title:
+ selector: td:nth-child(3) > b > a
+ category:
+ selector: a[href^="?cat="]
+ attribute: href
+ filters:
+ - name: querystring
+ args: cat
+ details:
+ selector: td:nth-child(3) > b > a
+ attribute: href
+ download:
+ selector: a[href^="download.php?id="]
+ attribute: href
+ size:
+ selector: td:nth-child(6)
+ grabs:
+ selector: td:nth-child(7)
+ filters:
+ - name: regexp
+ args: "(\\d+)"
+ seeders:
+ selector: td:nth-child(8)
+ leechers:
+ selector: td:nth-child(9)
+ date:
+ selector: td:nth-child(5)
+ filters:
+ - name: append
+ args: " ago"
+ imdb:
+ selector: a[href^="http://www.imdb.com/"]
+ attribute: href
+ downloadvolumefactor:
+ case:
+ "a[style=\"color:#000099\"][href^=\"details.php?\"]": "0"
+ "*": "1"
+ uploadvolumefactor:
+ case:
+ "*": "1"
\ No newline at end of file
diff --git a/src/Jackett/Jackett.csproj b/src/Jackett/Jackett.csproj
index df1885da9..5016d5a94 100644
--- a/src/Jackett/Jackett.csproj
+++ b/src/Jackett/Jackett.csproj
@@ -423,6 +423,9 @@
PreserveNewest
+
+ PreserveNewest
+
Designer