Skip to content

Commit

Permalink
Fix:開発環境の調整
Browse files Browse the repository at this point in the history
  • Loading branch information
niki committed Dec 14, 2023
1 parent 542497e commit 8b70e7f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion HeaderMake/HeaderMake.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion MakefileMake/MakefileMake.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
Expand Down
6 changes: 4 additions & 2 deletions sakura/sakura.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
Expand All @@ -42,7 +42,7 @@
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v143</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
<WholeProgramOptimization>true</WholeProgramOptimization>
</PropertyGroup>
Expand Down Expand Up @@ -214,6 +214,8 @@
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<OpenMPSupport>true</OpenMPSupport>
<ForcedIncludeFiles>my.h</ForcedIncludeFiles>
<LanguageStandard>stdcpp14</LanguageStandard>
<LanguageStandard_C>stdc11</LanguageStandard_C>
</ClCompile>
<ResourceCompile>
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Expand Down
5 changes: 3 additions & 2 deletions sakura_core/dlg/CDlgAbout.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
7 changes: 4 additions & 3 deletions sakura_core/my_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

// 拡張用レジストリキー
Expand All @@ -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のリビジョンを最後に修正を加えています

//-------------------------------------------------------------------------
Expand Down

0 comments on commit 8b70e7f

Please sign in to comment.