Changeset 76 for tags


Ignore:
Timestamp:
Aug 13, 2020, 10:53:36 PM (4 years ago)
Author:
chronos
Message:
  • Modified: Used newer InnoSetup 6 and modern style.
  • Modified: Trunk pushed to 1.4.0 alfa.
  • Modified: Updates related to 1.3.0 release.
Location:
tags/1.3.0
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • tags/1.3.0/Install/win/Game2048.iss

    r61 r76  
    55#define MyAppNameShort "2048"
    66#define MyAppVersion "1.3.0"
    7 #define MyAppVersionSuffix "alfa"     
     7;#define MyAppVersionSuffix "alfa"     
    88#define MyAppPublisher "Chronosoft"
    99#define MyAppPublisherShort "Chronosoft"
    10 #define MyAppURL "http://app.zdechov.net/2048"
     10#define MyAppURL "https://app.zdechov.net/2048"
    1111#define MyAppExeName "Game2048.exe"
    1212#define MyAppDebugName "Game2048.dbg"
     
    3636AppSupportURL={#MyAppURL}
    3737AppUpdatesURL={#MyAppURL}
    38 DefaultDirName={pf}\{#MyAppPublisherShort}\{#MyAppName}
     38DefaultDirName={commonpf}\{#MyAppPublisherShort}\{#MyAppName}
    3939DefaultGroupName={#MyAppPublisherShort}\{#MyAppName}
    4040AllowNoIcons=yes
     
    5151; installation to run on all architectures (including Itanium,
    5252; since it's capable of running 32-bit code too).
     53WizardStyle=modern
    5354
    5455[Languages]
     
    6162
    6263[Registry]
    63 Root: HKCU; Subkey: "Software\Chronosoft\2048"; Flags: uninsdeletekey
     64Root: HKLM; Subkey: "Software\Chronosoft\2048"; Flags: uninsdeletekey
    6465
    6566[Files]
  • tags/1.3.0/Install/win/build.bat

    r6 r76  
    1818copy %MAIN_EXE% %WIN64_EXE%
    1919
    20 "c:\Program Files (x86)\Inno Setup 5\ISCC.exe" "%PROJECTNAME%.iss"
     20"c:\Program Files (x86)\Inno Setup 6\ISCC.exe" "%PROJECTNAME%.iss"
  • tags/1.3.0/Release Notes.txt

    r61 r76  
     1Version 1.3.0 (2020-08-13)
     2==========================
     3
     4* Added: Allow to slide blocks using mouse.
     5* Added: Roman numerals as tile skin.
     6* Added: Binary numbers tile skin.
     7* Added: Separated TGame paint and state change events.
     8* Modified: Update locking on combobox items initialization in new game form.
     9* Modified: Count total score using standard power of two numbers for all tile skins.
     10* Modified: Draw to Canvas through TMetaCanvas class.
     11* Modified: Animate tiles movements in background thread.
     12* Modified: Initialize TCore as first application form.
     13* Fixed: Build under Lazarus 2.0.10 and FPC 3.2.0.
     14* Fixed: Main menu was not translated.
     15* Fixed: Drawing board in AI mode.
     16* Fixed: Undo action was not enabled.
     17* Fixed: Init form opaque control style during its creation.
     18
    119Version 1.2.0 (2019-11-08)
    220==========================
  • tags/1.3.0/UCore.lfm

    r61 r76  
    99  PPI = 144
    1010  object ThemeManager1: TThemeManager
    11     left = 420
    12     top = 84
     11    Left = 420
     12    Top = 84
    1313  end
    1414  object PersistentForm1: TPersistentForm
    1515    MinVisiblePart = 50
    1616    EntireVisible = False
    17     left = 120
    18     top = 288
     17    Left = 120
     18    Top = 288
    1919  end
    2020  object ApplicationInfo1: TApplicationInfo
     
    2323    VersionMinor = 3
    2424    VersionBugFix = 0
    25     VersionSuffix = 'alfa'
    2625    HomePage = 'https://app.zdechov.net/2048'
    2726    AuthorsName = 'Chronos'
     
    2928    AppName = '2048'
    3029    Description = 'A single-player sliding block puzzle game.'
    31     ReleaseDate = 43777
     30    ReleaseDate = 44056
    3231    RegistryKey = '\Software\Chronosoft\2048'
    3332    RegistryRoot = rrKeyCurrentUser
    3433    License = 'CC0'
    35     left = 120
    36     top = 96
     34    Left = 120
     35    Top = 96
    3736  end
    3837  object Translator1: TTranslator
    3938    POFilesFolder = 'Languages'
    4039    OnTranslate = Translator1Translate
    41     left = 336
    42     top = 295
     40    Left = 336
     41    Top = 295
    4342  end
    4443  object ActionList1: TActionList
    45     left = 416
    46     top = 184
     44    Left = 416
     45    Top = 184
    4746    object ANew: TAction
    4847      Caption = 'New...'
     
    8483  end
    8584  object ThemeManager2: TThemeManager
    86     left = 163
    87     top = 405
     85    Left = 163
     86    Top = 405
    8887  end
    8988end
Note: See TracChangeset for help on using the changeset viewer.