Codebase list connectagram / upstream/1.2.6
New upstream version 1.2.6 Innocent De Marchi 6 years ago
5 changed file(s) with 23 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
0 1.2.6
1 -----
2 * FIXED: Could not compile with Qt 5.10.
3
4 1.2.5
5 -----
6 * FIXED: Did not always install translations in Linux.
7
08 1.2.4
19 -----
210 * FIXED: Definitions were not being downloaded.
0 lessThan(QT_VERSION, 5.2) {
0 lessThan(QT_MAJOR_VERSION, 5) {
1 error("Connectagram requires Qt 5.2 or greater")
2 }
3 equals(QT_MAJOR_VERSION, 5):lessThan(QT_MINOR_VERSION, 2) {
14 error("Connectagram requires Qt 5.2 or greater")
25 }
36
47 TEMPLATE = app
58 QT += network widgets
69 CONFIG += warn_on c++11
10
11 DEFINES += QT_DEPRECATED_WARNINGS
12 DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x051000
13 DEFINES += QT_NO_NARROWING_CONVERSIONS_IN_CONNECT
714
815 # Allow in-tree builds
916 !win32 {
1320 }
1421
1522 # Set program version
16 VERSION = 1.2.4
23 VERSION = 1.2.6
1724 DEFINES += VERSIONSTR=\\\"$${VERSION}\\\"
1825
1926 # Set program name
100107 desktop.path = $$PREFIX/share/applications/
101108
102109 appdata.files = icons/connectagram.appdata.xml
103 appdata.path = $$PREFIX/share/appdata/
110 appdata.path = $$PREFIX/share/metainfo/
104111
105 qm.files = translations/*.qm
112 qm.files = $$replace(TRANSLATIONS, .ts, .qm)
106113 qm.path = $$PREFIX/share/connectagram/translations
107114 qm.CONFIG += no_check_exist
108115
11
22 APP='Connectagram'
33 BUNDLE="$APP.app"
4 VERSION='1.2.4'
4 VERSION='1.2.6'
55
66 # Remove any previous disk folder or DMG
77 echo -n 'Preparing... '
00 /***********************************************************************
11 *
2 * Copyright (C) 2009, 2012, 2013, 2014, 2015, 2016 Graeme Gott <graeme@gottcode.org>
2 * Copyright (C) 2009, 2012, 2013, 2014, 2015, 2016, 2017 Graeme Gott <graeme@gottcode.org>
33 *
44 * This program is free software: you can redistribute it and/or modify
55 * it under the terms of the GNU General Public License as published by
261261 QMessageBox::about(this, tr("About"), QString("<p><center><big><b>%1 %2</b></big><br/>%3<br/><small>%4<br/>%5</small></center></p><p><center>%6</center></p>")
262262 .arg(tr("Connectagram"), QCoreApplication::applicationVersion(),
263263 tr("A word unscrambling game"),
264 tr("Copyright &copy; 2009-%1 by Graeme Gott").arg("2016"),
264 tr("Copyright &copy; 2009-%1 by Graeme Gott").arg("2017"),
265265 tr("Released under the <a href=\"http://www.gnu.org/licenses/gpl.html\">GPL 3</a> license"),
266266 tr("Definitions are from <a href=\"http://wiktionary.org/\">Wiktionary</a>"))
267267 );
33 !define APPNAME "Connectagram"
44 !define VERSIONMAJOR 1
55 !define VERSIONMINOR 2
6 !define VERSIONPATCH 4
6 !define VERSIONPATCH 6
77 !define APPVERSION "${VERSIONMAJOR}.${VERSIONMINOR}.${VERSIONPATCH}"
88 !define ABOUTURL "https://gottcode.org/connectagram/"
99