From 8b70e7fe686cef1c50688be52742400e1e0bff13 Mon Sep 17 00:00:00 2001 From: niki <24849691+niki@users.noreply.github.com> Date: Fri, 15 Dec 2023 08:32:38 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=E9=96=8B=E7=99=BA=E7=92=B0=E5=A2=83?= =?UTF-8?q?=E3=81=AE=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HeaderMake/HeaderMake.vcxproj | 2 +- MakefileMake/MakefileMake.vcxproj | 2 +- sakura/sakura.vcxproj | 6 ++++-- sakura_core/dlg/CDlgAbout.cpp | 5 +++-- sakura_core/my_config.h | 7 ++++--- 5 files changed, 13 insertions(+), 9 deletions(-) diff --git a/HeaderMake/HeaderMake.vcxproj b/HeaderMake/HeaderMake.vcxproj index a6d4ed8f..2b4bdeeb 100644 --- a/HeaderMake/HeaderMake.vcxproj +++ b/HeaderMake/HeaderMake.vcxproj @@ -15,7 +15,7 @@ Application - v143 + v142 Unicode true diff --git a/MakefileMake/MakefileMake.vcxproj b/MakefileMake/MakefileMake.vcxproj index 3f4aa077..e2251b7f 100644 --- a/MakefileMake/MakefileMake.vcxproj +++ b/MakefileMake/MakefileMake.vcxproj @@ -15,7 +15,7 @@ Application - v143 + v142 Unicode true diff --git a/sakura/sakura.vcxproj b/sakura/sakura.vcxproj index 1b1c20de..b07ccff7 100644 --- a/sakura/sakura.vcxproj +++ b/sakura/sakura.vcxproj @@ -31,7 +31,7 @@ Application - v143 + v142 Unicode @@ -42,7 +42,7 @@ Application - v143 + v142 Unicode true @@ -214,6 +214,8 @@ ProgramDatabase true my.h + stdcpp14 + stdc11 _DEBUG;%(PreprocessorDefinitions) diff --git a/sakura_core/dlg/CDlgAbout.cpp b/sakura_core/dlg/CDlgAbout.cpp index 506cae87..92ef531d 100644 --- a/sakura_core/dlg/CDlgAbout.cpp +++ b/sakura_core/dlg/CDlgAbout.cpp @@ -209,12 +209,13 @@ BOOL CDlgAbout::OnInitDialog( HWND hwndDlg, WPARAM wParam, LPARAM lParam ) DWORD dwVersionMS, dwVersionLS; GetAppVersionInfo( NULL, VS_VERSION_INFO, &dwVersionMS, &dwVersionLS ); #ifdef NK_FIX_VERDLG - auto_sprintf( szMsg, _T("Ver. %d.%d.%d.%d (" TARGET_M_SUFFIX2 " by " NK_AUTHOR "\r\n"), + auto_sprintf( szMsg, _T("Ver. %d.%d.%d.%d L%02d (" TARGET_M_SUFFIX2 ") by " NK_AUTHOR "\r\n"), //auto_sprintf( szMsg, _T("Ver. %d.%d.%d (" TARGET_M_SUFFIX2 ") by " NK_AUTHOR "\r\n"), HIWORD( dwVersionMS ), LOWORD( dwVersionMS ), HIWORD( dwVersionLS ), - LOWORD( dwVersionLS ) + LOWORD( dwVersionLS ), + PR_LV ); #else auto_sprintf( szMsg, _T("Ver. %d.%d.%d.%d\r\n"), diff --git a/sakura_core/my_config.h b/sakura_core/my_config.h index 049ddd17..b91952b9 100644 --- a/sakura_core/my_config.h +++ b/sakura_core/my_config.h @@ -47,7 +47,7 @@ // lf.lfHeight = DpiPointsToPixels(-10); // 高DPI対応(ポイント数から算出) // 修正者 -#define NK_AUTHOR "niki & Co." +#define NK_AUTHOR "Nekomimi Co." #define NK_AUTHOR_PAGE "https://github.com/niki/sakura" // 拡張用レジストリキー @@ -57,8 +57,9 @@ // バージョン情報ダイアログの変更 20170315 //------------------------------------------------------------------ #define NK_FIX_VERDLG - #define PR_VER 2,3,2023,0 - #define PR_VER_STR "2.3.2023.0" + #define PR_VER 2,3,2,0 + #define PR_VER_STR "2.3.2.0" + #define PR_LV 10 // #define BASE_REV 4205 // このSVNのリビジョンを最後に修正を加えています //-------------------------------------------------------------------------