Changeset 2
- Timestamp:
- Sep 20, 2008, 2:46:53 PM (16 years ago)
- Files:
-
- 1 added
- 2 deleted
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
About.dfm
r1 r2 231 231 Anchors = [akLeft, akTop, akRight, akBottom] 232 232 Lines.Strings = ( 233 ' verze 3.2' 234 ' ---------------' 235 ' + Oprava vyhled'#225'v'#225'n'#237' na HoF datab'#225'zi' 236 ' + Oprava na'#269#237't'#225'n'#237' realm'#367' z servery.wowresource.eu' 237 '' 233 238 ' verze 3.1' 234 239 ' ---------------' -
About.~dfm
r1 r2 4 4 BorderStyle = bsDialog 5 5 Caption = 'O programu' 6 ClientHeight = 3 306 ClientHeight = 354 7 7 ClientWidth = 405 8 8 Color = clBtnFace … … 227 227 Top = 88 228 228 Width = 389 229 Height = 2 37229 Height = 261 230 230 Align = alCustom 231 231 Anchors = [akLeft, akTop, akRight, akBottom] 232 232 Lines.Strings = ( 233 ' verze 3.2' 234 ' ---------------' 235 ' + Oprava vyhled'#225'v'#225'n'#237' na HoF datab'#225'zi' 236 '' 233 237 ' verze 3.1' 234 238 ' ---------------' … … 248 252 ' + Mo'#382'nost obnoven'#237' defaultn'#237'ho nastaven'#237 249 253 ' + V detajlech o serveru interaktivn'#237' odkazy' 254 ' + Zobrazov'#225'n'#237' odezvy serveru' 250 255 251 256 ' + Mo'#382'nost zobrazov'#225'n'#237' detajl'#367' v hlavn'#237'm formul'#225#345'i p'#345'i ozna'#269'en'#237 + 252 257 ' serveru' 253 258 ' + Import server'#367' z WoWResource.eu, WoWStatus.net' 259 ' + P'#345'id'#225'n'#237' n'#225'pov'#283'dy' 254 260 '' 255 261 ' verze 3.0' -
HoFclient.cfg
r1 r2 34 34 -LE"c:\program files\borland\delphi7\Projects\Bpl" 35 35 -LN"c:\program files\borland\delphi7\Projects\Bpl" 36 -U"C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\CoolTrayIcon;C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\VCLSkin.v4.04.For.D7" 37 -O"C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\CoolTrayIcon;C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\VCLSkin.v4.04.For.D7" 38 -I"C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\CoolTrayIcon;C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\VCLSkin.v4.04.For.D7" 39 -R"C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\CoolTrayIcon;C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\VCLSkin.v4.04.For.D7" 36 40 -w-UNSAFE_TYPE 37 41 -w-UNSAFE_CODE -
HoFclient.dof
r1 r2 95 95 PackageDLLOutputDir= 96 96 PackageDCPOutputDir= 97 SearchPath= 97 SearchPath=C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\CoolTrayIcon;C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\VCLSkin.v4.04.For.D7 98 98 Packages=vcl;rtl;vclx;indy;inet;xmlrtl;vclie;inetdbbde;inetdbxpress;dbrtl;dsnap;dsnapcon;vcldb;soaprtl;VclSmp;dbexpress;dbxcds;inetdb;bdertl;vcldbx;webdsnap;websnap;adortl;ibxpress;teeui;teedb;tee;dss;visualclx;visualdbclx;vclactnband;vclshlctrls;IntrawebDB_50_70;Intraweb_50_70;Rave50CLX;Rave50VCL;dclOfficeXP;CoolTrayIcon_D6plus;InfoPanel;WallpaperChangerPackage;WinSkinD7R;magras70 99 99 Conditionals= … … 138 138 Count=1 139 139 Item0=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE; 140 [HistoryLists\hlSearchPath] 141 Count=2 142 Item0=C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\CoolTrayIcon;C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\VCLSkin.v4.04.For.D7 143 Item1=C:\Documents and Settings\Roman\Dokumenty\Delphi7-Projecty\client_SVN\_Components\CoolTrayIcon -
HoFclient.dpr
r1 r2 1 1 2 program HoFclient; 2 3 -
HoFclient.~dpr
r1 r2 10 10 News in 'News.pas' {Form6}, 11 11 Details in 'Details.pas' {Form7}, 12 ImportZWebu in 'ImportZWebu.pas' {Form8}; 12 ImportZWebu in 'ImportZWebu.pas' {Form8}, 13 Loading in 'Loading.pas' {Form9}; 13 14 14 15 {$R *.res} … … 24 25 Application.CreateForm(TForm7, Form7); 25 26 Application.CreateForm(TForm8, Form8); 27 Application.CreateForm(TForm9, Form9); 26 28 Application.Run; 27 29 end. -
Main.pas
r1 r2 218 218 219 219 const 220 ApplicationVersion = '3. 1';221 ApplicationRevision = 4;220 ApplicationVersion = '3.2'; 221 ApplicationRevision = 5; 222 222 R = '\Software\maronsoft\Heroes of Fantasy client pack\'; 223 223 UpdateInfoFile = 'http://wow.zdechov.net/client/aktualizace.txt'; … … 1349 1349 Form8.ListView1.Clear; 1350 1350 Form8.WriteServers('http://servery.wowresource.eu/index.php'); 1351 if EndLoadingBool = False then 1352 Form8.WriteServers('http://servery.wowresource.eu/index.php?p=2'); 1351 // if EndLoadingBool = False then Form8.WriteServers('http://servery.wowresource.eu/index.php?p=2'); 1353 1352 Form9.Close; 1354 1353 … … 1375 1374 begin 1376 1375 //http://wow.zdechov.net/db/index.php?id=questy&find=Hledat&q=test 1377 OpenSearchURL('http://wow.zdechov.net/d b/index.php?id=questy&find=Hledat&q=');1376 OpenSearchURL('http://wow.zdechov.net/databaze/?search='); 1378 1377 end; 1379 1378 -
Main.~pas
r1 r2 218 218 219 219 const 220 ApplicationVersion = '3. 1';221 ApplicationRevision = 4;220 ApplicationVersion = '3.2'; 221 ApplicationRevision = 5; 222 222 R = '\Software\maronsoft\Heroes of Fantasy client pack\'; 223 223 UpdateInfoFile = 'http://wow.zdechov.net/client/aktualizace.txt'; … … 1111 1111 begin 1112 1112 // 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; 1114 1119 end; 1115 1120 … … 1370 1375 begin 1371 1376 //http://wow.zdechov.net/db/index.php?id=questy&find=Hledat&q=test 1372 OpenSearchURL('http://wow.zdechov.net/d b/index.php?id=questy&find=Hledat&q=');1377 OpenSearchURL('http://wow.zdechov.net/databaze/?search='); 1373 1378 end; 1374 1379 -
_instalace/HeroesOfFantasyClientPack.nsi
r1 r2 9 9 ;General 10 10 11 !define VERSION "3. 1"11 !define VERSION "3.2" 12 12 !define TITLE "HeroesOfFantasyClient" 13 13 !define FULL_TITLE "Heroes of Fantasy client"
Note:
See TracChangeset
for help on using the changeset viewer.