Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita119e69

Browse files
committed
Photon updated to v4.10.6
1 parent28bbb2a commita119e69

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

‎CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ FIND_PROGRAM(GIT_EXECUTABLE git
1616
set(SVN_REV0)
1717
set(VERSION_MAJOR1)
1818
set(VERSION_MINOR9)
19-
set(VERSION_PATCH0)
19+
set(VERSION_PATCH6)
20+
set(VERSION_BUILD0)
2021

2122
# only do this if we have an svn client.
2223
if (SVN_EXECUTABLE)
@@ -30,7 +31,7 @@ if (SVN_EXECUTABLE)
3031

3132
Subversion_GET_REVISION(${CMAKE_SOURCE_DIR}SVN_REV)
3233
if (SVN_REV)
33-
set(VERSION_PATCH${SVN_REV})
34+
set(VERSION_BUILD${SVN_REV})
3435
message(STATUS"SVN Last Changed Revision Number is${SVN_REV}")
3536
endif()
3637
endif (SVN_EXECUTABLE)

‎src/WidgetAbout.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ void WidgetAbout::InitLayout() {
125125
QLabel *p_label_name =newQLabel(PROJECT_NAME,this);
126126
p_label_name->setFont(QFont("Arial",20, QFont::Bold));
127127
QLabel *p_label_author =newQLabel(tr("Authors:").append("Björn Stresing, Denis Manthey, Krispin Weiß, Justin Hug, Wolfgang Ruppel"),this);
128-
QLabel *p_label_version =newQLabel(tr("Version:").append(VERSION_MAJOR"." VERSION_MINOR"." VERSION_PATCH),this);
128+
QLabel *p_label_version =newQLabel(tr("Version:").append(VERSION_MAJOR"." VERSION_MINOR"." VERSION_PATCH" (Build" VERSION_BUILD")"),this);
129129
QLabel *p_label_notice =newQLabel(notice,this);
130130
QLabel *p_label_icon =newQLabel(this);
131131
p_label_icon->setPixmap(QPixmap(":/icon1.ico"));

‎src/info.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#define VERSION_MAJOR "@VERSION_MAJOR@"
22
#define VERSION_MINOR "@VERSION_MINOR@"
33
#define VERSION_PATCH "@VERSION_PATCH@"
4+
#define VERSION_BUILD "@VERSION_BUILD@"
45
#define PROJECT_NAME "@PROJECT_NAME@"
56
#define BUILD_TYPE "@CMAKE_BUILD_TYPE@"
67
#define SVN_REV "@SVN_REV@"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp