diff --git a/runtime/pgAdmin4.pro b/runtime/pgAdmin4.pro index 647924a65..5a4ade0fb 100644 --- a/runtime/pgAdmin4.pro +++ b/runtime/pgAdmin4.pro @@ -1,3 +1,9 @@ +VERSION = 1.1.0.0 +QMAKE_TARGET_COMPANY = "The pgAdmin Development Team" +QMAKE_TARGET_PRODUCT = "pgAdmin 4" +QMAKE_TARGET_DESCRIPTION = "pgAdmin 4 Desktop Runtime" +QMAKE_TARGET_COPYRIGHT = "Copyright 2013 - 2016, The pgAdmin Development Team" + # Configure QT modules for the appropriate version of QT greaterThan(QT_MAJOR_VERSION, 4) { message(Building for QT5+...) diff --git a/web/config.py b/web/config.py index c38f02f85..d74ffea3d 100644 --- a/web/config.py +++ b/web/config.py @@ -29,6 +29,9 @@ APP_ICON = 'icon-postgres-alt' # NOTE!!! # If you change any of APP_RELEASE, APP_REVISION or APP_SUFFIX, then you # must also change APP_VERSION_INT to match. +# +# Any changes made here must also be made in runtime/pgAdmin4.pro +# # Application version number components APP_RELEASE = 1 @@ -51,6 +54,7 @@ else: APP_VERSION = '%s.%s-%s' % (APP_RELEASE, APP_REVISION, APP_SUFFIX) # Copyright string for display in the app +# Any changes made here must also be made in runtime/pgAdmin4.pro APP_COPYRIGHT = 'Copyright 2013 - 2016, The pgAdmin Development Team' ##########################################################################