Skip to content

Commit

Permalink
Manager: Fix update URL; bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sejsel committed Dec 13, 2020
1 parent c54de20 commit 8198e8b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ArcdpsLogManager/ArcdpsLogManager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
Each new log data update causes a revision increase.
See LogDataUpdater for the updates.
-->
<Version>1.0.0.1</Version>
<Version>1.0.1.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Eto.Forms" Version="2.5.8" />
Expand Down Expand Up @@ -126,4 +126,4 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
</Project>
5 changes: 5 additions & 0 deletions ArcdpsLogManager/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This is the full changelog of the arcdps Log Manager.

## Log Manager v1.0.1

#### Fixes
- Fixed update notifications

## Log Manager v1.0.0

#### Important
Expand Down
4 changes: 2 additions & 2 deletions ArcdpsLogManager/ManagerForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public sealed class ManagerForm : Form
{
private readonly Cooldown gridRefreshCooldown = new Cooldown(TimeSpan.FromSeconds(2));

private ProgramUpdateChecker ProgramUpdateChecker { get; } = new ProgramUpdateChecker("http://localhost:8080/releases/manager.json");
private ProgramUpdateChecker ProgramUpdateChecker { get; } = new ProgramUpdateChecker("http://gw2scratch.com/releases/manager.json");
private ImageProvider ImageProvider { get; } = new ImageProvider();
private LogFinder LogFinder { get; } = new LogFinder();

Expand Down Expand Up @@ -619,4 +619,4 @@ private void FindLogs(CancellationToken cancellationToken)
private event EventHandler FilteredLogsUpdated;
private event EventHandler LogCollectionsInitialized;
}
}
}

0 comments on commit 8198e8b

Please sign in to comment.