Changeset 2 for Main.~pas


Ignore:
Timestamp:
Sep 20, 2008, 2:46:53 PM (16 years ago)
Author:
maron
Message:

Verze 3.2 oprava chyb vyhledávání, importování serverů

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Main.~pas

    r1 r2  
    218218
    219219const
    220   ApplicationVersion = '3.1';
    221   ApplicationRevision = 4;
     220  ApplicationVersion = '3.2';
     221  ApplicationRevision = 5;
    222222  R = '\Software\maronsoft\Heroes of Fantasy client pack\';
    223223  UpdateInfoFile = 'http://wow.zdechov.net/client/aktualizace.txt';
     
    11111111begin
    11121112//  ShowWeb;
    1113   ShellExecute(Handle, 'open', PChar(ExtractFileDir(Application.ExeName)+'\NÁPOVĚDA.HLP'), nil, nil, SW_SHOWNORMAL);
     1113  if FileExists(ExtractFileDir(Application.ExeName)+'\NÁPOVĚDA.HLP') then begin
     1114    ShellExecute(Handle, 'open', PChar(ExtractFileDir(Application.ExeName)+'\NÁPOVĚDA.HLP'), nil, nil, SW_SHOWNORMAL);
     1115  end else begin
     1116    ShowMessage('Nápověda nalezena!');
     1117    StatusBar1.SimpleText := 'Nápověda nalezena!';
     1118  end;
    11141119end;
    11151120
     
    13701375begin
    13711376  //http://wow.zdechov.net/db/index.php?id=questy&find=Hledat&q=test
    1372   OpenSearchURL('http://wow.zdechov.net/db/index.php?id=questy&find=Hledat&q=');
     1377  OpenSearchURL('http://wow.zdechov.net/databaze/?search=');
    13731378end;
    13741379
Note: See TracChangeset for help on using the changeset viewer.