Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DISMTools 0.6 Preview 4 (Beta 2) #175

Merged
merged 30 commits into from
Oct 12, 2024
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
7e5f583
Update assembly information
CodingWonders Sep 28, 2024
4a388d5
DISMTools Nightly Installer
CodingWonders Sep 28, 2024
0d3cc5f
[PE Helper] Improvements for 0.6 Preview 4 (#173)
CodingWonders Oct 1, 2024
59abb68
DISMTools Nightly Installer
CodingWonders Oct 1, 2024
cea268b
[Requirement] Require .NET 4.8
CodingWonders Oct 1, 2024
7a32bef
DISMTools Nightly Installer
CodingWonders Oct 1, 2024
6f1bed5
[AppEvent] Stop detector temporarily
CodingWonders Oct 1, 2024
59f2333
DISMTools Nightly Installer
CodingWonders Oct 1, 2024
fb4cf34
[AppEvent] Reinstate SizeChanged event
CodingWonders Oct 2, 2024
a6cadd6
DISMTools Nightly Installer
CodingWonders Oct 2, 2024
a61b84d
[Tools] New Registry Hive Control Panel
CodingWonders Oct 5, 2024
3f22206
DISMTools Nightly Installer
CodingWonders Oct 5, 2024
7f240e6
[AppEvent] Restart detector a second time
CodingWonders Oct 6, 2024
881412d
DISMTools Nightly Installer
CodingWonders Oct 6, 2024
6f482bf
[PE Helper] Add README to ISOs
CodingWonders Oct 7, 2024
0741d33
DISMTools Nightly Installer
CodingWonders Oct 7, 2024
0db9a6e
[Info Saver] Use UTF-8 encoding for HTML reports
CodingWonders Oct 8, 2024
2222eeb
DISMTools Nightly Installer
CodingWonders Oct 8, 2024
d786b15
[ISO Creator] Improve reliability of API
CodingWonders Oct 8, 2024
ed2873d
DISMTools Nightly Installer
CodingWonders Oct 8, 2024
19a6309
[Info Saver] Open external links in default web browser
CodingWonders Oct 9, 2024
1e6d764
DISMTools Nightly Installer
CodingWonders Oct 9, 2024
fbcd763
[AppEvent] Delay image detector restart
CodingWonders Oct 9, 2024
e3ce56f
DISMTools Nightly Installer
CodingWonders Oct 9, 2024
a3f4509
[Tools] Add links for languages and FoDs ISO download
CodingWonders Oct 10, 2024
233b334
DISMTools Nightly Installer
CodingWonders Oct 10, 2024
e10e27d
[AppEvent] Improve reporting
CodingWonders Oct 11, 2024
aaa5804
DISMTools Nightly Installer
CodingWonders Oct 11, 2024
89b5b96
[REL] Update What's New section and Update Info files
CodingWonders Oct 11, 2024
341ba86
DISMTools Nightly Installer
CodingWonders Oct 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[Info Saver] Open external links in default web browser
CodingWonders committed Oct 9, 2024
commit 19a6309af8cc82fbb740195782e6483887c1afdd
7 changes: 7 additions & 0 deletions Panels/Get_Ops/InfoSave/InfoSaveResults.vb
Original file line number Diff line number Diff line change
@@ -172,4 +172,11 @@ Public Class InfoSaveResults
End Try
End If
End Sub

Private Sub WebBrowser1_Navigated(sender As Object, e As WebBrowserNavigatedEventArgs) Handles WebBrowser1.Navigated
If e.Url.AbsoluteUri.StartsWith("http", StringComparison.OrdinalIgnoreCase) Or e.Url.AbsoluteUri.StartsWith("ftp", StringComparison.OrdinalIgnoreCase) Then
Process.Start(e.Url.AbsoluteUri)
WebBrowser1.Navigate("file:///" & Application.StartupPath.Replace("\", "/").Trim() & "/report.html")
End If
End Sub
End Class