Skip to content

Commit 442ea9f

Browse files
committed
Updated version to 0.3 (Beta)
1 parent 354837e commit 442ea9f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

LogSlothParser/LogSlothParser.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = '.\LogSlothParser.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.2.0'
15+
ModuleVersion = '0.3.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = @('Desktop', 'Core')

LogSlothParser/LogSlothParser.psm1

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ Function Get-LogSlothType {
197197

198198
Write-Verbose "Get-LogSlothType Function is beginning"
199199
If (-Not ($skipWarning)) {
200-
Write-Warning "LogSlothParser 0.2 is Currently in Beta and may not function at 100% (Get-LogSlothType)"
200+
Write-Warning "LogSlothParser 0.3 is Currently in Beta and may not function at 100% (Get-LogSlothType)"
201201
}
202202

203203
If ($logFile) {
@@ -328,7 +328,7 @@ Function Import-LogSloth {
328328

329329
Write-Verbose "Import-LogSloth Function is beginning"
330330
If (-Not ($skipWarning)) {
331-
Write-Warning "LogSlothParser 0.2 is Currently in Beta and may not function at 100% (Import-LogSloth)"
331+
Write-Warning "LogSlothParser 0.3 is Currently in Beta and may not function at 100% (Import-LogSloth)"
332332
}
333333

334334
If ($logFile) {
@@ -549,7 +549,7 @@ Function Import-LogSlothSanitized {
549549

550550

551551
If (-Not ($skipWarning)) {
552-
Write-Warning "LogSlothParser 0.2 is Currently in Beta and may not function at 100% (Import-LogSlothSanitized)"
552+
Write-Warning "LogSlothParser 0.3 is Currently in Beta and may not function at 100% (Import-LogSlothSanitized)"
553553
}
554554

555555
If ($logFile) {
@@ -997,7 +997,7 @@ Function ConvertTo-LogSlothHTML {
997997

998998
Write-Verbose "ConvertTo-LogSlothHTML Function is beginning"
999999
If (-Not ($skipWarning)) {
1000-
Write-Warning "LogSlothParser 0.2 is Currently in Beta and may not function at 100% (Export-LogSlothLog)"
1000+
Write-Warning "LogSlothParser 0.3 is Currently in Beta and may not function at 100% (Export-LogSlothLog)"
10011001
}
10021002

10031003
Write-Verbose "Excluding Meta Properties from Export"
@@ -1043,7 +1043,7 @@ Function ConvertTo-LogSlothHTML {
10431043
}
10441044

10451045
[System.Collections.ArrayList]$links = @()
1046-
[void]$links.Add('<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.css">')
1046+
[void]$links.Add('<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.34/css/jquery.dataTables.css">')
10471047

10481048
[System.Collections.Specialized.OrderedDictionary]$dataTableOptions = @{
10491049
}
@@ -1056,7 +1056,7 @@ Function ConvertTo-LogSlothHTML {
10561056

10571057
[System.Collections.ArrayList]$scripts = @()
10581058
[void]$scripts.Add('<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>')
1059-
[void]$scripts.Add('<script src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.js"></script>')
1059+
[void]$scripts.Add('<script src="https://cdn.datatables.net/1.10.34/js/jquery.dataTables.js"></script>')
10601060
[void]$scripts.Add("<script> `$(document).ready( function () { `$('#LogTable').DataTable( $($dataTableOptions | ConvertTo-Json) ); } );</script>")
10611061

10621062
[System.Collections.ArrayList]$thead = @()
@@ -1135,7 +1135,7 @@ Function ConvertTo-LogSlothMarkdown {
11351135

11361136
Write-Verbose "ConvertTo-LogSlothMarkdown Function is beginning"
11371137
If (-Not ($skipWarning)) {
1138-
Write-Warning "LogSlothParser 0.2 is Currently in Beta and may not function at 100% (Export-LogSlothLog)"
1138+
Write-Warning "LogSlothParser 0.3 is Currently in Beta and may not function at 100% (Export-LogSlothLog)"
11391139
}
11401140

11411141
Write-Verbose "Excluding Meta Properties from Export"
@@ -1192,7 +1192,7 @@ Function Export-LogSlothLog {
11921192

11931193
Write-Verbose "Export-LogSlothLog Function is beginning"
11941194
If (-Not ($skipWarning)) {
1195-
Write-Warning "LogSlothParser 0.2 is Currently in Beta and may not function at 100% (Export-LogSlothLog)"
1195+
Write-Warning "LogSlothParser 0.3 is Currently in Beta and may not function at 100% (Export-LogSlothLog)"
11961196
}
11971197

11981198
Switch ($Format) {

0 commit comments

Comments
 (0)