Changeset 430bd7f7e9 in tspsg for resources


Ignore:
Timestamp:
Jul 31, 2009, 8:23:07 PM (15 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
ec54b4490b
Parents:
b5c9bcb585
Message:

+ Finished solving algorithm (needs thorough testing).
+ Solution can be saved to HTML or OpenDocument? format.
+ Added VERSIONINFO resource for windows builds.

  • Updated translations to have unified terminology everywhere.

NB: This will be the first public alpha build.

Location:
resources
Files:
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • resources/tspsg.qrc

    rb5c9bcb585 r430bd7f7e9  
    11<RCC>
    22    <qresource prefix="/images" >
    3         <file>qtlogo-64.png</file>
    43        <file>About.bmp</file>
    54        <file>Icon.png</file>
     
    2322        <file>icons/locale.png</file>
    2423        <file>icons/preferences_system.png</file>
     24        <file>icons/qtlogo-64.png</file>
    2525        <file>icons/roll.png</file>
    2626    </qresource>
  • resources/tspsg.rc

    rb5c9bcb585 r430bd7f7e9  
    11/*
    2  *  TSPSG - TSP Solver and Generator
     2 *  TSPSG: TSP Solver and Generator
    33 *  Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name>
    44 *
     
    1010
    1111#include "..\\src\\resource.h"
     12#pragma code_page(65001)
    1213
     14LANGUAGE        0x00, 0x00
     15
     16// Main Icon
    1317IDI_APPICON     ICON    "Icon.ico"
     18
     19// Version Info
     20VS_VERSION_INFO VERSIONINFO
     21        FILEVERSION BUILD_VERSION_MAJOR,BUILD_VERSION_MINOR,BUILD_RELEASE,BUILD_NUMBER
     22        PRODUCTVERSION BUILD_VERSION_MAJOR,BUILD_VERSION_MINOR,BUILD_RELEASE,BUILD_NUMBER
     23        FILEFLAGSMASK 0x17L
     24#ifdef _DEBUG
     25        FILEFLAGS 0x1L
     26#else
     27        FILEFLAGS 0x0L
     28#endif
     29#ifdef Q_OS_WINCE
     30        FILEOS 0x50000L
     31#else
     32        FILEOS 0x4L
     33#endif
     34        FILETYPE 0x1L
     35        FILESUBTYPE 0x0L
     36BEGIN
     37    BLOCK "StringFileInfo"
     38    BEGIN
     39        BLOCK "000004b0"
     40        BEGIN
     41            VALUE "Comments", BUILD_STATUS
     42            VALUE "CompanyName", "..::Lёppsville::.. Homes"
     43            VALUE "FileDescription", "TSPSG: TSP Solver and Generator"
     44            VALUE "FileVersion", BUILD_VERSION
     45            VALUE "InternalName", "TSPSG"
     46            VALUE "LegalCopyright", "Copyright © 2007 - 2009 Lёppa"
     47            VALUE "OriginalFilename", "tspsg.exe"
     48            VALUE "ProductName", "TSPSG"
     49            VALUE "ProductVersion", BUILD_VERSION
     50        END
     51    END
     52    BLOCK "VarFileInfo"
     53    BEGIN
     54        VALUE "Translation", 0x0, 1200
     55    END
     56END
Note: See TracChangeset for help on using the changeset viewer.