Skip to content

Commit

Permalink
1.0.4 Ranking limit 500->1000
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangKurz committed Oct 9, 2016
1 parent 2303df1 commit bd263aa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion KanColleOpenDB/KanColleOpenDBPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace KanColleOpenDB
[ExportMetadata("Guid", "B139EAC7-933F-4B35-9EE9-048B8F9F08E5")]
[ExportMetadata("Title", "KanColleOpenDB")]
[ExportMetadata("Description", "KanColleOpenDB for KanColleViewer")]
[ExportMetadata("Version", "1.0.3")]
[ExportMetadata("Version", "1.0.4")]
[ExportMetadata("Author", "WolfgangKurz")]
public class KanColleOpenDBPlugin : IPlugin, ITool
{
Expand Down
4 changes: 2 additions & 2 deletions KanColleOpenDB/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
// 지정되도록 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.3.0")]
[assembly: AssemblyFileVersion("1.0.3.0")]
[assembly: AssemblyVersion("1.0.4.0")]
[assembly: AssemblyFileVersion("1.0.4.0")]
2 changes: 1 addition & 1 deletion KanColleOpenDB/ViewModels/OpenDBViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ private void Initialize()
var page = x.Data.api_disp_page;
var offset = (page - 1) * 10;
if (offset >= 500) return; // only ~500
if (offset >= 1000) return; // only ~1000
var node = "";
var nodes = new List<string>();
Expand Down
4 changes: 2 additions & 2 deletions KanColleOpenDBStandalone/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
// 지정되도록 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.3.0")]
[assembly: AssemblyFileVersion("1.0.3.0")]
[assembly: AssemblyVersion("1.0.4.0")]
[assembly: AssemblyFileVersion("1.0.4.0")]
2 changes: 1 addition & 1 deletion KanColleOpenDBStandalone/Watcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ private void Setup()
var page = x.Data.api_disp_page;
var offset = (page - 1) * 10;
if (offset >= 500) return; // only ~500
if (offset >= 1000) return; // only ~1000
var node = "";
var nodes = new List<string>();
Expand Down

0 comments on commit bd263aa

Please sign in to comment.