From 9b56b5cb5483313a9ab21fe15a6910dbf8810acc Mon Sep 17 00:00:00 2001 From: veigr Date: Fri, 10 Jun 2016 10:12:43 +0900 Subject: [PATCH 01/16] =?UTF-8?q?Fixed=20#195:=2033=E5=BC=8F=E7=B4=A2?= =?UTF-8?q?=E6=95=B5=E8=A8=88=E7=AE=97=E5=BC=8F=E3=81=AE=E6=94=B9=E4=BF=AE?= =?UTF-8?q?=E5=8A=B9=E6=9E=9C=E4=BB=98=E5=8A=A0=E3=81=AB=E8=AA=A4=E3=81=A3?= =?UTF-8?q?=E3=81=A6=E8=89=A6=E8=BC=89=E6=A9=9F=E7=86=9F=E7=B7=B4=E5=BA=A6?= =?UTF-8?q?=E3=82=92=E7=94=A8=E3=81=84=E3=81=A6=E3=81=84=E3=81=9F=E5=95=8F?= =?UTF-8?q?=E9=A1=8C=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/Grabacr07.KanColleWrapper/Models/ViewRange.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Grabacr07.KanColleWrapper/Models/ViewRange.cs b/source/Grabacr07.KanColleWrapper/Models/ViewRange.cs index 742488bfd..5268daf09 100644 --- a/source/Grabacr07.KanColleWrapper/Models/ViewRange.cs +++ b/source/Grabacr07.KanColleWrapper/Models/ViewRange.cs @@ -221,7 +221,7 @@ public override double Calc(Fleet[] fleets) var itemScore = ships .SelectMany(x => x.EquippedItems) .Select(x => x.Item) - .Sum(x => (x.Info.ViewRange + GetAdeptCoefficient(x)) * GetTypeCoefficient(x.Info.Type)); + .Sum(x => (x.Info.ViewRange + GetLevelCoefficient(x)) * GetTypeCoefficient(x.Info.Type)); var shipScore = ships .Select(x => x.ViewRange - x.EquippedItems.Sum(s => s.Item.Info.RawData.api_saku)) @@ -255,17 +255,17 @@ private Ship[] GetTargetShips(Fleet[] fleets) return new Ship[0]; } - private static double GetAdeptCoefficient(SlotItem item) + private static double GetLevelCoefficient(SlotItem item) { switch (item.Info.Type) { case SlotItemType.水上偵察機: - return Math.Sqrt(item.Adept) * 1.2; + return Math.Sqrt(item.Level) * 1.2; case SlotItemType.小型電探: case SlotItemType.大型電探: case SlotItemType.大型電探_II: - return Math.Sqrt(item.Adept) * 1.25; + return Math.Sqrt(item.Level) * 1.25; default: return 0; From 001a78be3b5b41ecf81df523aeb3de3b91c9f3fc Mon Sep 17 00:00:00 2001 From: veigr Date: Sun, 19 Jun 2016 21:44:18 +0900 Subject: [PATCH 02/16] =?UTF-8?q?=E5=B0=8F=E6=95=B0=E7=82=B9=E4=BB=A5?= =?UTF-8?q?=E4=B8=8B2=E6=A1=81=E3=81=BE=E3=81=A7=E3=81=AB=E5=88=87?= =?UTF-8?q?=E3=82=8A=E6=8D=A8=E3=81=A6=E3=81=97=E3=81=A6=E8=A1=A8=E7=A4=BA?= =?UTF-8?q?=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ViewModels/Contents/Fleets/FleetStateViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Grabacr07.KanColleViewer/ViewModels/Contents/Fleets/FleetStateViewModel.cs b/source/Grabacr07.KanColleViewer/ViewModels/Contents/Fleets/FleetStateViewModel.cs index 84b83bea4..cc75cbb50 100644 --- a/source/Grabacr07.KanColleViewer/ViewModels/Contents/Fleets/FleetStateViewModel.cs +++ b/source/Grabacr07.KanColleViewer/ViewModels/Contents/Fleets/FleetStateViewModel.cs @@ -23,7 +23,7 @@ public class FleetStateViewModel : ViewModel public string MaxAirSuperiorityPotential => this.Source.MaxAirSuperiorityPotential.ToString("##0"); - public string ViewRange => this.Source.ViewRange.ToString("##0.##"); + public string ViewRange => (Math.Floor(this.Source.ViewRange * 100) / 100).ToString("##0.##"); public string Speed { From 141862dc2ae28636805e62db255f849d8acca784 Mon Sep 17 00:00:00 2001 From: veigr Date: Sun, 19 Jun 2016 22:31:32 +0900 Subject: [PATCH 03/16] =?UTF-8?q?*=20QuestType=20=E3=81=AE=202016/06/06=20?= =?UTF-8?q?=E5=A4=89=E6=9B=B4=E5=AF=BE=E5=BF=9C=20*=20=E3=80=8C=E5=85=A8?= =?UTF-8?q?=E3=80=8D=E4=BB=BB=E5=8B=99=E3=82=BF=E3=83=96=E3=81=AE=E3=81=BF?= =?UTF-8?q?=E3=82=92=E3=83=87=E3=83=BC=E3=82=BF=E5=8F=96=E5=BE=97=E5=AF=BE?= =?UTF-8?q?=E8=B1=A1=E3=81=A8=E3=81=99=E3=82=8B=E3=82=88=E3=81=86=E5=A4=89?= =?UTF-8?q?=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Models/QuestType.cs | 21 +++++++------------ source/Grabacr07.KanColleWrapper/Quests.cs | 2 ++ 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/source/Grabacr07.KanColleWrapper/Models/QuestType.cs b/source/Grabacr07.KanColleWrapper/Models/QuestType.cs index 95cfbb8d4..bf7d41d95 100644 --- a/source/Grabacr07.KanColleWrapper/Models/QuestType.cs +++ b/source/Grabacr07.KanColleWrapper/Models/QuestType.cs @@ -10,34 +10,29 @@ namespace Grabacr07.KanColleWrapper.Models /// public enum QuestType { - /// - /// 1 回のみの任務。 - /// - OneTime = 1, - /// /// デイリー任務。 /// - Daily = 2, + Daily = 1, /// /// ウィークリー任務。 /// - Weekly = 3, + Weekly = 2, /// - /// 日付の一の位が3,7,0の日のみ出現する任務。 + /// マンスリー任務。 /// - X3X7X0 = 4, + Monthly = 3, /// - /// 日付の一の位が2,8の日のみ出現する任務。 + /// 1 回のみの任務。 /// - X2X8 = 5, + OneTime = 4, /// - /// マンスリー任務。 + /// その他。 /// - Monthly = 6, + Other = 5, } } diff --git a/source/Grabacr07.KanColleWrapper/Quests.cs b/source/Grabacr07.KanColleWrapper/Quests.cs index 0c71f34f3..adea916a7 100644 --- a/source/Grabacr07.KanColleWrapper/Quests.cs +++ b/source/Grabacr07.KanColleWrapper/Quests.cs @@ -14,6 +14,7 @@ using Grabacr07.KanColleWrapper.Internal; using Grabacr07.KanColleWrapper.Models; using Grabacr07.KanColleWrapper.Models.Raw; +using System.Web; namespace Grabacr07.KanColleWrapper { @@ -108,6 +109,7 @@ internal Quests(KanColleProxy proxy) this.All = this.Current = new List(); proxy.api_get_member_questlist + .Where(x => HttpUtility.ParseQueryString(x.Request.BodyAsString)["api_tab_id"] == "0") .Select(Serialize) .Where(x => x != null) .Subscribe(this.Update); From 0c5f4988f4c79aece976db4561606f5e0d64c33c Mon Sep 17 00:00:00 2001 From: Manato KAMEYA Date: Sun, 19 Jun 2016 23:13:53 +0900 Subject: [PATCH 04/16] =?UTF-8?q?=E8=A8=AD=E5=AE=9A=E3=82=92=E3=81=8B?= =?UTF-8?q?=E3=81=88=E3=81=BE=E3=81=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/Grabacr07.KanColleViewer/KanColleViewer.csproj | 1 + source/KanColleViewer.sln.DotSettings | 1 + 2 files changed, 2 insertions(+) diff --git a/source/Grabacr07.KanColleViewer/KanColleViewer.csproj b/source/Grabacr07.KanColleViewer/KanColleViewer.csproj index becd2939f..d8bbecacf 100644 --- a/source/Grabacr07.KanColleViewer/KanColleViewer.csproj +++ b/source/Grabacr07.KanColleViewer/KanColleViewer.csproj @@ -37,6 +37,7 @@ prompt 4 false + false AnyCPU diff --git a/source/KanColleViewer.sln.DotSettings b/source/KanColleViewer.sln.DotSettings index d02b631ae..70276cb3d 100644 --- a/source/KanColleViewer.sln.DotSettings +++ b/source/KanColleViewer.sln.DotSettings @@ -7,6 +7,7 @@ False True SUGGESTION + DO_NOT_SHOW SUGGESTION SUGGESTION HINT From e93b2cb51076a0501b529ded75793e13cf9bd501 Mon Sep 17 00:00:00 2001 From: Grabacr07 Date: Mon, 20 Jun 2016 01:50:09 +0900 Subject: [PATCH 05/16] =?UTF-8?q?=E3=83=A9=E3=82=A4=E3=83=96=E3=83=A9?= =?UTF-8?q?=E3=83=AA=E6=9B=B4=E6=96=B0=20=E3=81=82=E3=81=A8=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=82=B8=E3=83=A7=E3=83=B3=E4=B8=8A=E3=81=92?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/Grabacr07.KanColleViewer/KanColleViewer.csproj | 4 ++-- source/Grabacr07.KanColleViewer/Properties/AssemblyInfo.cs | 2 +- source/Grabacr07.KanColleViewer/packages.config | 2 +- source/Grabacr07.KanColleViewer/readme.txt | 4 +++- source/Grabacr07.KanColleWrapper/KanColleWrapper.csproj | 4 ++-- source/Grabacr07.KanColleWrapper/KanColleWrapper.nuspec | 2 +- source/Grabacr07.KanColleWrapper/Properties/AssemblyInfo.cs | 4 ++-- source/Grabacr07.KanColleWrapper/packages.config | 2 +- source/MetroRadiance | 2 +- source/MetroTrilithon | 2 +- source/Plugins/TaskbarProgress/TaskbarProgress.csproj | 2 +- source/Plugins/TaskbarProgress/packages.config | 2 +- 12 files changed, 17 insertions(+), 15 deletions(-) diff --git a/source/Grabacr07.KanColleViewer/KanColleViewer.csproj b/source/Grabacr07.KanColleViewer/KanColleViewer.csproj index d8bbecacf..68ca33dbe 100644 --- a/source/Grabacr07.KanColleViewer/KanColleViewer.csproj +++ b/source/Grabacr07.KanColleViewer/KanColleViewer.csproj @@ -86,8 +86,8 @@ ..\packages\Nekoxy.1.5.2.20\lib\net45\Nekoxy.dll True - - ..\packages\StatefulModel.0.5.0\lib\portable-net45+win+wp80+MonoAndroid10+xamarinios10+MonoTouch10\StatefulModel.dll + + ..\packages\StatefulModel.0.6.0\lib\portable-net45+win+wp80+MonoAndroid10+xamarinios10+MonoTouch10\StatefulModel.dll True diff --git a/source/Grabacr07.KanColleViewer/Properties/AssemblyInfo.cs b/source/Grabacr07.KanColleViewer/Properties/AssemblyInfo.cs index 66bbe0fa8..565f9a56c 100644 --- a/source/Grabacr07.KanColleViewer/Properties/AssemblyInfo.cs +++ b/source/Grabacr07.KanColleViewer/Properties/AssemblyInfo.cs @@ -15,4 +15,4 @@ ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)] -[assembly: AssemblyVersion("4.2.5.0")] +[assembly: AssemblyVersion("4.2.6.0")] diff --git a/source/Grabacr07.KanColleViewer/packages.config b/source/Grabacr07.KanColleViewer/packages.config index 8a366094e..437a66756 100644 --- a/source/Grabacr07.KanColleViewer/packages.config +++ b/source/Grabacr07.KanColleViewer/packages.config @@ -11,5 +11,5 @@ - + \ No newline at end of file diff --git a/source/Grabacr07.KanColleViewer/readme.txt b/source/Grabacr07.KanColleViewer/readme.txt index f54ef0bdf..17d423892 100644 --- a/source/Grabacr07.KanColleViewer/readme.txt +++ b/source/Grabacr07.KanColleViewer/readme.txt @@ -1,6 +1,6 @@ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 提督業も忙しい! (KanColleViewer) - version 4.2.1 2016/02/12 + version 4.2.6 2016/06/20 ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ @@ -167,6 +167,8 @@ Desktop Toast ■更新履歴 +2016/06/20 - version 4.2.6 リリース + (わすれました) 2016/02/12 - version 4.2.1 リリース 2016/02/08 - version 4.2 リリース 2015/11/10 - version 4.1.6 リリース diff --git a/source/Grabacr07.KanColleWrapper/KanColleWrapper.csproj b/source/Grabacr07.KanColleWrapper/KanColleWrapper.csproj index 08af9dc3c..10fe59956 100644 --- a/source/Grabacr07.KanColleWrapper/KanColleWrapper.csproj +++ b/source/Grabacr07.KanColleWrapper/KanColleWrapper.csproj @@ -62,8 +62,8 @@ - - ..\packages\StatefulModel.0.5.0\lib\portable-net45+win+wp80+MonoAndroid10+xamarinios10+MonoTouch10\StatefulModel.dll + + ..\packages\StatefulModel.0.6.0\lib\portable-net45+win+wp80+MonoAndroid10+xamarinios10+MonoTouch10\StatefulModel.dll True diff --git a/source/Grabacr07.KanColleWrapper/KanColleWrapper.nuspec b/source/Grabacr07.KanColleWrapper/KanColleWrapper.nuspec index 0ccc04856..8f26fbb85 100644 --- a/source/Grabacr07.KanColleWrapper/KanColleWrapper.nuspec +++ b/source/Grabacr07.KanColleWrapper/KanColleWrapper.nuspec @@ -15,7 +15,7 @@ - + diff --git a/source/Grabacr07.KanColleWrapper/Properties/AssemblyInfo.cs b/source/Grabacr07.KanColleWrapper/Properties/AssemblyInfo.cs index 62d964519..ac65a8a5c 100644 --- a/source/Grabacr07.KanColleWrapper/Properties/AssemblyInfo.cs +++ b/source/Grabacr07.KanColleWrapper/Properties/AssemblyInfo.cs @@ -10,5 +10,5 @@ [assembly: ComVisible(false)] [assembly: Guid("8A13AB28-4E9F-423D-80AD-23EEF2821959")] -[assembly: AssemblyVersion("1.5.2")] -[assembly: AssemblyInformationalVersion("1.5.2")] +[assembly: AssemblyVersion("1.5.3")] +[assembly: AssemblyInformationalVersion("1.5.3")] diff --git a/source/Grabacr07.KanColleWrapper/packages.config b/source/Grabacr07.KanColleWrapper/packages.config index a8ef60b9b..7b1ae0be1 100644 --- a/source/Grabacr07.KanColleWrapper/packages.config +++ b/source/Grabacr07.KanColleWrapper/packages.config @@ -12,5 +12,5 @@ - + \ No newline at end of file diff --git a/source/MetroRadiance b/source/MetroRadiance index 4e416a846..2b091772a 160000 --- a/source/MetroRadiance +++ b/source/MetroRadiance @@ -1 +1 @@ -Subproject commit 4e416a8461d9fb367f0cffdc7526c40fcf72eda7 +Subproject commit 2b091772a2907172c9b8788a9f8920c0087d098e diff --git a/source/MetroTrilithon b/source/MetroTrilithon index 25bb02e7e..bd31e38ce 160000 --- a/source/MetroTrilithon +++ b/source/MetroTrilithon @@ -1 +1 @@ -Subproject commit 25bb02e7ea2494730498287043ae335c8d555abc +Subproject commit bd31e38ce976fdc7a1689057f3b775fa9cec0f51 diff --git a/source/Plugins/TaskbarProgress/TaskbarProgress.csproj b/source/Plugins/TaskbarProgress/TaskbarProgress.csproj index 3f3b80fb0..28bc36231 100644 --- a/source/Plugins/TaskbarProgress/TaskbarProgress.csproj +++ b/source/Plugins/TaskbarProgress/TaskbarProgress.csproj @@ -42,7 +42,7 @@ True - ..\..\packages\StatefulModel.0.5.0\lib\portable-net45+win+wp80+MonoAndroid10+xamarinios10+MonoTouch10\StatefulModel.dll + ..\..\packages\StatefulModel.0.6.0\lib\portable-net45+win+wp80+MonoAndroid10+xamarinios10+MonoTouch10\StatefulModel.dll True diff --git a/source/Plugins/TaskbarProgress/packages.config b/source/Plugins/TaskbarProgress/packages.config index 7c8f44d45..7e88d0938 100644 --- a/source/Plugins/TaskbarProgress/packages.config +++ b/source/Plugins/TaskbarProgress/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file From 3d941f1a45befb488a23db73019916abc157f4c5 Mon Sep 17 00:00:00 2001 From: Grabacr07 Date: Sat, 2 Jul 2016 00:23:47 +0900 Subject: [PATCH 06/16] =?UTF-8?q?=E5=AF=BE=E6=BD=9C=E3=82=BD=E3=83=BC?= =?UTF-8?q?=E3=83=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../KanColleViewer.csproj | 33 +++++++++---------- .../Catalogs/ShipCatalogSortWorker.cs | 2 ++ .../Views/Behaviors/ScreenshotAction.cs | 2 +- .../Views/Catalogs/ShipCatalogWindow.xaml | 17 ++++++++++ .../Views/Controls/KanColleHost.cs | 2 +- .../Grabacr07.KanColleWrapper/Models/Ship.cs | 2 ++ 6 files changed, 39 insertions(+), 19 deletions(-) diff --git a/source/Grabacr07.KanColleViewer/KanColleViewer.csproj b/source/Grabacr07.KanColleViewer/KanColleViewer.csproj index 68ca33dbe..8dd47ac64 100644 --- a/source/Grabacr07.KanColleViewer/KanColleViewer.csproj +++ b/source/Grabacr07.KanColleViewer/KanColleViewer.csproj @@ -618,13 +618,28 @@ PreserveNewest + + + Always + + + False + license.txt + Always + + + False + Licenses\%(FileName)%(Extension) + Always + + {3050F1C5-98B5-11CF-BB82-00AA00BDCE0B} 4 0 0 - tlbimp + primary False True @@ -638,22 +653,6 @@ True - - - Always - - - False - license.txt - Always - - - False - Licenses\%(FileName)%(Extension) - Always - - -