diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 74613572..1a060316 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -17,7 +17,7 @@ on: #-------------------------------------------------------------------------------- env: - VERSION: "1.0.6" + VERSION: "1.0.7" EXECUTABLE: "SerialStudio" APPLICATION: "Serial Studio" QMAKE_PROJECT: "Serial-Studio.pro" diff --git a/deploy/linux/serial-studio.desktop b/deploy/linux/serial-studio.desktop index bfde60ff..ffda78b2 100644 --- a/deploy/linux/serial-studio.desktop +++ b/deploy/linux/serial-studio.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Name=Serial Studio -Comment=Serial data processing & visualization software +Comment=Multi-purpose serial data visualization & processing program Exec=serial-studio Terminal=false Type=Application diff --git a/deploy/macOS/info.plist b/deploy/macOS/info.plist index 33e2528b..f7da2e0a 100644 --- a/deploy/macOS/info.plist +++ b/deploy/macOS/info.plist @@ -19,7 +19,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.0.6 + 1.0.7 LSHasLocalizedDisplayName NSPrincipalClass diff --git a/deploy/windows/nsis/license.txt b/deploy/windows/nsis/license.txt deleted file mode 100644 index e54b83db..00000000 --- a/deploy/windows/nsis/license.txt +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2020-2021 Alex Spataru - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/deploy/windows/nsis/readme.txt b/deploy/windows/nsis/readme.txt deleted file mode 100644 index 2354d48a..00000000 --- a/deploy/windows/nsis/readme.txt +++ /dev/null @@ -1,13 +0,0 @@ -STEPS ------ - -* Assuming you have downloaded NSIS (http://nsis.sf.net) - -1. Compile the application -2. Run "windeployqt" -3. Place the output files in a folder named bin -4. Create a new folder with the application name -5. Place the "bin" folder in the application folder -6. Copy the script and place it one directory above the application folder -7. Copy the license.txt and place it one directory above the application folder (next to script file) -8. Compile the script \ No newline at end of file diff --git a/deploy/windows/nsis/setup.nsi b/deploy/windows/nsis/setup.nsi index 8482d654..1c7b6c3a 100644 --- a/deploy/windows/nsis/setup.nsi +++ b/deploy/windows/nsis/setup.nsi @@ -29,7 +29,7 @@ Unicode True !define DESCRIPTION "Dashboard software for serial port devices" !define VERSIONMAJOR 1 !define VERSIONMINOR 0 -!define VERSIONBUILD 6 +!define VERSIONBUILD 7 !define MUI_ABORTWARNING !define INSTALL_DIR "$PROGRAMFILES64\${APPNAME}" !define MUI_FINISHPAGE_RUN diff --git a/src/AppInfo.h b/src/AppInfo.h index f29ed6a1..ac234757 100644 --- a/src/AppInfo.h +++ b/src/AppInfo.h @@ -24,7 +24,7 @@ #define APP_INFO_H // clang-format off -#define APP_VERSION "1.0.6" +#define APP_VERSION "1.0.7" #define APP_DEVELOPER "Alex Spataru" #define APP_NAME "Serial Studio" #define APP_SUPPORT_URL "https://github.com/serial-studio"