diff --git a/ChangeLog b/ChangeLog index ca3a9bd8e..07dc285f4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -43,6 +43,7 @@ Enhancements: - #7369 Re-implement packaging for GitHub workflows (Linux ARM) - #7372 Add Git SHA to about screen and --version - #7373 Upgrade from Qt5 to Qt6 for more modern UI +- #7374 Add missing DEB and RPM dependencies # 1.14.6 diff --git a/LICENSE b/LICENSE index a96e48160..c04900ff2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ -Copyright (C) 2012-2016 Symless Ltd. -Copyright (C) 2008-2014 Nick Bolton -Copyright (C) 2002-2014 Chris Schoeneman +Copyright (C) 2012-2024 Symless Ltd. +Copyright (C) 2009-2012 Nick Bolton +Copyright (C) 2002-2009 Chris Schoeneman This program is released under the GPL with the additional exemption that compiling, linking, and/or using OpenSSL is allowed. diff --git a/cmake/Packaging.cmake b/cmake/Packaging.cmake index 6a391b1a2..8a4e508f2 100644 --- a/cmake/Packaging.cmake +++ b/cmake/Packaging.cmake @@ -90,6 +90,7 @@ macro(configure_linux_packaging) set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Synergy ") set(CPACK_DEBIAN_PACKAGE_SECTION "utils") + set(CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON) set(CPACK_RPM_PACKAGE_LICENSE "GPLv2") set(CPACK_RPM_PACKAGE_GROUP "Applications/System") diff --git a/config.yaml b/config.yaml index 89a6804fd..910319013 100644 --- a/config.yaml +++ b/config.yaml @@ -38,7 +38,8 @@ config: qt6-base-dev \ qt6-tools-dev \ libqt6core5compat6-dev \ - libgtk-3-dev + libgtk-3-dev \ + file ubuntu: <<: *debian diff --git a/src/lib/common/Version.cpp b/src/lib/common/Version.cpp index 3c7fee081..304a65f1f 100644 --- a/src/lib/common/Version.cpp +++ b/src/lib/common/Version.cpp @@ -1,7 +1,8 @@ /* * synergy -- mouse and keyboard sharing utility - * Copyright (C) 2012-2016 Symless Ltd. - * Copyright (C) 2004 Chris Schoeneman + * Copyright (C) 2012-2024 Symless Ltd. + * Copyright (C) 2009-2012 Nick Bolton + * Copyright (C) 2002-2009 Chris Schoeneman * * This package is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -21,8 +22,8 @@ const char *kBuildYear = __DATE__ + 7; const char *kApplication = "Synergy"; const char *kCopyright = "Copyright (C) 2012-%s Symless Ltd.\n" - "Copyright (C) 2008-2014 Nick Bolton\n" - "Copyright (C) 2002-2014 Chris Schoeneman"; + "Copyright (C) 2009-2012 Nick Bolton\n" + "Copyright (C) 2002-2009 Chris Schoeneman"; const char *kContact = "Email: engineering@symless.com"; const char *kWebsite = "https://symless.com/"; const char *kVersion = SYNERGY_VERSION;