Skip to content

Commit

Permalink
Version 2.7.1.1
Browse files Browse the repository at this point in the history
* ブラウザ:SSをクリップボードにコピーしたときログに出力するように
  • Loading branch information
andanteyk committed Aug 9, 2017
1 parent 75c2724 commit 20156a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Browser/FormBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1050,6 +1050,7 @@ private void ToolMenu_Other_LastScreenShot_CopyToClipboard_Click( object sender,
try {
using ( var img = new Bitmap( _lastScreenShotPath ) ) {
Clipboard.SetImage( img );
AddLog( 2, string.Format( "スクリーンショット {0} をクリップボードにコピーしました。", _lastScreenShotPath ) );
}
} catch ( Exception ex ) {
BrowserHost.AsyncRemoteRun( () =>
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 "2.7.1";
return "2.7.1.1";
}
}

Expand All @@ -54,7 +54,7 @@ public static string VersionEnglish {
/// </summary>
public static DateTime UpdateTime {
get {
return DateTimeHelper.CSVStringToTime( "2017/08/07 21:00:00" );
return DateTimeHelper.CSVStringToTime( "2017/08/09 21:00:00" );
}
}

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

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

[ver. 2.7.1 (2017/08/07)](http://bit.ly/2hCIp3e)
[ver. 2.7.1.1 (2017/08/09)](http://bit.ly/2vmsUzQ)

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

Expand Down

0 comments on commit 20156a3

Please sign in to comment.