Skip to content

Commit

Permalink
Remove unused updater and command line arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
bao-qian committed May 8, 2016
1 parent f01075a commit ed24fb7
Show file tree
Hide file tree
Showing 20 changed files with 10 additions and 642 deletions.
16 changes: 0 additions & 16 deletions Wox.Core/Updater/Release.cs

This file was deleted.

95 changes: 0 additions & 95 deletions Wox.Core/Updater/SemanticVersion.cs

This file was deleted.

182 changes: 0 additions & 182 deletions Wox.Core/Updater/UpdaterManager.cs

This file was deleted.

65 changes: 0 additions & 65 deletions Wox.Core/Updater/WoxUpdateSource.cs

This file was deleted.

4 changes: 0 additions & 4 deletions Wox.Core/Wox.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@
<Compile Include="APIServer.cs" />
<Compile Include="Plugin\ExecutablePlugin.cs" />
<Compile Include="Plugin\PluginsLoader.cs" />
<Compile Include="Updater\Release.cs" />
<Compile Include="Updater\UpdaterManager.cs" />
<Compile Include="Updater\WoxUpdateSource.cs" />
<Compile Include="UserSettings\HttpProxy.cs" />
<Compile Include="Resource\AvailableLanguages.cs" />
<Compile Include="Resource\Internationalization.cs" />
Expand All @@ -90,7 +87,6 @@
<Compile Include="UserSettings\PluginSettings.cs" />
<Compile Include="UserSettings\PluginHotkey.cs" />
<Compile Include="UserSettings\Settings.cs" />
<Compile Include="Updater\SemanticVersion.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
Expand Down
4 changes: 2 additions & 2 deletions Wox.CrashReporter/ReportWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Windows.Documents;
using Exceptionless;
using Wox.Core.Resource;
using Wox.Core.Updater;
using Wox.Infrastructure;

namespace Wox.CrashReporter
{
Expand All @@ -23,7 +23,7 @@ public ReportWindow(Exception exception)
private void SetException(Exception exception)
{
tbSummary.AppendText(exception.Message);
tbVersion.Text = UpdaterManager.Instance.CurrentVersion.ToString();
tbVersion.Text = Infrastructure.Wox.Version;
tbDatetime.Text = DateTime.Now.ToString();
tbStackTrace.AppendText(exception.StackTrace);
tbSource.Text = exception.Source;
Expand Down
Loading

0 comments on commit ed24fb7

Please sign in to comment.