-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0e22a3
commit d27a1df
Showing
34 changed files
with
4,640 additions
and
242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,17 @@ | ||
# FHM Crawler - http://freehardmusic.com/ Change Log 📋 | ||
# FHM Crawler (http://freehardmusic.com/) Change Log 📋 | ||
|
||
## v1.0 *(current)* 🔄 | ||
## v1.1 *(current)* 🆕 | ||
|
||
#### 🛠️ Fixes: | ||
- The program has stopped working due breaking changes on the FHM server. Crawler logic has been updated. | ||
|
||
#### 🚀 New Features: | ||
- Added a "Browser (Login)" tab to log in to the FHM website. A log-in is required (only once) for the crawler to work. | ||
|
||
#### 🌟 Improvements: | ||
- Source-code now targets .NET Framework 4.8 | ||
- Default user-interface font changed to Segoe UI (10pt) | ||
- Minor code changes and optimizations. | ||
|
||
## v1.0 🔄 | ||
Initial Release. |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" /> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/> | ||
</startup> | ||
</configuration> | ||
</configuration> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Imports System.Net | ||
|
||
Public Class CookieAwareWebClient | ||
Inherits WebClient | ||
|
||
Public Property Cookies() As New CookieContainer() | ||
|
||
Protected Overrides Function GetWebRequest(address As Uri) As WebRequest | ||
Dim request As WebRequest = MyBase.GetWebRequest(address) | ||
If TypeOf request Is HttpWebRequest Then | ||
Dim httpRequest As HttpWebRequest = DirectCast(request, HttpWebRequest) | ||
httpRequest.CookieContainer = Me.Cookies | ||
End If | ||
Return request | ||
End Function | ||
End Class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.