Changeset 132 in tspsg-svn
- Timestamp:
- Sep 5, 2010, 2:42:20 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/README.txt
r124 r132 33 33 34 34 35 Third parties: 35 I'd like to give credits to the following projects which were used in 36 the creation of TSP Solver and Generator: 36 37 37 * This software is created using opensource version of Qt framework, 38 see http://qt.nokia.com/ 38 * TSPSG was created using Qt framework licensed under the terms of 39 the GNU Lesser General Public License, 40 see http://qt.nokia.com/. 39 41 40 * Most icons used in this software are part of Oxygen Icons project41 licensedaccording to the GNU Lesser General Public License,42 see http://www.oxygen-icons.org/ 42 * Most icons used in TSPSG are part of Oxygen Icons project licensed 43 according to the GNU Lesser General Public License, 44 see http://www.oxygen-icons.org/. 43 45 44 * Country flag icons used in this software are part of the free Flag 45 Icons collection created by IconDrawer, 46 see http://www.icondrawer.com/ 46 * Country flag icons used in TSPSG are part of the free Flag Icons 47 collection created by IconDrawer, 48 see http://www.icondrawer.com/. 49 50 * TSPSG comes with the default "embedded" font DejaVu LGC Sans Mono 51 from the DejaVu fonts licensed under a Free license, 52 see http://dejavu-fonts.org/. 47 53 48 54 -
trunk/install.pri
r125 r132 66 66 # For wince: we are deploying to \Program Files\TSPSG. 67 67 wince* { 68 PREFIX = "\ Program Files"68 PREFIX = "\\Program Files" 69 69 share.sources = $$share.files 70 70 # l10n.sources = $$l10n.files \ -
trunk/src/main.cpp
r130 r132 47 47 app.setOrganizationName("Oleksii \"Lёppa\" Serdiuk"); 48 48 app.setOrganizationDomain("oleksii.name"); 49 app.setApplicationName("TSP SG: TSPSolver and Generator");49 app.setApplicationName("TSP Solver and Generator"); 50 50 app.setApplicationVersion(BUILD_VERSION); 51 51 … … 53 53 qsrand(QDateTime::currentDateTime().toTime_t() ^ QCursor::pos().x() ^ QCursor::pos().y()); 54 54 55 #ifdef Q_OS_WINCE_WM 56 // Qt "leaves" unpacked .ttf files after running - let's try to delete them. 57 QStringList files = QDir(app.applicationDirPath(), "*.ttf").entryList(); 58 foreach (QString file, files) { 59 QFile::remove(file); 60 } 61 #endif 55 62 // Don't load the font if it is already available 56 63 if (!QFontDatabase().families().contains(DEF_FONT_FACE)) -
trunk/src/os.h
r116 r132 63 63 * \brief The target operating system ID. 64 64 * 65 * This value isused in task file metadata.65 * This value will be used in task file metadata. 66 66 */ 67 67 #ifdef Q_OS_AIX
Note: See TracChangeset
for help on using the changeset viewer.