Changeset 361


Ignore:
Timestamp:
Dec 31, 2024, 12:02:35 PM (8 days ago)
Author:
chronos
Message:
  • Modified: Use absolute path in game system file names.
Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Core.lfm

    r350 r361  
    33  OnDestroy = DataModuleDestroy
    44  OldCreateOrder = False
    5   Height = 811
    6   HorizontalOffset = 418
    7   VerticalOffset = 203
    8   Width = 1258
    9   PPI = 144
     5  Height = 676
     6  HorizontalOffset = 348
     7  VerticalOffset = 169
     8  Width = 1048
     9  PPI = 120
    1010  object ActionListMain: TActionList
    1111    Images = ImageListSmall
    12     Left = 137
    13     Top = 60
     12    Left = 114
     13    Top = 50
    1414    object AExit: TAction
    1515      Category = 'Game'
     
    5959    object AGameLoad: TAction
    6060      Category = 'Game'
    61       Caption = 'Load'
     61      Caption = 'Load...'
    6262      ImageIndex = 10
    6363      OnExecute = AGameLoadExecute
     
    134134  end
    135135  object ImageListSmall: TImageList
    136     Left = 784
    137     Top = 420
     136    Left = 653
     137    Top = 350
    138138    Bitmap = {
    139139      4C7A130000001000000010000000D71900000000000078DAED9B07585457DAC7
     
    350350    POFilesFolder = 'Languages;Packages/Common/Languages'
    351351    OnTranslate = Translator1Translate
    352     Left = 137
    353     Top = 436
     352    Left = 114
     353    Top = 363
    354354  end
    355355  object ImageListLarge: TImageList
    356356    Height = 32
    357357    Width = 32
    358     Left = 786
    359     Top = 286
     358    Left = 655
     359    Top = 238
    360360    Bitmap = {
    361361      4C7A100000002000000020000000B27500000000000078DAECBD055895F7FB07
     
    13081308    RootName = 'CONFIG'
    13091309    ReadOnly = False
    1310     Left = 137
    1311     Top = 556
     1310    Left = 114
     1311    Top = 463
    13121312  end
    13131313  object OpenDialog1: TOpenDialog
    13141314    DefaultExt = '.xtmap'
    1315     Left = 1126
    1316     Top = 292
     1315    Left = 938
     1316    Top = 243
    13171317  end
    13181318  object SaveDialog1: TSaveDialog
    13191319    Title = 'Save as'
    13201320    DefaultExt = '.xtmap'
    1321     Left = 1126
    1322     Top = 166
     1321    Left = 938
     1322    Top = 138
    13231323  end
    13241324  object ApplicationInfo: TApplicationInfo
     
    18551855      0000000000000000000000000000000000000000000000000000
    18561856    }
    1857     Left = 137
    1858     Top = 180
     1857    Left = 114
     1858    Top = 150
    18591859  end
    18601860  object PersistentForm1: TPersistentForm
    18611861    MinVisiblePart = 50
    18621862    EntireVisible = False
    1863     Left = 780
    1864     Top = 600
     1863    Left = 650
     1864    Top = 500
    18651865  end
    18661866  object ScaleDPI1: TScaleDPI
    18671867    AutoDetect = False
    1868     Left = 136
    1869     Top = 676
     1868    Left = 113
     1869    Top = 563
    18701870  end
    18711871  object LastOpenedList1: TLastOpenedList
    18721872    MaxCount = 10
    18731873    OnChange = LastOpenedList1Change
    1874     Left = 137
    1875     Top = 300
     1874    Left = 114
     1875    Top = 250
    18761876  end
    18771877  object ThemeManager1: TThemeManager
    1878     Left = 404
    1879     Top = 324
     1878    Left = 337
     1879    Top = 270
    18801880  end
    18811881end
  • trunk/Core.lrj

    r337 r361  
    1010{"hash":366789,"name":"tcore.agamesave.caption","sourcebytes":[83,97,118,101],"value":"Save"},
    1111{"hash":124639694,"name":"tcore.agamesaveas.caption","sourcebytes":[83,97,118,101,32,97,115,46,46,46],"value":"Save as..."},
    12 {"hash":341364,"name":"tcore.agameload.caption","sourcebytes":[76,111,97,100],"value":"Load"},
     12{"hash":56062302,"name":"tcore.agameload.caption","sourcebytes":[76,111,97,100,46,46,46],"value":"Load..."},
    1313{"hash":213582195,"name":"tcore.asettings.caption","sourcebytes":[83,101,116,116,105,110,103,115],"value":"Settings"},
    1414{"hash":19013235,"name":"tcore.asettings.hint","sourcebytes":[65,112,112,108,105,99,97,116,105,111,110,32,115,101,116,116,105,110,103,115],"value":"Application settings"},
  • trunk/Core.pas

    r360 r361  
    672672  if GameFilesDir <> '' then
    673673    SystemsDir := GameFilesDir + DirectorySeparator + GameSystemsDirName
    674     else SystemsDir := GameSystemsDirName;
     674    else SystemsDir := ExpandFileName(GameSystemsDirName);
    675675  if DirectoryExists(SystemsDir) then begin
    676676    GameSystems.LoadFromDir(SystemsDir);
  • trunk/Languages/xtactics.cs.po

    r355 r361  
    486486#: tcore.agameload.caption
    487487msgctxt "tcore.agameload.caption"
    488 msgid "Load"
    489 msgstr "Načíst"
     488msgid "Load..."
     489msgstr "Načíst..."
    490490
    491491#: tcore.agamenew.caption
  • trunk/Languages/xtactics.pot

    r355 r361  
    465465#: tcore.agameload.caption
    466466msgctxt "tcore.agameload.caption"
    467 msgid "Load"
     467msgid "Load..."
    468468msgstr ""
    469469
  • trunk/Packages/PinConnection/PinConnection.lpk

    r357 r361  
    2121        </SyntaxOptions>
    2222      </Parsing>
     23      <CodeGeneration>
     24        <Optimizations>
     25          <OptimizationLevel Value="0"/>
     26        </Optimizations>
     27      </CodeGeneration>
    2328      <Linking>
    2429        <Debugging>
  • trunk/xtactics.lpi

    r355 r361  
    7474      </Item2>
    7575      <SharedMatrixOptions Count="2">
    76         <Item1 ID="257295799247" Targets="Common,TemplateGenerics,CoolStreaming" Modes="Debug" Value="-g -gl -gh -CirotR -O1"/>
    77         <Item2 ID="262602526292" Targets="Common,TemplateGenerics,CoolStreaming" Modes="Release" Value="-CX -XX -O3"/>
     76        <Item1 ID="257295799247" Targets="Common,TemplateGenerics,CoolStreaming,PinConnection" Modes="Debug" Value="-g -gl -gh -CirotR -O1"/>
     77        <Item2 ID="262602526292" Targets="Common,TemplateGenerics,CoolStreaming,PinConnection" Modes="Release" Value="-CX -XX -O3"/>
    7878      </SharedMatrixOptions>
    7979    </BuildModes>
Note: See TracChangeset for help on using the changeset viewer.