• R/O
  • HTTP
  • SSH
  • HTTPS

提交

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Loweynet


Commit MetaInfo

修订版5c6208ff65d92863a2a07da5f2f7d168a34d6c13 (tree)
时间2015-01-31 22:41:39
作者s_kawamoto <s_kawamoto@user...>
Commiters_kawamoto

Log Message

Fix bugs of automatic software update.

更改概述

差异

Binary files a/FFFTP_Eng_Release/FFFTP.exe and b/FFFTP_Eng_Release/FFFTP.exe differ
Binary files a/FFFTP_Eng_Release_64/FFFTP.exe and b/FFFTP_Eng_Release_64/FFFTP.exe differ
Binary files a/Release/FFFTP.exe and b/Release/FFFTP.exe differ
Binary files a/Release_64/FFFTP.exe and b/Release_64/FFFTP.exe differ
--- a/common.h
+++ b/common.h
@@ -81,7 +81,7 @@
8181 // ソフトウェア自動更新
8282 // リリースバージョンはリリース予定年(10進数4桁)+月(2桁)+日(2桁)+通し番号(0スタート2桁)とする
8383 // 2014年7月31日中の30個目のリリースは2014073129
84-#define RELEASE_VERSION_NUM 2015011700 /* リリースバージョン */
84+#define RELEASE_VERSION_NUM 2015013100 /* リリースバージョン */
8585
8686
8787 // SourceForge.JPによるフォーク
--- a/updater.h
+++ b/updater.h
@@ -10,11 +10,21 @@
1010 #define HTTP_USER_AGENT "Mozilla/4.0"
1111 #define UPDATE_SERVER "ffftp.sourceforge.jp"
1212 #if defined(_M_IX86)
13-#define UPDATE_HASH_PATH "/update/hash"
14-#define UPDATE_LIST_PATH "/update/list"
13+#if !defined(FFFTP_ENGLISH)
14+#define UPDATE_HASH_PATH "/update/jpn/hash"
15+#define UPDATE_LIST_PATH "/update/jpn/list"
16+#else
17+#define UPDATE_HASH_PATH "/update/eng/hash"
18+#define UPDATE_LIST_PATH "/update/eng/list"
19+#endif
1520 #elif defined(_M_AMD64)
16-#define UPDATE_HASH_PATH "/update/amd64/hash"
17-#define UPDATE_LIST_PATH "/update/amd64/list"
21+#if !defined(FFFTP_ENGLISH)
22+#define UPDATE_HASH_PATH "/update/amd64/jpn/hash"
23+#define UPDATE_LIST_PATH "/update/amd64/jpn/list"
24+#else
25+#define UPDATE_HASH_PATH "/update/amd64/eng/hash"
26+#define UPDATE_LIST_PATH "/update/amd64/eng/list"
27+#endif
1828 #endif
1929 #define UPDATE_RSA_PUBLIC_KEY \
2030 "-----BEGIN PUBLIC KEY-----\n" \