Skip to content

Commit

Permalink
1.7.3
Browse files Browse the repository at this point in the history
- Runtime / svchost -> right click and color them (doesn't work)  ->
fixed
  • Loading branch information
jtorjo committed Jan 21, 2016
1 parent 3b35f4f commit c6fb477
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 15 deletions.
4 changes: 2 additions & 2 deletions src/LwFileAssociations/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.2.0")]
[assembly: AssemblyFileVersion("1.7.2.0")]
[assembly: AssemblyVersion("1.7.3.0")]
[assembly: AssemblyFileVersion("1.7.3.0")]
4 changes: 2 additions & 2 deletions src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.2.0")]
[assembly: AssemblyFileVersion("1.7.2.0")]
[assembly: AssemblyVersion("1.7.3.0")]
[assembly: AssemblyFileVersion("1.7.3.0")]
6 changes: 4 additions & 2 deletions src/docs/history.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@

- Runtime / svchost -> right click and color them (doesn't work)
- pictures 12 and 13



- post on https://www.reddit.com/r/csharp/
https://news.ycombinator.com/news (9 jan 2016)
quora

1.7.3
- Runtime / svchost -> right click and color them (doesn't work) -> fixed


1.7.2b
- regex (installation.*ready) not working if case insensitive


1.7.2a
- fix: Microsoft-Windows-TWinUI/Operational - does not work
- read from C:\Windows\System32\winevt\Logs (find it with Environment.Specialdir), sort by latest ones (for Local) - get the latest 100 files or so
Expand Down
8 changes: 4 additions & 4 deletions src/logwizardsetup/logwizardsetup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
"AssemblyAsmDisplayName" = "8:lw_common, Version=1.7.2.0, Culture=neutral, processorArchitecture=MSIL"
"AssemblyAsmDisplayName" = "8:lw_common, Version=1.7.3.0, Culture=neutral, processorArchitecture=MSIL"
"ScatterAssemblies"
{
"_C8B46DF279E1B4F613E1AB160AF480C8"
Expand Down Expand Up @@ -804,15 +804,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:Log Wizard Setup"
"ProductCode" = "8:{8D11063C-E4C3-4A3B-9B6B-E3DCE65B365D}"
"PackageCode" = "8:{F1F36300-2680-4AEB-A676-BB126908BFAB}"
"ProductCode" = "8:{0AEA1381-28B1-484B-B916-6187771DD06D}"
"PackageCode" = "8:{88FCF62F-A772-4200-8D67-1CCD88AB5045}"
"UpgradeCode" = "8:{0E5BB812-A969-415B-9362-F64234C67C4A}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:1.7.2"
"ProductVersion" = "8:1.7.3"
"Manufacturer" = "8:John Torjo"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
Expand Down
4 changes: 2 additions & 2 deletions src/lw_common/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.2.0")]
[assembly: AssemblyFileVersion("1.7.2.0")]
[assembly: AssemblyVersion("1.7.3.0")]
[assembly: AssemblyFileVersion("1.7.3.0")]
4 changes: 3 additions & 1 deletion src/lw_common/ui/log_view/log_view_right_click.cs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,9 @@ public class action {
}

if (!parent_.is_full_log) {
bool belongs_to_view = parent_.sel.matches.Count > 0;
// 1.7.2+ - if we don't have any filter selected, allow color filters
//bool belongs_to_view = parent_.sel.matches.Count > 0;
bool belongs_to_view = parent_.sel.has_matches_via_include(parent_.filter);
if (belongs_to_view) {
var i = parent_.sel;
Debug.Assert(i != null);
Expand Down
4 changes: 2 additions & 2 deletions src/test_ui/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.2.0")]
[assembly: AssemblyFileVersion("1.7.2.0")]
[assembly: AssemblyVersion("1.7.3.0")]
[assembly: AssemblyFileVersion("1.7.3.0")]

0 comments on commit c6fb477

Please sign in to comment.