OSDN Git Service

Merge remote-tracking branch 'upstream/master' into jp
authorTakashi Sawanaka <sdottaka@users.sourceforge.net>
Mon, 27 Mar 2023 00:04:29 +0000 (09:04 +0900)
committerTakashi Sawanaka <sdottaka@users.sourceforge.net>
Mon, 27 Mar 2023 00:04:29 +0000 (09:04 +0900)
# Conflicts:
# SetVersion.cmd
# Src/Constants.h
# Translations/WinMerge/ChineseTraditional.po
# Version.h

49 files changed:
1  2 
Installer/InnoSetup/WinMergeARM64.is6.iss
Installer/InnoSetup/WinMergeX64.is6.iss
Installer/InnoSetup/WinMergeX64.iss
Installer/InnoSetup/WinMergeX64NonAdmin.iss
SetVersion.cmd
Src/Constants.h
Src/MainFrm.cpp
Src/MainFrm.h
Src/Merge.rc
Src/OptionsDef.h
Src/OptionsInit.cpp
Translations/WinMerge/Arabic.po
Translations/WinMerge/Basque.po
Translations/WinMerge/Brazilian.po
Translations/WinMerge/Bulgarian.po
Translations/WinMerge/Catalan.po
Translations/WinMerge/ChineseSimplified.po
Translations/WinMerge/ChineseTraditional.po
Translations/WinMerge/Corsican.po
Translations/WinMerge/Croatian.po
Translations/WinMerge/Czech.po
Translations/WinMerge/Danish.po
Translations/WinMerge/Dutch.po
Translations/WinMerge/English.pot
Translations/WinMerge/Finnish.po
Translations/WinMerge/French.po
Translations/WinMerge/Galician.po
Translations/WinMerge/German.po
Translations/WinMerge/Greek.po
Translations/WinMerge/Hungarian.po
Translations/WinMerge/Italian.po
Translations/WinMerge/Japanese.po
Translations/WinMerge/Korean.po
Translations/WinMerge/Lithuanian.po
Translations/WinMerge/Norwegian.po
Translations/WinMerge/Persian.po
Translations/WinMerge/Polish.po
Translations/WinMerge/Portuguese.po
Translations/WinMerge/Romanian.po
Translations/WinMerge/Russian.po
Translations/WinMerge/Serbian.po
Translations/WinMerge/Sinhala.po
Translations/WinMerge/Slovak.po
Translations/WinMerge/Slovenian.po
Translations/WinMerge/Spanish.po
Translations/WinMerge/Swedish.po
Translations/WinMerge/Turkish.po
Translations/WinMerge/Ukrainian.po
Version.h

Simple merge
diff --cc SetVersion.cmd
@@@ -1,8 -1,8 +1,8 @@@
  set MAJOR=2
  set MINOR=16
 -set REVISION=29
 -set PATCHLEVEL=0
 -set STRPRIVATEBUILD=""
 +set REVISION=28
- set PATCHLEVEL=3
- set STRPRIVATEBUILD="jp-3"
++set PATCHLEVEL=4
++set STRPRIVATEBUILD="jp-4"
  
  set RCVER=%MAJOR%.%MINOR%.%REVISION%.%PATCHLEVEL%
  rem set STRVER=%MAJOR%.%MINOR%.%REVISION%.%PATCHLEVEL%
diff --cc Src/Constants.h
@@@ -6,44 -6,37 +6,44 @@@
   */
  #pragma once
  
- #include <tchar.h>
+ #include "utils/ctchar.h"
  
  /** @brief URL for hyperlink in About-dialog. */
- inline const TCHAR WinMergeURL[] = _T("https://winmergejp.bitbucket.io");
 -inline const tchar_t WinMergeURL[] = _T("https://winmerge.org/");
++inline const tchar_t WinMergeURL[] = _T("https://winmergejp.bitbucket.io");
  
  /**
   * @brief URL to help index in internet.
   * We use internet help when local help file is not found (not installed).
   */
- inline const TCHAR DocsURL[] = _T("https://manual.winmerge.org/index.html");
+ inline const tchar_t DocsURL[] = _T("https://manual.winmerge.org/index.html");
  
  /** @brief URL to translations page in internet. */
