Skip to content

Commit

Permalink
Remove 8kun code
Browse files Browse the repository at this point in the history
  • Loading branch information
Issung committed Oct 1, 2024
1 parent 5781cf9 commit c24d871
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 279 deletions.
1 change: 0 additions & 1 deletion GChan/Controllers/MainController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,6 @@ private void ScanRoutine()
var idCodeMatch = board.SiteName switch
{
Board_4Chan.SITE_NAME => Regex.Match(url, Thread_4Chan.ID_CODE_REGEX),
Board_8Kun.SITE_NAME => Regex.Match(url, Thread_8Kun.ID_CODE_REGEX),
_ => null,
};

Expand Down
2 changes: 0 additions & 2 deletions GChan/GChan.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,7 @@
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Trackers\Board.cs" />
<Compile Include="Trackers\Sites\Board_8Kun.cs" />
<Compile Include="Trackers\Sites\Board_4Chan.cs" />
<Compile Include="Trackers\Sites\Thread_8Kun.cs" />
<Compile Include="Trackers\Thread.cs" />
<Compile Include="Trackers\Sites\Thread_4Chan.cs" />
<Compile Include="Trackers\Tracker.cs" />
Expand Down
8 changes: 0 additions & 8 deletions GChan/Helpers/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,19 +82,11 @@ public static Tracker CreateNewTracker(string url)
{
return new Thread_4Chan(url);
}
else if (Thread_8Kun.UrlIsThread(url))
{
return new Thread_8Kun(url);
}

if (Board_4Chan.UrlIsBoard(url))
{
return new Board_4Chan(url);
}
else if (Board_8Kun.UrlIsBoard(url))
{
return new Board_8Kun(url);
}

return null;
}
Expand Down
1 change: 0 additions & 1 deletion GChan/TodoList.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Todo items:
Add (proper scaled) icons to all context menus.
Archived thread indicator (with red text/highlight or seperate column (archived yes/no)).
Add support for 8kun.top.
Asynchronous General.DownloadToDir downloads files as 0bytes empty files, fix this immediately.
Make boards view a datagridview and make it use databinding.
Add options to task bar right click
Expand Down
1 change: 0 additions & 1 deletion GChan/Trackers/ImageLink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public class ImageLink : IDownloadable<ImageLink>, IEquatable<ImageLink>
{
/// <summary>
/// For 4chan: Unix timestamp with microseconds at which the image was uploaded.
/// For 8kun: The ID of the post this image belongs to (same as No).
/// </summary>
public long Tim;

Expand Down
62 changes: 0 additions & 62 deletions GChan/Trackers/Sites/Board_8Kun.cs

This file was deleted.

203 changes: 0 additions & 203 deletions GChan/Trackers/Sites/Thread_8Kun.cs

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ GChan is a fork of YChan which aims to improve stability and add extra features

### Supported Websites:
* [4chan.org](http://4chan.org/)
* [8kun.top](https://8kun.top/index.html) [Pending Release]

Requires .NET Framework 4.8 or higher, made with Windows Forms.

Expand Down

0 comments on commit c24d871

Please sign in to comment.