Skip to content

Commit 7a51607

Browse files
committed
1.1.3.8 Changes
1 parent 05fb009 commit 7a51607

File tree

4 files changed

+104
-99
lines changed

4 files changed

+104
-99
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.1.3.8 - 22/03/2024
2+
- Unrecognized BBCode tags are no longer erased in HTML output. Jokes such as \[REDACTED\] can now be preserved.
3+
- Small optimizations in repetitive code sequences that should lead to a token speedup when translating to HTML.
4+
15
# 1.1.3.7 - 11/03/2024
26
- Messages with corrupted or non-sequential timestamps are no longer given their own files when dividing by date.
37
- Destination subdirectories left empty after clearing empty output files from them are now also trimmed along with their files.

FLogS.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<UseWPF>true</UseWPF>
88
<SignAssembly>False</SignAssembly>
99
<Title>FLogS</Title>
10-
<Version>1.1.3.7</Version>
10+
<Version>1.1.3.8</Version>
1111
<IncludeSymbols>True</IncludeSymbols>
1212
<ErrorReport>none</ErrorReport>
1313
<UseWindowsForms>True</UseWindowsForms>

MainWindow.xaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<ProgressBar x:Name="FileProgress" Width="600" Height="25" HorizontalAlignment="Center" Minimum="0" Maximum="100"/>
9595
</StackPanel>
9696
</Grid>
97-
<Label x:Name="FileVersionNumber" Content="FLogS — Version 1.1.3.7 © Taica, 2024" HorizontalAlignment="Right" FontStyle="Italic" Margin="10,30" FontWeight="Thin"/>
97+
<Label x:Name="FileVersionNumber" Content="FLogS — Version 1.1.3.8 © Taica, 2024" HorizontalAlignment="Right" FontStyle="Italic" Margin="10,30" FontWeight="Thin"/>
9898
</StackPanel>
9999
</Grid>
100100
</Grid>
@@ -184,7 +184,7 @@
184184
<ProgressBar x:Name="DirectoryProgress" Width="600" Height="25" HorizontalAlignment="Center" Minimum="0" Maximum="100"/>
185185
</StackPanel>
186186
</Grid>
187-
<Label x:Name="DirectoryVersionNumber" Content="FLogS — Version 1.1.3.7 © Taica, 2024" HorizontalAlignment="Right" FontStyle="Italic" Margin="10,30" FontWeight="Thin"/>
187+
<Label x:Name="DirectoryVersionNumber" Content="FLogS — Version 1.1.3.8 © Taica, 2024" HorizontalAlignment="Right" FontStyle="Italic" Margin="10,30" FontWeight="Thin"/>
188188
</StackPanel>
189189
</Grid>
190190
</Grid>
@@ -279,7 +279,7 @@
279279
<ProgressBar x:Name="PhraseProgress" Width="600" Height="25" HorizontalAlignment="Center" Minimum="0" Maximum="100"/>
280280
</StackPanel>
281281
</Grid>
282-
<Label x:Name="PhraseVersionNumber" Content="FLogS — Version 1.1.3.7 © Taica, 2024" HorizontalAlignment="Right" FontStyle="Italic" Margin="10,30" FontWeight="Thin"/>
282+
<Label x:Name="PhraseVersionNumber" Content="FLogS — Version 1.1.3.8 © Taica, 2024" HorizontalAlignment="Right" FontStyle="Italic" Margin="10,30" FontWeight="Thin"/>
283283
</StackPanel>
284284
</Grid>
285285
</Grid>
@@ -335,7 +335,7 @@
335335
</Grid>
336336
<Grid Grid.Row="1" Grid.Column="1" VerticalAlignment="Bottom" Margin="2,2">
337337
<StackPanel Background="LightGray" Margin="2,2">
338-
<Label x:Name="HelpVersionNumber" Content="FLogS — Version 1.1.3.7 © Taica, 2024" HorizontalAlignment="Right" FontStyle="Italic" Margin="10,3" FontWeight="Thin"/>
338+
<Label x:Name="HelpVersionNumber" Content="FLogS — Version 1.1.3.8 © Taica, 2024" HorizontalAlignment="Right" FontStyle="Italic" Margin="10,3" FontWeight="Thin"/>
339339
</StackPanel>
340340
</Grid>
341341
</Grid>

0 commit comments

Comments
 (0)