- inline const TCHAR TranslationsUrl[] = _T("https://winmerge.org/translations/");
+ inline const tchar_t TranslationsUrl[] = _T("https://winmerge.org/translations/");
  
  /** @brief URL of the GPL license. */
- inline const TCHAR LicenceUrl[] = _T("http://www.gnu.org/licenses/gpl-2.0.html");
+ inline const tchar_t LicenceUrl[] = _T("http://www.gnu.org/licenses/gpl-2.0.html");
  
- const TCHAR DownloadUrl[] = _T("https://winmergejp.bitbucket.io/#downloads");
- const TCHAR DownloadUrlOld[] = _T("http://www.geocities.co.jp/SiliconValley-SanJose/8165/winmerge.html#downloads");
 +/** @brief WinMerge download page URL. */
- const TCHAR CurrentVersionURL[] = _T("https://winmergejp.bitbucket.io/winmerge-jp_current_version.txt");
- const TCHAR CurrentVersionURLOld[] = _T("http://www.geocities.co.jp/SiliconValley-SanJose/8165/winmerge-jp_current_version.txt");
++const tchar_t DownloadUrl[] = _T("https://winmergejp.bitbucket.io/#downloads");
++const tchar_t DownloadUrlOld[] = _T("http://www.geocities.co.jp/SiliconValley-SanJose/8165/winmerge.html#downloads");
 +
++const tchar_t CurrentVersionURL[] = _T("https://winmergejp.bitbucket.io/winmerge-jp_current_version.txt");
++const tchar_t CurrentVersionURLOld[] = _T("http://www.geocities.co.jp/SiliconValley-SanJose/8165/winmerge-jp_current_version.txt");
 +
  /** @brief Relative (to WinMerge executable ) path to local help file. */
- inline const TCHAR DocsPath[] = _T("Docs/WinMerge%s.chm");
+ inline const tchar_t DocsPath[] = _T("Docs/WinMerge%s.chm");
  
  /** @brief Contributors list. */
- inline const TCHAR ContributorsPath[] = _T("contributors.txt");
+ inline const tchar_t ContributorsPath[] = _T("contributors.txt");
  
  /** @brief Release notes in HTML format. */
- inline const TCHAR RelNotes[] = _T("\\Docs\\ReleaseNotes%s.html");
+ inline const tchar_t RelNotes[] = _T("\\Docs\\ReleaseNotes%s.html");
  
  /** @brief GPL Licence local file name. */
- inline const TCHAR LicenseFile[] = _T("Copying");
+ inline const tchar_t LicenseFile[] = _T("Copying");
  
  /** @brief WinMerge folder in My Folders-folder. */
- inline const TCHAR WinMergeDocumentsFolder[] = _T("WinMerge");
+ inline const tchar_t WinMergeDocumentsFolder[] = _T("WinMerge");
  
  /**
   * @brief Default relative path to "My Documents" for private filters.
diff --cc Src/MainFrm.cpp
Simple merge
diff --cc Src/MainFrm.h
Simple merge
diff --cc Src/Merge.rc
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc Version.h
+++ b/Version.h
@@@ -1,5 -1,5 +1,5 @@@
- #define FILEVER        2,16,28,3\r
- #define PRODUCTVER     2,16,28,3\r
- #define STRFILEVER     "2.16.28.3"\r
- #define STRPRODUCTVER  "2.16.28.3"\r
- #define STRPRIVATEBUILD "jp-3"\r
 -#define FILEVER        2,16,29,0\r
 -#define PRODUCTVER     2,16,29,0\r
 -#define STRFILEVER     "2.16.29.0"\r
 -#define STRPRODUCTVER  "2.16.29.0"\r
 -#define STRPRIVATEBUILD ""\r
++#define FILEVER        2,16,28,4\r
++#define PRODUCTVER     2,16,28,4\r
++#define STRFILEVER     "2.16.28.4"\r
++#define STRPRODUCTVER  "2.16.28.4"\r
++#define STRPRIVATEBUILD "jp-4"\r