Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
- Fixed bug that caused locations to not clear properly.
- Incremented version from 0.7.4 to 0.7.5 for release.
  • Loading branch information
trippsc2 committed Apr 14, 2020
1 parent a697742 commit 0f98516
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions OpenTracker.Models/Location.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1919,6 +1919,9 @@ private void OnPropertyChanged(string propertyName)

private void OnSectionChanged(object sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == nameof(ISection.Available) && !((ISection)sender).IsAvailable())
UpdateAccessibility();

if (e.PropertyName == nameof(ISection.Accessibility))
UpdateAccessibility();
}
Expand Down
2 changes: 1 addition & 1 deletion OpenTracker.Models/OpenTracker.Models.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>0.7.4</Version>
<Version>0.7.5</Version>
</PropertyGroup>

</Project>
6 changes: 3 additions & 3 deletions OpenTracker.Setup/OpenTracker.Setup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -274,15 +274,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:OpenTracker"
"ProductCode" = "8:{DA5CFCBB-13DD-4439-BCB0-9136756045E4}"
"PackageCode" = "8:{66E3C4E5-81EF-4593-A415-D3BCBFC86134}"
"ProductCode" = "8:{8731FF3E-4BC6-49E9-9E3C-9E98265AEB76}"
"PackageCode" = "8:{A0BF81C3-41BD-49B4-B841-9B04466C45BB}"
"UpgradeCode" = "8:{C98C2121-B4C5-473A-9B86-5407FEFFE8F1}"
"AspNetVersion" = "8:2.0.50727.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:TRUE"
"ProductVersion" = "8:0.7.4"
"ProductVersion" = "8:0.7.5"
"Manufacturer" = "8:OpenTracker"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
Expand Down
6 changes: 3 additions & 3 deletions OpenTracker/OpenTracker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<ApplicationIcon>triforce.ico</ApplicationIcon>
<Win32Resource />
<Version>0.7.4</Version>
<Version>0.7.5</Version>
<Authors>Tripp</Authors>
<AssemblyVersion>0.7.4.0</AssemblyVersion>
<FileVersion>0.7.4.0</FileVersion>
<AssemblyVersion>0.7.5.0</AssemblyVersion>
<FileVersion>0.7.5.0</FileVersion>
<RuntimeIdentifiers>osx-x64;linux-x64;debian-x64;rhel-x64;win-x64;win-x86;win7-x64;win7-x86</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit 0f98516

Please sign in to comment.