Skip to content

Commit 29d0502

Browse files
committed
Update readme and signing
1 parent 1fdf0a3 commit 29d0502

5 files changed

Lines changed: 9 additions & 7 deletions

File tree

FiddlerImportNetlog/FiddlerInterface.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
namespace FiddlerImportNetlog
1010
{
1111
[ProfferFormat("NetLog JSON",
12-
"Chromium's JSON-based event log format (v1.3.5.0). See https://textslashplain.com/2020/01/17/capture-network-logs-from-edge-and-chrome/ for more info.",
12+
"Chromium's JSON-based event log format (v1.3.5.1). See https://textslashplain.com/2020/01/17/capture-network-logs-from-edge-and-chrome/ for more info.",
1313
// We handle import of JSON files, whether uncompressed, or compressed with ZIP or GZ. I'm not completely sure I remember the implications
1414
// of declaring .gz here, nor why .zip isn't mentioned. Is this about the drag/drop import feature?
1515
".json;.gz"

FiddlerImportNetlog/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[assembly: AssemblyCopyright("Copyright ©2024 Eric Lawrence")]
77
[assembly: System.Resources.NeutralResourcesLanguage("en-US")]
88
[assembly: ComVisible(false)]
9-
[assembly: AssemblyVersion("1.3.5.0")] // ALWAYS UPDATE THE VERSION in the [ProfferFormat] attribute in FiddlerInterface.cs to match!
9+
[assembly: AssemblyVersion("1.3.5.1")] // ALWAYS UPDATE THE VERSION in the [ProfferFormat] attribute in FiddlerInterface.cs to match!
1010
[assembly: Fiddler.RequiredVersion("4.6.0.0")]
1111

1212

@@ -20,7 +20,7 @@ HTTP_STREAM_JOB has a binding between the request and the socket. Hook them up s
2020
--> source_dependency = 1701 (URL_REQUEST)
2121
*/
2222

23-
// v.1.3.5
23+
// v.1.3.5.1
2424
// Add support for truncated file recovery.
2525

2626
// v1.3.4.5

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# FiddlerImportNetlog
22

3-
Import [Chromium NetLog](https://www.chromium.org/developers/design-documents/network-stack/netlog) log files into Fiddler.
3+
I wrote a [Blog Post](https://www.telerik.com/blogs/building-fiddler-importers) that explains this extension.
44

5-
The NetLog format is somewhat lossy (e.g. request body bytes are never included, and credentials and response bodies *may* be excluded) so full-fidelity import is not generally possible.
5+
It allows you to import [Chromium NetLog](https://www.chromium.org/developers/design-documents/network-stack/netlog) traffic captures into Fiddler.
6+
7+
Note that the NetLog format is somewhat lossy (e.g. request body bytes are never included, and credentials and response bodies *may* be excluded) so full-fidelity import is not generally possible.
68

79
If you'd just like to add this importer without building it yourself, you can [Download it here](https://bayden.com/dl/FiddlerImportNetLog.exe)

installer/Addon.ver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.5.0
1+
1.3.5.1

installer/go.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
@title FiddlerImportNetLog Builder
22
@cd C:\src\FiddlerImportNetLog\installer
3+
@C:\tools\signtool sign /as /d "Fiddler NetLog Importer" /du "https://textslashplain.com/" /n "Eric Lawrence" /tr http://timestamp.digicert.com /td SHA256 /fd SHA256 C:\src\FiddlerImportNetLog\FiddlerImportNetLog\bin\release\FiddlerImportNetLog.dll
34
@filever C:\src\FiddlerImportNetLog\FiddlerImportNetLog\bin\release\FiddlerImportNetLog.dll > Addon.ver
45
@C:\src\NSIS\MakeNSIS.EXE /V3 FiddlerImportNetLog.nsi
56
@CHOICE /M "Would you like to sign?"
67
@if %ERRORLEVEL%==2 goto done
78
:sign
8-
@C:\tools\signtool sign /d "Fiddler NetLog Importer" /du "https://textslashplain.com/" /n "Eric Lawrence" /t http://timestamp.digicert.com /fd SHA1 FiddlerImportNetLog.exe
99
@C:\tools\signtool sign /as /d "Fiddler NetLog Importer" /du "https://textslashplain.com/" /n "Eric Lawrence" /tr http://timestamp.digicert.com /td SHA256 /fd SHA256 FiddlerImportNetLog.exe
1010
@if %ERRORLEVEL%==-1 goto sign
1111
@:upload

0 commit comments

Comments
 (0)