GChan
GChan copied to clipboard
Scrape boards & threads from 4chan. Download images, videos and HTML if desired.
Give the user the choice on whether or not to save thumbnails for threads when the `Save HMTL` setting is in use.
New download managers from `bugfix/imagelink-download-duplicates-raceconditions-threadsafety` branch will allow cancellation of downloads in progress, and stopping future downloads too. A few things are needed: - Need to use a download technique...
In GChan/Utils.cs CreateNewTracker(LoadedData data) a tracker is made by creating one from the url from the db, then setting the properties one by one, this looks nasty and will also...
Is 8kun functionality available yet?
Been wanting to do this for a while, any objections from users/contributors?
Nowadays writing code without tests makes me nervous. Tests are a great way to: - Define the contract of what your code should do. - Ensure you don't break anything....
- Use `var` where possible. - Use `using` on objects where possible to improve memory usage, e.g. WebClient occurences. - Remove rendundant branches. - Fix incorrect naming conventions. - Add...
Couple of things: - How much neater would this be, would it improve readability? - Would it improve or worsen performance? Write a test first to check the performance difference.
We don't have any tests at the moment but at the very least we want to make sure that before any work gets merged it atleast compiles OK. This is...
This application saves data the user inputs like threads/boards to scrape across application closes/opens. Originally it was done in a .txt file, very nasty. Sometime mid 2021 I rewrote that...