Skip to content

Commit

Permalink
Merged branch develop into master
Browse files Browse the repository at this point in the history
  • Loading branch information
KodamaSakuno committed Jul 14, 2016
2 parents 602418c + 8ff3348 commit c8b461f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion HeavenlyWind.Base/ProductInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public static class ProductInfo
public const string AppName = "いんてりじぇんと連装砲くん";
public const string ProductName = "Intelligent Naval Gun";

public const string AssemblyVersionString = "0.1.11";
public const string AssemblyVersionString = "0.1.11.1";

public static string Version => AssemblyVersionString;
public static string ReleaseCodeName => "Kraken";
Expand Down
2 changes: 2 additions & 0 deletions HeavenlyWind/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ protected override void OnStartup(StartupEventArgs e)

PluginService.Instance.Initialize();

KanColleProxy.Start();

ShutdownMode = ShutdownMode.OnMainWindowClose;

Task.Factory.StartNew(UpdateService.Instance.CheckForUpdate);
Expand Down
2 changes: 1 addition & 1 deletion HeavenlyWind/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ internal set

internal MainWindowViewModel()
{
r_Page = new InitializationPageViewModel(this);
GameInformation = new GameInformationViewModel(this);
r_Page = GameInformation;

SessionService.Instance.SubscribeOnce("api_start2", delegate
{
Expand Down
7 changes: 0 additions & 7 deletions HeavenlyWind/Views/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,6 @@ protected override void OnSourceInitialized(EventArgs e)
PanicKeyService.Instance.Initialize(rHandle);
}

protected override void OnContentRendered(EventArgs e)
{
base.OnContentRendered(e);

((InitializationPageViewModel)App.Root.Page).Start();
}

protected override void OnClosing(CancelEventArgs e)
{
var rDialog = new TaskDialog()
Expand Down

0 comments on commit c8b461f

Please sign in to comment.