Skip to content

Commit

Permalink
Merge pull request #27 from Shiroechi/dev
Browse files Browse the repository at this point in the history
v2.1.0
  • Loading branch information
Shiroechi authored Dec 8, 2020
2 parents 92cae20 + c6a202f commit c89b2ff
Show file tree
Hide file tree
Showing 12 changed files with 885 additions and 1,442 deletions.
783 changes: 666 additions & 117 deletions Booru/Booru.cs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Booru/Client/Behoimi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public class Behoimi : Moebooru
public Behoimi(HttpClient httpClient = null) : base("http://behoimi.org/", httpClient)
{
this._PasswordSalt = "meganekko-heaven--{}--";
this._PageLimit = 1000;
}

#endregion Constructor & Destructor
Expand Down
2 changes: 1 addition & 1 deletion Booru/Client/Realbooru.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class Realbooru : Gelbooru02
/// <param name="httpClient">Http client for sending request and recieving response.</param>
public Realbooru(HttpClient httpClient = null) : base("https://realbooru.com/", httpClient)
{

this._PageLimit = 200000;
}

#endregion Constructor & Destructor
Expand Down
2 changes: 1 addition & 1 deletion Booru/Client/Rule34.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Rule34 : Gelbooru02
/// <param name="httpClient">Http client for sending request and recieving response.</param>
public Rule34(HttpClient httpClient = null) : base("https://rule34.xxx/", httpClient)
{

this._PageLimit = 200000;
}

#endregion Constructor & Destructor
Expand Down
1 change: 1 addition & 0 deletions Booru/Client/Safebooru.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public class Safebooru : Gelbooru02
public Safebooru(HttpClient httpClient = null) : base("https://safebooru.org/", httpClient)
{
this.IsSafe = true;
this._PageLimit = 0; // no page limit
}

#endregion Constructor & Destructor
Expand Down
2 changes: 1 addition & 1 deletion Booru/Client/Xbooru.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Xbooru : Gelbooru02
/// <param name="httpClient">Http client for sending request and recieving response.</param>
public Xbooru(HttpClient httpClient = null) : base("https://xbooru.com/", httpClient)
{

this._PageLimit = 0; // no page limit
}

#endregion Constructor & Destructor
Expand Down
Loading

0 comments on commit c89b2ff

Please sign in to comment.