OSDN Git Service

Merge pull request #3564 from Hourier/Change-Format-Const
authorHourier <66951241+Hourier@users.noreply.github.com>
Thu, 27 Jul 2023 11:26:20 +0000 (20:26 +0900)
committerGitHub <noreply@github.com>
Thu, 27 Jul 2023 11:26:20 +0000 (20:26 +0900)
concptr の削減

doxygen/Hengband.doxyfile
hengband.spec
src/system/angband-version.h

index c50c63a..0decb35 100644 (file)
@@ -38,7 +38,7 @@ PROJECT_NAME           = Hengband
 # could be handy for archiving the generated documentation or if some version
 # control system is used.
 
-PROJECT_NUMBER         = 3.0.0Alpha87
+PROJECT_NUMBER         = 3.0.0Alpha88
 
 # Using the PROJECT_BRIEF tag one can provide an optional one line description
 # for a project that appears at the top of each page and should give viewer a
index 9dc5a28..fa36970 100644 (file)
@@ -1,4 +1,4 @@
-%define version 3.0.0.87
+%define version 3.0.0.88
 %define release 1
 %global debug_package %{nil}
 
@@ -10,8 +10,8 @@ License: unknown
 Group: Amusements/Games
 Url: https://hengband.github.io
 Source: hengband-%{version}.tar.gz
-Requires: ncurses-libs libstdc++ libcurl
-BuildRequires: autoconf automake gcc-c++ ncurses-devel libcurl-devel nkf
+Requires: ncurses-libs libstdc++ libcurl libX11
+BuildRequires: autoconf automake gcc-c++ ncurses-devel libcurl-devel nkf libX11-devel
 
 %description
 Hengband is a variant of ZAngband.
@@ -97,6 +97,12 @@ exit 0
 
 %changelog
 
+* Mon Jul 24 2023 Shiro Hara <white@vx-xv.com>
+- Enable X11
+
+* Sun Jul 23 2023 Shiro Hara <white@vx-xv.com>
+- hengband RPM 3.0.0.88(Alpha)
+
 * Sun Jul 09 2023 Shiro Hara <white@vx-xv.com>
 - hengband RPM 3.0.0.87(Alpha)
 
index 73fcceb..41e1914 100644 (file)
@@ -23,7 +23,7 @@ constexpr std::string_view ROOT_VARIANT_NAME("Hengband");
 #define H_VER_MAJOR 3 //!< ゲームのバージョン定義(メジャー番号)
 #define H_VER_MINOR 0 //!< ゲームのバージョン定義(マイナー番号)
 #define H_VER_PATCH 0 //!< ゲームのバージョン定義(パッチ番号)
-#define H_VER_EXTRA 87 //!< ゲームのバージョン定義(エクストラ番号)
+#define H_VER_EXTRA 88 //!< ゲームのバージョン定義(エクストラ番号)
 
 /*!
  * @brief セーブファイルのバージョン(3.0.0から導入)