From 0864d67a9a6a4071bb5dd36f4af315390919544b Mon Sep 17 00:00:00 2001 From: Jonathan Kawohl Date: Mon, 24 Oct 2016 15:16:06 +0200 Subject: [PATCH] fixing wrong files Revert "fix for https://github.com/owncloud/client/issues/1251" This reverts commit 4f1feab845462a6448626806a39eef44a2c6900e. --- admin/osx/macosx.pkgproj | 24 ++++++++++++------------ src/libsync/owncloudtheme.cpp | 5 ++--- src/libsync/theme.cpp | 7 +++---- 3 files changed, 17 insertions(+), 19 deletions(-) diff --git a/admin/osx/macosx.pkgproj b/admin/osx/macosx.pkgproj index 4883a4e90..9b9b891bc 100644 --- a/admin/osx/macosx.pkgproj +++ b/admin/osx/macosx.pkgproj @@ -22,7 +22,7 @@ GID 80 PATH - owncloud.app + @APPLICATION_EXECUTABLE@.app PATH_TYPE 3 PERMISSIONS @@ -474,14 +474,14 @@ POSTINSTALL_PATH PATH - /Users/jonathankawohl/github/client/admin/osx/post_install.sh + @CMAKE_CURRENT_BINARY_DIR@/post_install.sh PATH_TYPE 0 PREINSTALL_PATH PATH - /Users/jonathankawohl/github/client/admin/osx/pre_install.sh + @CMAKE_CURRENT_BINARY_DIR@/pre_install.sh PATH_TYPE 0 @@ -495,13 +495,13 @@ CONCLUSION_ACTION 0 IDENTIFIER - com.ownCloud.client + @APPLICATION_REV_DOMAIN_INSTALLER@ NAME - ownCloud + @APPLICATION_NAME_XML_ESCAPED@ OVERWRITE_PERMISSIONS VERSION - 2.3.0.0 + @MIRALL_VERSION_FULL@ UUID 7D7219B7-1897-48C3-8533-842BDEC46F71 @@ -1029,7 +1029,7 @@ OVERWRITE_PERMISSIONS VERSION - 2.3.0.0 + @MIRALL_VERSION_FULL@ TYPE 0 @@ -1065,12 +1065,12 @@ BACKGROUND_PATH PATH - /Users/jonathankawohl/github/client/admin/osx/installer-background.png + @MAC_INSTALLER_BACKGROUND_FILE@ PATH_TYPE 0 CUSTOM - 1 + @MAC_INSTALLER_DO_CUSTOM_BACKGROUND@ SCALING 0 @@ -1245,7 +1245,7 @@ LANGUAGE English VALUE - ownCloud Client + @APPLICATION_NAME_XML_ESCAPED@ Client @@ -1445,9 +1445,9 @@ NAME - ownCloud Installer + @APPLICATION_NAME_XML_ESCAPED@ Installer REFERENCE_FOLDER_PATH - + @CMAKE_INSTALL_DIR@ SHARED_GLOBAL_DATA diff --git a/src/libsync/owncloudtheme.cpp b/src/libsync/owncloudtheme.cpp index 6809d0426..09121acd6 100644 --- a/src/libsync/owncloudtheme.cpp +++ b/src/libsync/owncloudtheme.cpp @@ -45,9 +45,8 @@ QString ownCloudTheme::about() const { QString devString; devString = trUtf8("

Version %2. For more information visit %4

" - "

For known issues and help, please visit: central.owncloud.org

" - "

By Klaas Freitag, Daniel Molkentin,Olivier Goffart, Markus Götz" - ", Jan-Christoph Borchardt, and others.

" + "

By Klaas Freitag, Daniel Molkentin, Jan-Christoph Borchardt, " + "Olivier Goffart, Markus Götz and others.

" "

Copyright ownCloud GmbH

" "

Licensed under the GNU General Public License (GPL) Version 2.0
" "ownCloud and the ownCloud Logo are registered trademarks of ownCloud GmbH " diff --git a/src/libsync/theme.cpp b/src/libsync/theme.cpp index 9b67f88f8..53e850b99 100644 --- a/src/libsync/theme.cpp +++ b/src/libsync/theme.cpp @@ -285,8 +285,7 @@ QString Theme::gitSHA1() const const QString gitSha1(QLatin1String(GIT_SHA1)); devString = QCoreApplication::translate("ownCloudTheme::about()", "

Built from Git revision %2" - " on %3, %4 using Qt %5, %6") - + " on %3, %4 using Qt %5, %6

") .arg(githubPrefix+gitSha1).arg(gitSha1.left(6)) .arg(__DATE__).arg(__TIME__) .arg(QT_VERSION_STR) @@ -301,11 +300,11 @@ QString Theme::about() const re = tr("

Version %1. For more information please visit %3.

") .arg(MIRALL_VERSION_STRING).arg("http://" MIRALL_STRINGIFY(APPLICATION_DOMAIN)) .arg(MIRALL_STRINGIFY(APPLICATION_DOMAIN)); - + re += tr("

Copyright ownCloud GmbH

"); re += tr("

Distributed by %1 and licensed under the GNU General Public License (GPL) Version 2.0.
" "%2 and the %2 logo are registered trademarks of %1 in the " - "United States, other countries, or both.
") + "United States, other countries, or both.

") .arg(APPLICATION_VENDOR).arg(APPLICATION_NAME); re += gitSHA1(); -- 2.39.5