Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
・ログ:ケッコン時のメッセージを追加
  • Loading branch information
andanteyk committed May 25, 2015
1 parent e0c4ede commit 15ecf61
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 6 deletions.
1 change: 1 addition & 0 deletions ElectronicObserver/ElectronicObserver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@
<Compile Include="Notifier\NotifierManager.cs" />
<Compile Include="Observer\kcsapi\api_get_member\material.cs" />
<Compile Include="Observer\kcsapi\api_get_member\ship_deck.cs" />
<Compile Include="Observer\kcsapi\api_req_kaisou\marriage.cs" />
<Compile Include="Observer\kcsapi\api_req_mission\result.cs" />
<Compile Include="Observer\kcsapi\api_req_ranking\getlist.cs" />
<Compile Include="Observer\kcsapi\api_req_sortie\airbattle.cs" />
Expand Down
1 change: 1 addition & 0 deletions ElectronicObserver/Observer/APIObserver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ private APIObserver() {
APIList.Add( new kcsapi.api_req_ranking.getlist() );
APIList.Add( new kcsapi.api_req_sortie.airbattle() );
APIList.Add( new kcsapi.api_get_member.ship_deck() );
APIList.Add( new kcsapi.api_req_kaisou.marriage() );

APIList.Add( new kcsapi.api_req_quest.clearitemget() );
APIList.Add( new kcsapi.api_req_nyukyo.start() );
Expand Down
2 changes: 1 addition & 1 deletion ElectronicObserver/Observer/kcsapi/api_get_member/ship2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace ElectronicObserver.Observer.kcsapi.api_get_member {

//[Obsolete( "このAPIは廃止された可能性があります。", false)]
//一応現役、ケッコンした時などに呼ばれる
public class ship2 : APIBase {

public override void OnResponseReceived( dynamic data ) {
Expand Down
23 changes: 23 additions & 0 deletions ElectronicObserver/Observer/kcsapi/api_req_kaisou/marriage.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using ElectronicObserver.Data;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ElectronicObserver.Observer.kcsapi.api_req_kaisou {

public class marriage : APIBase {

public override void OnResponseReceived( dynamic data ) {

Utility.Logger.Add( 2, string.Format( "{0} とケッコンカッコカリしました。おめでとうございます!", KCDatabase.Instance.Ships[(int)data.api_id].Name ) );

base.OnResponseReceived( (object)data );
}

public override string APIName {
get { return "api_req_kaisou/marriage"; }
}
}
}
3 changes: 2 additions & 1 deletion ElectronicObserver/Other/Information/apilist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,8 @@ api_get_member/picture_book :装備図鑑 図鑑登録済みのもののみ
api_houk :回避
api_saku :索敵
api_leng :射程
api_flag :
api_flag :カテゴリ?
[0]=砲, [1]=魚雷, [2]=攻撃機(雷撃機), [3]=爆撃機, [4]=機銃, [5]=戦闘機, [6]=偵察機, [7]=戦闘機/機銃
api_info :説明


Expand Down
6 changes: 3 additions & 3 deletions ElectronicObserver/Utility/SoftwareInformation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static string SoftwareNameEnglish {
/// </summary>
public static string VersionJapanese {
get {
return SoftwareNameJapanese + "一二型改六";
return SoftwareNameJapanese + "一三型";
}
}

Expand All @@ -44,7 +44,7 @@ public static string VersionJapanese {
/// </summary>
public static string VersionEnglish {
get {
return "1.2.6";
return "1.3.0";
}
}

Expand All @@ -54,7 +54,7 @@ public static string VersionEnglish {
/// </summary>
public static DateTime UpdateTime {
get {
return DateTimeHelper.CSVStringToTime( "2015/05/18 20:00:00" );
return DateTimeHelper.CSVStringToTime( "2015/05/26 00:00:00" );
}
}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

*このリンクの更新は遅れる可能性があります。最新版は[こちら](http://electronicobserver.blog.fc2.com/)で確認してください。*

[ver. 1.2.6 (2015/05/18)](http://bit.ly/1HpDM2i)
[ver. 1.3.0 (2015/05/26)](http://bit.ly/1HsatH4)

更新内容・履歴は[こちら](https://github.com/andanteyk/ElectronicObserver/wiki/ChangeLog)で確認できます。

Expand Down

0 comments on commit 15ecf61

Please sign in to comment.