You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(10) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(19) |
Feb
(12) |
Mar
(4) |
Apr
(1) |
May
(8) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2003 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: root <ro...@re...> - 2002-02-03 19:16:57
|
Update of /home/tank_cvs/tank In directory router.bac.net.au:/tmp/cvs-serv29111 Modified Files: Main.pas Log Message: Changed the IRC Chat interface, the panels were to hard to deal with.. added some stuff like channel topic and user count... **We need to fix how it adds a blank user to the top of the listbox... also whne people disconnect the listbox needs to be updated.. and when we switch channels.. oh.. check out the NEW ABOUT FORM Index: Main.pas =================================================================== RCS file: /home/tank_cvs/tank/Main.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Main.pas 2002/01/31 23:28:54 1.3 --- Main.pas 2002/02/03 19:21:24 1.4 *************** *** 66,84 **** LBServers: TListBox; MSearchTraffic: TMemo; - gnuconnect: TIdTCPClient; - download: TIdHTTP; - gnuaccept: TIdTCPServer; - upload: TIdHTTPServer; ircClient: TIdIRC; lbxUsers: TListBox; - pnlChatSplit: TPanel; - redChatSession: TRichEdit; - txtChatSend: TEdit; - btnIRCOnOff: TBitBtn; ActionManager1: TActionManager; actIRCConnect: TAction; actIRCDisconnect: TAction; lblIRCChannel: TLabel; ! cbxIRCChannel: TComboBox; procedure FormCreate(Sender: TObject); procedure Exit1Click(Sender: TObject); --- 66,83 ---- LBServers: TListBox; MSearchTraffic: TMemo; ircClient: TIdIRC; lbxUsers: TListBox; ActionManager1: TActionManager; actIRCConnect: TAction; actIRCDisconnect: TAction; + txtChatSend: TEdit; lblIRCChannel: TLabel; ! CbxIRCChannel: TComboBox; ! redChatSession: TRichEdit; ! lblChannelInfo: TLabel; ! lblChatUserCount: TLabel; ! btnIRCOnOFF: TBitBtn; ! TimerChatUsers: TTimer; ! gnuaccept: TIdTCPClient; procedure FormCreate(Sender: TObject); procedure Exit1Click(Sender: TObject); *************** *** 88,95 **** procedure cmdAddShareDirectoryClick(Sender: TObject); procedure cmdDeleteShareDirClick(Sender: TObject); - procedure Connect1Click(Sender: TObject); procedure ircClientConnected(Sender: TObject); procedure ircClientJoined(Sender: TObject; AChannel: TIdIRCChannel); - procedure Disconnect1Click(Sender: TObject); procedure ircClientConnect(Sender: TObject); procedure ircClientSystem(Sender: TObject; AUser: TIdIRCUser; --- 87,92 ---- *************** *** 111,114 **** --- 108,115 ---- procedure ircClientJoin(Sender: TObject; AUser: TIdIRCUser; AChannel: TIdIRCChannel); + procedure ircClientTopic(Sender: TObject; AUser: TIdIRCUser; + AChannel: TIdIRCChannel); + procedure TimerChatUsersTimer(Sender: TObject); + procedure About1Click(Sender: TObject); private { Private declarations } *************** *** 123,127 **** implementation ! uses NewOptions; {$R *.dfm} --- 124,128 ---- implementation ! uses NewOptions, about; {$R *.dfm} *************** *** 173,202 **** end; - procedure TClient.Connect1Click(Sender: TObject); - var - gnumessage: TStrings; - reply: string; - - begin - gnumessage := TStringList.Create; - {Specify Connection message} - gnumessage.Add('GNUTELLA CONNECT/0.6'); - gnumessage.Add('USER-AGENT:TANK'); - gnumessage.Add(''); - gnuconnect.Connect; - gnuconnect.WriteStrings(gnumessage); - reply := gnuconnect.ReadString(100); - if Pos('OK', reply) > 0 then - begin - // We have a successful connection into the network. - end - else - begin - // Ooopps, we have failed to connect. - end; - - // OK, GNUTella connection is made, we can init the IRC chat session. - end; - procedure TClient.ircClientJoined(Sender: TObject; AChannel: TIdIRCChannel); --- 174,177 ---- *************** *** 209,217 **** end; - procedure TClient.Disconnect1Click(Sender: TObject); - begin - // Disconnect here. - end; - procedure TClient.ircClientConnect(Sender: TObject); begin --- 184,187 ---- *************** *** 221,226 **** procedure TClient.ircClientConnected(Sender: TObject); begin ! AddChatText('Connection Successful.', clBlack); btnIRCOnOff.Action := actIRCDisconnect; end; --- 191,200 ---- procedure TClient.ircClientConnected(Sender: TObject); begin ! {*** this seems to like to add a line of text to the rich text box before ! it is even really connected? hrm ! AddChatText('Connection Successful.', clBlack); ***} btnIRCOnOff.Action := actIRCDisconnect; + //enable our timer so we can keep track of users correctly + TimerChatUsers.Enabled := true; end; *************** *** 270,273 **** --- 244,252 ---- AddChatText('Disconnected from IRC server.', clBlack); btnIRCOnOff.Action := actIRCConnect; + //turn off the timer + TimerChatUsers.Enabled := false; + lblChatUserCount.Caption := 'Users: 0'; + //change the channel info to nothing... + lblChannelInfo.Caption := 'channel info'; end; *************** *** 278,282 **** Key := #0; exit; ! end; if Key = #13 then // Send the text to the IRC channel and clear the editbox. begin --- 257,261 ---- Key := #0; exit; ! end; if Key = #13 then // Send the text to the IRC channel and clear the editbox. begin *************** *** 377,382 **** begin // We are actually closing the App. if ircClient.Connected then actIRCDisconnectExecute(Sender); - if gnuconnect.Connected then Disconnect1Click(Sender); - if gnuaccept.Active then gnuaccept.Active := false; end; end; --- 356,359 ---- *************** *** 395,398 **** --- 372,396 ---- lbxUsers.Items.Add(AUser.Nick); + end; + + procedure TClient.ircClientTopic(Sender: TObject; AUser: TIdIRCUser; + AChannel: TIdIRCChannel); + begin + {add the channel info to lblChannelInfo} + lblChannelInfo.Caption := ircClient.Channels.Items[0].topic; + end; + + procedure TClient.TimerChatUsersTimer(Sender: TObject); + begin + {make sure we are displaying the correct number of users...} + lblChatUserCount.Caption := 'Users: ' + inttostr(lbxUsers.items.count -1); + { -1 because for some reason our code is adding a blank person on top + of the list??? } + end; + + + procedure TClient.About1Click(Sender: TObject); + begin + frmabout.show; end; |
From: root <ro...@re...> - 2002-02-03 19:15:28
|
Update of /home/tank_cvs/tank In directory router.bac.net.au:/tmp/cvs-serv29086 Modified Files: Main.dfm Log Message: no message Index: Main.dfm =================================================================== RCS file: /home/tank_cvs/tank/Main.dfm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Main.dfm 2002/01/31 23:28:10 1.3 --- Main.dfm 2002/02/03 19:19:53 1.4 *************** *** 1,5 **** object Client: TClient ! Left = 193 ! Top = 109 BorderStyle = bsSingle Caption = 'Tis Another Newtella Client - Not Connected' --- 1,5 ---- object Client: TClient ! Left = 208 ! Top = 116 BorderStyle = bsSingle Caption = 'Tis Another Newtella Client - Not Connected' *************** *** 516,611 **** ImageIndex = 5 ParentFont = False object lbxUsers: TListBox Left = 479 ! Top = 0 Width = 138 ! Height = 401 ! Align = alRight ItemHeight = 13 Sorted = True TabOrder = 0 end ! object pnlChatSplit: TPanel ! Left = 0 ! Top = 0 ! Width = 479 ! Height = 401 ! Align = alClient ! BevelOuter = bvNone TabOrder = 1 ! DesignSize = ( ! 479 ! 401) ! object lblIRCChannel: TLabel ! Left = 112 ! Top = 2 ! Width = 161 ! Height = 20 ! AutoSize = False ! Caption = 'Select Channel before connecting' ! Layout = tlCenter ! end ! object redChatSession: TRichEdit ! Left = -1 ! Top = 24 ! Width = 481 ! Height = 353 ! Anchors = [akLeft, akBottom] ! Ctl3D = True ! ParentCtl3D = False ! ReadOnly = True ! ScrollBars = ssVertical ! TabOrder = 0 ! end ! object txtChatSend: TEdit ! Left = 0 ! Top = 376 ! Width = 480 ! Height = 25 ! Anchors = [akBottom] ! AutoSize = False ! Enabled = False ! TabOrder = 1 ! OnKeyPress = txtChatSendKeyPress ! end ! object btnIRCOnOff: TBitBtn ! Left = -1 ! Top = 3 ! Width = 89 ! Height = 18 ! Action = actIRCConnect ! Caption = 'Connect' ! TabOrder = 2 ! Glyph.Data = { ! 42020000424D4202000000000000420000002800000010000000100000000100 ! 1000030000000002000000000000000000000000000000000000007C0000E003 ! 00001F0000001F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C1F7CEF3D8C318C316B2D4A294A298410A514630C210400000000 ! C6181F7C1F7C1F7C7B6F7B6F1863D65A524ACE39CE390000E71C4A29CE39EF3D ! EF3DEF3D1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C466A00001F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C8024404500001F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C1F7CB556B556734E524A314610421042EF3DCE39AD358C316B2D ! 4A2900001F7C1F7C9452734E524A524A314610421042EF3DCE3994529452524A ! 104200001F7C1F7CD65A0000734E524A0000314610420000EF3DB5569452734E ! 314600001F7C1F7C3967F75E9452734EF75E524A3146F75E1042D65AB5569452 ! E06300001F7C1F7C9C733967D65A9452734E524A524A314610427B6F1863B556 ! 945200001F7C1F7C94525A6B1863F75ED65AD65AB5569452EF3DF75ED65A9452 ! 524A1F7C1F7C1F7C1F7C734E18631863F75ED65AD65AB5569452D65AD65AB556 ! 1F7C1F7C1F7C1F7C1F7C1F7C734E9C739C737B6F3967F75EF75EB556B5561F7C ! 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C} ! end ! object cbxIRCChannel: TComboBox ! Left = 281 ! Top = 1 ! Width = 145 ! Height = 21 ! ItemHeight = 13 ! TabOrder = 3 ! OnChange = cbxIRCChannelChange ! OnDropDown = cbxIRCChannelDropDown ! end end end --- 516,621 ---- ImageIndex = 5 ParentFont = False + object lblIRCChannel: TLabel + Left = 478 + Top = 381 + Width = 43 + Height = 13 + Caption = 'Channel:' + end + object lblChannelInfo: TLabel + Left = 2 + Top = 11 + Width = 377 + Height = 13 + AutoSize = False + Caption = 'Channel Info' + end + object lblChatUserCount: TLabel + Left = 478 + Top = 9 + Width = 136 + Height = 17 + AutoSize = False + Caption = 'Users: 0' + end object lbxUsers: TListBox Left = 479 ! Top = 29 Width = 138 ! Height = 344 ItemHeight = 13 Sorted = True TabOrder = 0 end ! object txtChatSend: TEdit ! Left = 1 ! Top = 379 ! Width = 469 ! Height = 21 TabOrder = 1 ! OnKeyPress = txtChatSendKeyPress ! end ! object CbxIRCChannel: TComboBox ! Left = 524 ! Top = 378 ! Width = 91 ! Height = 21 ! ItemHeight = 13 ! TabOrder = 2 ! OnChange = cbxIRCChannelChange ! OnDropDown = cbxIRCChannelDropDown ! end ! object redChatSession: TRichEdit ! Left = 1 ! Top = 29 ! Width = 474 ! Height = 344 ! Lines.Strings = ( ! '') ! TabOrder = 3 ! end ! object btnIRCOnOFF: TBitBtn ! Left = 385 ! Top = 6 ! Width = 87 ! Height = 20 ! Action = actIRCConnect ! Caption = 'Connect' ! TabOrder = 4 ! Glyph.Data = { ! 36040000424D3604000000000000360000002800000010000000100000000100 ! 2000000000000004000000000000000000000000000000000000FF00FF00FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF007B7B ! 7B0063636300636363005A5A5A00525252005252520021212100292929001818 ! 180008080800000000000000000031313100FF00FF00FF00FF00FF00FF00DEDE ! DE00DEDEDE00C6C6C600B5B5B500949494007373730073737300000000003939 ! 390052525200737373007B7B7B007B7B7B007B7B7B00FF00FF00FF00FF00FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF003194D60000000000FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF0000214A0000528C0000000000FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00ADAD ! AD00ADADAD009C9C9C00949494008C8C8C0084848400848484007B7B7B007373 ! 73006B6B6B00636363005A5A5A005252520000000000FF00FF00FF00FF00A5A5 ! A5009C9C9C0094949400949494008C8C8C0084848400848484007B7B7B007373 ! 7300A5A5A500A5A5A500949494008484840000000000FF00FF00FF00FF00B5B5 ! B500000000009C9C9C0094949400000000008C8C8C0084848400000000007B7B ! 7B00ADADAD00A5A5A5009C9C9C008C8C8C0000000000FF00FF00FF00FF00CECE ! CE00BDBDBD00A5A5A5009C9C9C00BDBDBD00949494008C8C8C00BDBDBD008484 ! 8400B5B5B500ADADAD00A5A5A50000FFC60000000000FF00FF00FF00FF00E7E7 ! E700CECECE00B5B5B500A5A5A5009C9C9C0094949400949494008C8C8C008484 ! 8400DEDEDE00C6C6C600ADADAD00A5A5A50000000000FF00FF00FF00FF00A5A5 ! A500D6D6D600C6C6C600BDBDBD00B5B5B500B5B5B500ADADAD00A5A5A5007B7B ! 7B00BDBDBD00B5B5B500A5A5A50094949400FF00FF00FF00FF00FF00FF00FF00 ! FF009C9C9C00C6C6C600C6C6C600BDBDBD00B5B5B500B5B5B500ADADAD00A5A5 ! A500B5B5B500B5B5B500ADADAD00FF00FF00FF00FF00FF00FF00FF00FF00FF00 ! FF00FF00FF009C9C9C00E7E7E700E7E7E700DEDEDE00CECECE00BDBDBD00BDBD ! BD00ADADAD00ADADAD00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00 ! FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00} end end *************** *** 658,662 **** ImageIndex = 0 ShortCut = 16451 - OnClick = Connect1Click end object Disconnect1: TMenuItem --- 668,671 ---- *************** *** 664,668 **** ImageIndex = 1 ShortCut = 16452 - OnClick = Disconnect1Click end object N1: TMenuItem --- 673,676 ---- *************** *** 697,700 **** --- 705,709 ---- object About1: TMenuItem Caption = '&About' + OnClick = About1Click end end *************** *** 1107,1153 **** 000000000000} end - object gnuconnect: TIdTCPClient - ReadTimeout = 0 - Port = 0 - Left = 448 - Top = 65535 - end - object download: TIdHTTP - ReadTimeout = 0 - AllowCookies = True - ProxyParams.BasicAuthentication = False - ProxyParams.ProxyPort = 0 - Request.ContentLength = 0 - Request.ContentRangeEnd = 0 - Request.ContentRangeStart = 0 - Request.ContentType = 'text/html' - Request.Accept = 'text/html, */*' - Request.BasicAuthentication = False - Request.UserAgent = 'Mozilla/3.0 (compatible; Indy Library)' - HTTPOptions = [hoForceEncodeParams] - Left = 416 - Top = 65534 - end - object gnuaccept: TIdTCPServer - Bindings = <> - CommandHandlers = <> - DefaultPort = 0 - Greeting.NumericCode = 0 - MaxConnectionReply.NumericCode = 0 - ReplyExceptionCode = 0 - ReplyTexts = <> - ReplyUnknownCommand.NumericCode = 0 - Left = 383 - end - object upload: TIdHTTPServer - Bindings = <> - CommandHandlers = <> - Greeting.NumericCode = 0 - MaxConnectionReply.NumericCode = 0 - ReplyExceptionCode = 0 - ReplyTexts = <> - ReplyUnknownCommand.NumericCode = 0 - Left = 352 - end object ircClient: TIdIRC OnDisconnected = ircClientDisconnected --- 1116,1119 ---- *************** *** 1170,1173 **** --- 1136,1140 ---- OnJoin = ircClientJoin OnJoined = ircClientJoined + OnTopic = ircClientTopic OnNames = ircClientNames OnSystem = ircClientSystem *************** *** 1189,1192 **** --- 1156,1170 ---- OnExecute = actIRCDisconnectExecute end + end + object TimerChatUsers: TTimer + Enabled = False + OnTimer = TimerChatUsersTimer + Left = 490 + Top = 95 + end + object gnuaccept: TIdTCPClient + ReadTimeout = 0 + Port = 0 + Left = 433 end end |
From: Marc G. <ma...@sy...> - 2002-02-02 00:54:58
|
Hi, i'm a Delphi developper, my speciality is TCP/IP internet = application working with Indy, ICS, soon with DXInternet beta. I also did build a peers-to-peers network last year but it's for = broadcasting with single source; peers only listen and relay packets. Recently i did finish an internet browser. I would like to be a part of the team that work on Tank. I did develop a component that do swarm download with mutliples = connections per source for my browser i could probably with some modification brings this component in Tank. It's = threaded and use Indy code for TCP/IP. I also have a new idea for p2p to allow anyone to distribute datas at = low cost (legally). The idea is to allow distributors/content provider = to fix a unique code on invidual file. For example, if John X write a = song and send this song in the network, if someone download the file, = the user should receive (if the gnutella client support this) a banner: = "Thank for checking my file I'm John if you want the rest of my music, = click here" ... This could add a touch of legality to the network ;-) = and of course create some revenus for developer of gnutella client, more = revenus =3D better network, more users, more, etc. I also think that gnutella 0.6+ should support BZIP compression and = packet merging (send packet per block instead of one by one). See ya, Marc. PS: My english is not perfect... My main language is french. |
From: root <ro...@re...> - 2002-01-31 23:24:34
|
Update of /home/tank_cvs/tank In directory router.bac.net.au:/tmp/cvs-serv8175 Modified Files: Main.pas Log Message: -added some stuff so when another user connects.. it will add their name to the listbox.. Index: Main.pas =================================================================== RCS file: /home/tank_cvs/tank/Main.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Main.pas 2002/01/29 10:33:48 1.2 --- Main.pas 2002/01/31 23:28:54 1.3 *************** *** 109,112 **** --- 109,114 ---- procedure cbxIRCChannelChange(Sender: TObject); procedure FormClose(Sender: TObject; var Action: TCloseAction); + procedure ircClientJoin(Sender: TObject; AUser: TIdIRCUser; + AChannel: TIdIRCChannel); private { Private declarations } *************** *** 240,247 **** begin lbxUsers.Items.Clear; ! for intCount := 0 to AUsers.Count-1 do begin ! if ircClient.IsOp(AUsers.Items[intCount].Nick) then strName := '@' ! else strName := ''; strName := strName + AUsers.Items[intCount].Nick; lbxUsers.Items.Add(strName); --- 242,250 ---- begin lbxUsers.Items.Clear; ! for intCount := 0 to AUsers.Count -1 do begin ! if ircClient.IsOp(AUsers.Items[intCount].Nick) ! then strName := '@' ! else strName := ''; strName := strName + AUsers.Items[intCount].Nick; lbxUsers.Items.Add(strName); *************** *** 377,380 **** --- 380,398 ---- if gnuaccept.Active then gnuaccept.Active := false; end; + end; + + procedure TClient.ircClientJoin(Sender: TObject; AUser: TIdIRCUser; + AChannel: TIdIRCChannel); + begin + {notify the user that someone has joined..} + AddChatText('*** ' + AUser.nick + ' ' + auser.Address + ' + has joined! ' + AChannel.Name ,Options.pnlChatSystemMessages.color); + {now add the name to the list} + if ircclient.IsOp(Auser.nick) then + begin + lbxUsers.Items.Add('@' + AUser.Nick); + exit; + end; + lbxUsers.Items.Add(AUser.Nick); + end; |
From: root <ro...@re...> - 2002-01-31 23:23:52
|
Update of /home/tank_cvs/tank In directory router.bac.net.au:/tmp/cvs-serv8165 Modified Files: Main.dfm Log Message: -Made the connect button a little bit smaller.. it was a bit big, more to come later. Index: Main.dfm =================================================================== RCS file: /home/tank_cvs/tank/Main.dfm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Main.dfm 2002/01/29 10:33:48 1.2 --- Main.dfm 2002/01/31 23:28:10 1.3 *************** *** 547,551 **** end object redChatSession: TRichEdit ! Left = 0 Top = 24 Width = 481 --- 547,551 ---- end object redChatSession: TRichEdit ! Left = -1 Top = 24 Width = 481 *************** *** 570,603 **** end object btnIRCOnOff: TBitBtn ! Left = 0 ! Top = 0 Width = 89 ! Height = 25 Action = actIRCConnect Caption = 'Connect' TabOrder = 2 Glyph.Data = { ! 36020000424D3602000000000000360000002800000010000000100000000100 ! 10000000000000020000000000000000000000000000000000001F7C1F7C1F7C ! 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7CEF3D8C31 ! 8C316B2D4A294A298410A514630C210400000000C6181F7C1F7C1F7C7B6F7B6F ! 1863D65A524ACE39CE390000E71C4A29CE39EF3DEF3DEF3D1F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C1F7C466A00001F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C8024404500001F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7CB556B556 ! 734E524A314610421042EF3DCE39AD358C316B2D4A2900001F7C1F7C9452734E ! 524A524A314610421042EF3DCE3994529452524A104200001F7C1F7CD65A0000 ! 734E524A0000314610420000EF3DB5569452734E314600001F7C1F7C3967F75E ! 9452734EF75E524A3146F75E1042D65AB5569452E06300001F7C1F7C9C733967 ! D65A9452734E524A524A314610427B6F1863B556945200001F7C1F7C94525A6B ! 1863F75ED65AD65AB5569452EF3DF75ED65A9452524A1F7C1F7C1F7C1F7C734E ! 18631863F75ED65AD65AB5569452D65AD65AB5561F7C1F7C1F7C1F7C1F7C1F7C ! 734E9C739C737B6F3967F75EF75EB556B5561F7C1F7C1F7C1F7C1F7C1F7C1F7C 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C} end object cbxIRCChannel: TComboBox ! Left = 280 ! Top = 2 Width = 145 Height = 21 --- 570,604 ---- end object btnIRCOnOff: TBitBtn ! Left = -1 ! Top = 3 Width = 89 ! Height = 18 Action = actIRCConnect Caption = 'Connect' TabOrder = 2 Glyph.Data = { ! 42020000424D4202000000000000420000002800000010000000100000000100 ! 1000030000000002000000000000000000000000000000000000007C0000E003 ! 00001F0000001F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C1F7CEF3D8C318C316B2D4A294A298410A514630C210400000000 ! C6181F7C1F7C1F7C7B6F7B6F1863D65A524ACE39CE390000E71C4A29CE39EF3D ! EF3DEF3D1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C466A00001F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C8024404500001F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C1F7CB556B556734E524A314610421042EF3DCE39AD358C316B2D ! 4A2900001F7C1F7C9452734E524A524A314610421042EF3DCE3994529452524A ! 104200001F7C1F7CD65A0000734E524A0000314610420000EF3DB5569452734E ! 314600001F7C1F7C3967F75E9452734EF75E524A3146F75E1042D65AB5569452 ! E06300001F7C1F7C9C733967D65A9452734E524A524A314610427B6F1863B556 ! 945200001F7C1F7C94525A6B1863F75ED65AD65AB5569452EF3DF75ED65A9452 ! 524A1F7C1F7C1F7C1F7C734E18631863F75ED65AD65AB5569452D65AD65AB556 ! 1F7C1F7C1F7C1F7C1F7C1F7C734E9C739C737B6F3967F75EF75EB556B5561F7C 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C1F7C ! 1F7C1F7C1F7C} end object cbxIRCChannel: TComboBox ! Left = 281 ! Top = 1 Width = 145 Height = 21 *************** *** 704,708 **** Bitmap = { 494C010105000900040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600 ! 0000000000003600000028000000400000003000000001001000000000000018 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 --- 705,709 ---- Bitmap = { 494C010105000900040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600 ! 0000000000003600000028000000400000003000000001002000000000000030 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 *************** *** 778,834 **** 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 0000734E29252925000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 0000000000000000000000000000000000000000000000000000000000007B6F - 7B6F734E31462925292500000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 0000000000000000000000000000000000000000000000000000BD779C735A6B - F75E00001042CE39292529250000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 000000000000000000000000000000000000000000009C73FF7FBD7718638410 - 1B52523D0000CE39AD3529252925000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 000000000000000000000000000000000000000000009C73396729257C5AB445 - 7241503930350000AD358C312925000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 000000000000000000000000000000000000000000006B2DBD623756164E7073 - B1414F350E2DED2800006B2D0000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 00000000000000000000000000000000000000000000000057563652F449B341 - EE622E31EC28EC28CA2400000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 00000000000000000000000000000000000000000000000000006F394E352C2D - EB24CA24294A87188718A7180000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 00000000000000000000000000000000000000000000000000000000440C430C - 620CA214A2142104220800000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 0000000000000000000000000000000000004D52A76ACB45AA3D265E48312829 - A5490725E620643D000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 000000000000000000000000000000000000905AC86EA76A0C4E886600000000 - C5516862C51C0000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 000000000000000000000000000000000000B15E905AC86E0C4E000000000000 - 0000686200000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 0000000000000000000000000000000000005277905A0D73C86E000067620000 - 6939C55124350000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 000000000000000000000000000000000000B77F7773146F2F77905E4E528866 - AA3D4935C54D2725000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 --- 779,808 ---- *************** *** 837,900 **** 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 0000000000000000000000000000000000000000EF3D8C318C316B2D4A294A29 - 8410A514630C210400000000C618000000000000314610421042EF3DEF3DEF3D - 8C318C318C316B2D4A294A29AD35000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 - 00000000000000000000000000000000000000007B6F7B6F1863D65A524ACE39 - CE390000E71C4A29CE39EF3DEF3DEF3D00000000D65AD65AB5569452524A1042 - 10426B2DAD35EF3D104231463146314600000000000000000000000010421042 - 734E734E734EE05D000000000000000000000000000000000000000000000000 - 1042E71C524A0000000000000000000000000000000000000000000000000000 - 466A000000000000000000000000000000000000000000000000000000000000 - 4D564A290000000000000000000000000000000000000000E05DA055B5561863 - 39677B6F9C739C7300000000000000000000000000000000000000001042E71C - 000092010000EF3D000000000000000000000000000000000000000000008024 - 4045000000000000000000000000000000000000000000000000000000008A39 - EA494A29000000000000000000000000000000000000406EE05DA0550000D65A - 18637B6F9C73DE7BE05D0000000000000000000000000000EF3DE71C00009201 - F7015B020000EF3DE71C00000000000000000000B556B556734E524A31461042 - 1042EF3DCE39AD358C316B2D4A29000000000000734E734E734E524A524A3146 - 3146314610421042EF3DEF3DEF3D4A2900000000A07E206AE05DC059A04DB556 - 186339677B6FDE7BFF7F000000000000000000000000104200009201F701F701 - F701F701000010422925C61800000000000000009452734E524A524A31461042 - 1042EF3DCE3994529452524A1042000000000000734E734E524A524A524A3146 - 314631461042734E734E524A31464A29000000000D7F406E0066C059A0550000 - D65A18637B6F9C73DE7BE05D0000000000000000000000009201F701F701F701 - BF02F7010000524A29254A290000000000000000D65A0000734E524A00003146 - 10420000EF3DB5569452734E314600000000000094524A29734E524A4A29524A - 31464A293146734E734E734E524A4A29000000000000406E206AE05DC059A04D - B556186339677B6FDE7BFF7F0000000000000000000000009201F7015F479F5B - F701F7010000734E2925EF3D00000000000000003967F75E9452734EF75E524A - 3146F75E1042D65AB5569452E063000000000000B5569452734E734E9452524A - 524A945231469452734E734ECA564A290000000000000D7F406E0066E05DA055 - 0000D65A18637B6F9C73DE7BE05D000000000000000000009201F701BF02BF02 - F701F7010000B556EF3D524A00000000000000009C733967D65A9452734E524A - 524A314610427B6F1863B5569452000000000000D65A94523146734E10423146 - 524A524A3146D65AB556734E734E4A290000000000000000406E206AE05DC059 - A04DB556F70139677B6FDE7BFF7F000000000000000000009201F701F701F701 - F70100000000B5561042734E000000000000000094525A6B1863F75ED65AD65A - B5569452EF3DF75ED65A9452524A000000000000734E8C31E71CAD35C6186B2D - 734E734E314694529452734E524A000000000000000000000D7F406E0066E05D - A04D0000D65A9C730000524AD65AE05D00000000000000002E01F701F7010000 - 0000EF3D3967B5561042B55600000000000000000000734E18631863F75ED65A - D65AB5569452D65AD65AB55600000000000000000000847C602800442058EF3D - 9452734E734E94529452734E0000000000000000000000000000406E206AE05D - C0590000000000005B0200000000000000000000000000002E0100000000EF3D - 3967B556B5561042D65AD65A000000000000000000000000734E9C739C737B6F - 3967F75EF75EB556B556000000000000000000000000FA7E6374006C60503146 - B55694529452734E9452000000000000000000000000000000000D7F406E0066 - 000000000000000000005B0200000000000000000000524A0000EF3D3967B556 - B5561042B556D65A186318630000000000000000000000000000000000000000 - 00000000000000000000000000000000000000000000AD7DC67C637460280000 - 00000000000000000000000000000000000000000000000000000000406E0000 - 0000000000000000000000005B0200000000000000000000B556B556B5561042 - 734EB556B556B556AD3500000000000000000000000000000000000000000000 - 00000000000000000000000000000000000000000000127EAD7D3C7F2A7D0000 0000000000000000000000000000000000000000000000000000000000000000 - 000000000000000000000000000000000000000000000000000000000000EF3D - 524A734EAD350000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000424D3E000000000000003E000000 2800000040000000300000000100010000000000800100000000000000000000 --- 811,1093 ---- 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000009C9C9C004A4A4A004A4A4A000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000DEDEDE00DEDEDE009C9C9C008C8C8C004A4A4A004A4A + 4A00000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000EFEFEF00E7E7E700D6D6D600BDBDBD000000000084848400737373004A4A + 4A004A4A4A000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000E7E7E700FFFF + FF00EFEFEF00C6C6C60021212100DE84A50094527B0000000000737373006B6B + 6B004A4A4A004A4A4A0000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000E7E7E700CECE + CE004A4A4A00E79CB500A56B8C00945A840084527300844A6B00000000006B6B + 6B00636363004A4A4A0000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000000000000000000000005A5A5A00EFAD + C600BD8CAD00B5849C0084DEE7008C6B84007B526B0073425A006B3952000000 + 00005A5A5A000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 000000000000000000000000000000000000000000000000000000000000BD94 + AD00B58CA500A57B94009C6B840073BDC600734A630063395200633952005231 + 4A00000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00007B5A730073526B00634A5A005A394A0052314A004A8C9400392131003921 + 3100392931000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000002110180018101800101818001029290010292900080808001008 + 1000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000006B94A50039ADD6005A738C00526B + 7B00318CBD0042526300424A5200296B940039424A0031394200215A7B000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000000084A5B50042B5DE0039ADD6006384 + 9C0042A5CE0000000000000000002973A500429CC60029313900000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000008CADBD0084A5B50042B5DE006384 + 9C0000000000000000000000000000000000429CC60000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000000094D6EF0084A5B5006BC6E70042B5 + DE0000000000399CC600000000004A5A73002973A500214A6B00000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 000000000000000000000000000000000000BDEFFF00BDDEE700A5C6DE007BCE + EF0084A5BD007394A50042A5CE00526B7B004A526B0029739C00394A4A000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 000000000000000000000000000000000000000000007B7B7B00636363006363 + 63005A5A5A005252520052525200212121002929290018181800080808000000 + 000000000000313131000000000000000000000000008C8C8C00848484008484 + 84007B7B7B007B7B7B007B7B7B006363630063636300636363005A5A5A005252 + 5200525252006B6B6B0000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000000000000000DEDEDE00DEDEDE00C6C6 + C600B5B5B5009494940073737300737373000000000039393900525252007373 + 73007B7B7B007B7B7B007B7B7B000000000000000000B5B5B500B5B5B500ADAD + AD00A5A5A5009494940084848400848484005A5A5A006B6B6B007B7B7B008484 + 84008C8C8C008C8C8C008C8C8C00000000000000000000000000000000000000 + 00000000000084848400848484009C9C9C009C9C9C009C9C9C00007BBD000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000848484003939390094949400000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000003194D6000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000006B94AD005252520000000000000000000000 + 000000000000000000000000000000000000000000000000000000000000007B + BD00006BAD00ADADAD00C6C6C600CECECE00DEDEDE00E7E7E700E7E7E7000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000084848400393939000000000094630000000000007B7B7B000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000214A0000528C000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000052637300527B94005252520000000000000000000000 + 00000000000000000000000000000000000000000000000000000094DE00007B + BD00006BAD0000000000B5B5B500C6C6C600DEDEDE00E7E7E700F7F7F700007B + BD00000000000000000000000000000000000000000000000000000000007B7B + 7B00393939000000000094630000BD7B0000DE940000000000007B7B7B003939 + 39000000000000000000000000000000000000000000ADADAD00ADADAD009C9C + 9C00949494008C8C8C0084848400848484007B7B7B00737373006B6B6B006363 + 63005A5A5A00525252000000000000000000000000009C9C9C009C9C9C009C9C + 9C0094949400949494008C8C8C008C8C8C008C8C8C0084848400848484007B7B + 7B007B7B7B007B7B7B0052525200000000000000000000ADFF00008CD600007B + BD000073B500006B9C00ADADAD00C6C6C600CECECE00DEDEDE00F7F7F700FFFF + FF00000000000000000000000000000000000000000000000000848484000000 + 000094630000BD7B0000BD7B0000BD7B0000BD7B000000000000848484004A4A + 4A003131310000000000000000000000000000000000A5A5A5009C9C9C009494 + 9400949494008C8C8C0084848400848484007B7B7B0073737300A5A5A500A5A5 + A50094949400848484000000000000000000000000009C9C9C009C9C9C009494 + 940094949400949494008C8C8C008C8C8C008C8C8C00848484009C9C9C009C9C + 9C00949494008C8C8C005252520000000000000000006BC6FF000094DE000084 + CE000073B500006BAD0000000000B5B5B500C6C6C600DEDEDE00E7E7E700F7F7 + F700007BBD000000000000000000000000000000000000000000000000009463 + 0000BD7B0000BD7B0000BD7B0000FFAD0000BD7B000000000000949494004A4A + 4A005252520000000000000000000000000000000000B5B5B500000000009C9C + 9C0094949400000000008C8C8C0084848400000000007B7B7B00ADADAD00A5A5 + A5009C9C9C008C8C8C00000000000000000000000000A5A5A500525252009C9C + 9C009494940052525200949494008C8C8C00525252008C8C8C009C9C9C009C9C + 9C009C9C9C0094949400525252000000000000000000000000000094DE00008C + D600007BBD000073B500006B9C00ADADAD00C6C6C600CECECE00DEDEDE00F7F7 + F700FFFFFF000000000000000000000000000000000000000000000000009463 + 0000BD7B0000FFD68C00FFE7B500BD7B0000BD7B0000000000009C9C9C004A4A + 4A007B7B7B0000000000000000000000000000000000CECECE00BDBDBD00A5A5 + A5009C9C9C00BDBDBD00949494008C8C8C00BDBDBD0084848400B5B5B500ADAD + AD00A5A5A50000FFC600000000000000000000000000ADADAD00A5A5A5009C9C + 9C009C9C9C00A5A5A5009494940094949400A5A5A5008C8C8C00A5A5A5009C9C + 9C009C9C9C0052B5AD00525252000000000000000000000000006BC6FF000094 + DE000084CE00007BBD00006BAD0000000000B5B5B500C6C6C600DEDEDE00E7E7 + E700F7F7F700007BBD0000000000000000000000000000000000000000009463 + 0000BD7B0000FFAD0000FFAD0000BD7B0000BD7B000000000000ADADAD007B7B + 7B009494940000000000000000000000000000000000E7E7E700CECECE00B5B5 + B500A5A5A5009C9C9C0094949400949494008C8C8C0084848400DEDEDE00C6C6 + C600ADADAD00A5A5A500000000000000000000000000B5B5B500A5A5A5008C8C + 8C009C9C9C00848484008C8C8C0094949400949494008C8C8C00B5B5B500ADAD + AD009C9C9C009C9C9C0052525200000000000000000000000000000000000094 + DE00008CD600007BBD000073B500006B9C00ADADAD00BD7B0000CECECE00DEDE + DE00F7F7F700FFFFFF0000000000000000000000000000000000000000009463 + 0000BD7B0000BD7B0000BD7B0000BD7B00000000000000000000ADADAD008484 + 84009C9C9C0000000000000000000000000000000000A5A5A500D6D6D600C6C6 + C600BDBDBD00B5B5B500B5B5B500ADADAD00A5A5A5007B7B7B00BDBDBD00B5B5 + B500A5A5A500949494000000000000000000000000009C9C9C00636363003939 + 39006B6B6B00313131005A5A5A009C9C9C009C9C9C008C8C8C00A5A5A500A5A5 + A5009C9C9C009494940000000000000000000000000000000000000000006BC6 + FF000094DE000084CE00007BBD00006B9C0000000000B5B5B500E7E7E7000000 + 000094949400B5B5B500007BBD0000000000000000000000000000000000734A + 0000BD7B0000BD7B000000000000000000007B7B7B00CECECE00ADADAD008484 + 8400ADADAD0000000000000000000000000000000000000000009C9C9C00C6C6 + C600C6C6C600BDBDBD00B5B5B500B5B5B500ADADAD00A5A5A500B5B5B500B5B5 + B500ADADAD0000000000000000000000000000000000000000002121FF000018 + 520000008C000008B5007B7B7B00A5A5A5009C9C9C009C9C9C00A5A5A500A5A5 + A5009C9C9C000000000000000000000000000000000000000000000000000000 + 00000094DE00008CD600007BBD000073B500000000000000000000000000DE94 + 000000000000000000000000000000000000000000000000000000000000734A + 000000000000000000007B7B7B00CECECE00ADADAD00ADADAD0084848400B5B5 + B500B5B5B5000000000000000000000000000000000000000000000000009C9C + 9C00E7E7E700E7E7E700DEDEDE00CECECE00BDBDBD00BDBDBD00ADADAD00ADAD + AD00000000000000000000000000000000000000000000000000D6BDFF001818 + EF000000DE000018A5008C8C8C00ADADAD00A5A5A500A5A5A5009C9C9C00A5A5 + A500000000000000000000000000000000000000000000000000000000000000 + 00006BC6FF000094DE000084CE00000000000000000000000000000000000000 + 0000DE9400000000000000000000000000000000000000000000949494000000 + 00007B7B7B00CECECE00ADADAD00ADADAD0084848400ADADAD00B5B5B500C6C6 + C600C6C6C6000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000000000000000000000006B6BFF003131 + FF001818EF000018520000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000094DE0000000000000000000000000000000000000000000000 + 000000000000DE9400000000000000000000000000000000000000000000ADAD + AD00ADADAD00ADADAD00848484009C9C9C00ADADAD00ADADAD00ADADAD006B6B + 6B00000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 00000000000000000000000000000000000000000000000000009484FF006B6B + FF00E7CEFF00524AFF0000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 000000000000000000007B7B7B00949494009C9C9C006B6B6B00000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 + 0000000000000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000424D3E000000000000003E000000 2800000040000000300000000100010000000000800100000000000000000000 *************** *** 918,921 **** --- 1111,1115 ---- Port = 0 Left = 448 + Top = 65535 end object download: TIdHTTP *************** *** 933,936 **** --- 1127,1131 ---- HTTPOptions = [hoForceEncodeParams] Left = 416 + Top = 65534 end object gnuaccept: TIdTCPServer *************** *** 943,947 **** ReplyTexts = <> ReplyUnknownCommand.NumericCode = 0 ! Left = 384 end object upload: TIdHTTPServer --- 1138,1142 ---- ReplyTexts = <> ReplyUnknownCommand.NumericCode = 0 ! Left = 383 end object upload: TIdHTTPServer *************** *** 973,985 **** OnNotice = ircClientNotice OnConnect = ircClientConnect OnJoined = ircClientJoined OnNames = ircClientNames OnSystem = ircClientSystem ! Left = 480 end object ActionManager1: TActionManager - ActionBars.SessionCount = 2 - ActionBars = <> - LinkedActionLists = <> Images = Images_Menu Left = 520 --- 1168,1178 ---- OnNotice = ircClientNotice OnConnect = ircClientConnect + OnJoin = ircClientJoin OnJoined = ircClientJoined OnNames = ircClientNames OnSystem = ircClientSystem ! Left = 479 end object ActionManager1: TActionManager Images = Images_Menu Left = 520 |
From: Brian C. <bch...@bi...> - 2002-01-30 10:37:08
|
Hi Guys, I have managed to get the :ext: method of accessing the cvs working. This will give better security on the repository. in WinCVS you will need to change the cvsroot to use...@td...:/home/tank_cvs select SSH Server as the Authentication alternate RSH name must be set to ssh when performing operations on the repository a command box will be started, and you will need to restore the window to enter your password. You can also transfer your public key to my server if you wish, which from memory remove the need for entering a password. I will be leaving the pserver side working until I hear from each of you that you have successfully connected to the repository with the ext method. Regards Brian. |
From: Brian C. <bch...@bi...> - 2002-01-30 09:17:53
|
Hey Guys, I have moved the website to it's new addess, and placed a url redirector page at the old location. the new url is http://tdt.ath.cx/ it is still running on the same server, just a different name. the files are under /home/www/tdt.ath.cx/ I have also setup automatic mailing of cvs commits from the repository as well. cya's Brian |
From: Brian C. <bch...@bi...> - 2002-01-29 10:45:14
|
Hi Guys, Just a thought, what are your thoughts on an automated email when a commit to the repository is done. Regards Brian. |
From: Brian C. <bch...@bi...> - 2002-01-29 10:36:54
|
Hi All, I have just checked the code back into the repository, it appears to be functioning correctly. However there is a modification required to IdIRC.pas, on line 904, change the line "MinTokenCount=15;" to "MinTokenCount=100". After this change you will need to remove the DCU files for indy, the BCP files for indy and the DPL files for indy, and then open indy60.dpk, compile, open dclindy60.dpk and compile/install. This fixes a token issue that is currently listed on the indy site as a bug. If this is not clear, let me know and I'll rewrite it. note there is an indy file in the windows system directory. The IRC stuff on the main form may need a little bit of a rework to get scalling working right. Regards Brian. |
From: Jeremy \Worm\ A. <wo...@ca...> - 2002-01-29 03:18:08
|
Hey guys, I just wanted to email to express some thoughts i was havin... = Brian, if you could, when you do the irc information, go ahead and code = the irc options on the options form while your at.... I am going to try = to get the library working properly tommorow if i have the time... I am = very new to delphi and this is the project i am using to get my feet = wet.. I like the language but it is frustrating at times... Hopefully = Coder can get that component rollin.. I am pretty clueless in that = area.... we need to start workin to get done by the 7th! worm |
From: Brian C. <bch...@bi...> - 2002-01-28 11:11:14
|
Hi Guys, I have started the integration of the IRC client, however it's not quite to the point to check it back in yet. Tomorrow I'll get it finished off and then check it back into the repository. I have basic functionality although I have a few exceptions still to catch. Regards Brian. |
From: Brian C. <bch...@bi...> - 2002-01-25 05:01:34
|
On Friday 25 January 2002 04:02, Dieter wrote: > Hey, > I have been unable to connect to the cvs it says authorization failed. > Please get back to me asap. Thnx > Dieter Hi Guys, I don't know what happened, but I played with some file rights in the cvs tree and also removed another cvs tree from my config, and it appears to have come good. Sorry about this. Regards Brian Cheeseman. |
From: Dieter L. <th...@mb...> - 2002-01-04 21:29:59
|
Hey, Here is a list of bugs that can be worked on: 1) Main window needs to be able to be sized and moved not either or 2) Main window is smaller at run-time then design 3) Download tool bar image doesn't appear at runtime If you find anymore bugs please post them on the project webpage or e-mail them to the list Dieter project page: http://sourceforge.net/projects/disk/ homepage: http://bcheese.homeip.net/~tank/ IRC: irc.dal.net #tank-dev ICQ: 122547422 |
From: Dieter L. <th...@mb...> - 2002-01-04 19:15:58
|
Hi, If you don't have component that I am adding to the program I will upload them to the webpage and you can get them from there. That way you don't have to keep e-mailing me for them. l8r Dieter project page: http://sourceforge.net/projects/disk/ homepage: http://bcheese.homeip.net/~tank/ IRC: irc.dal.net #tank-dev ICQ: 122547422 |
From: Dieter L. <th...@mb...> - 2002-01-03 21:11:39
|
Carlos, The component that I use is the one by Ray Adams but it may be a newer version so I am including it here. Second what will need to be done to make it compile in D5? Dieter project page: http://sourceforge.net/projects/disk/ homepage: http://bcheese.homeip.net/~tank/ IRC: irc.dal.net #tank-dev ICQ: 122547422 |
From: Carlos C. <iap...@ya...> - 2002-01-03 20:18:26
|
Hi, Where can I find the TBrowseForFolder you use, I have one developed by Ray Adams but apparently thats not the one that is being used. I also wanted your authorization to make it compile under D5, including the conditional compilation statements req'd. Best regards, Carlos __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com |
From: Dieter L. <th...@mb...> - 2002-01-03 01:31:00
|
Hi people, I just want to let you know that every commit to the cvs must include a message stating changes that were made to the code. You don't need to get into great detail. If you added a button the the tool bar say Added Download button to toolbar in the commit message. It is simple but needs to be done to keep track of changes. Thnx. |
From: Dieter L. <th...@mb...> - 2002-01-02 06:45:35
|
Carlos, I use WinCVS which can be found at http://www.wincvs.org. If you have any questions about how to use it or what to do please don't hesitate to ask. Here are some guidelines to follow when you start coding: 1) update your code before you start 2) when you are done update your code again 3) commit your changes to the cvs If we follow those hopefully we won't damage any changes made by another person. Talk to you all later. |
From: Carlos C. <ca...@ca...> - 2002-01-01 23:33:53
|
Hello, >1) Get jabber chat working. >2) Work on COM server with me and Brian >3) Find ways to tweak the interface and make it more user friendly Since 2 is well covered, let me handle 1 and 3. Anyone recommend a good cvs client for Windows, so I don't have to boot Linux everytime I need to download the code? -- Best regards, Carlos Castillo |
From: Dieter L. <th...@mb...> - 2002-01-01 18:48:12
|
Hi, I am just writing to say that screen shots are now available on the project web site http://bcheese.homeip.net/~tank/. |
From: Brian C. <bch...@bi...> - 2002-01-01 11:34:04
|
At 07:38 PM 31/12/01 -0600, you wrote: >Hey, > >I have started the component that will be used by the COM server. It is >available on the cvs as module gnutella. It isn't very much just now so >don't expect to compile it. If you would like to help me work on it you >will require the Indy components available from >http://www.nevrona.com/indy/. Brian if I don't talk to you before you get >this the main tank module is now tank if you need to change the tarball >script and don't include the gnutella module just yet. Talk to you all later. > >And remember to let me know what it is you would like to do. > > >_______________________________________________ >Disk-develop mailing list >Dis...@li... >https://lists.sourceforge.net/lists/listinfo/disk-develop Hi All, I have adjusted the shell script for generation of the nightly cvs tarball. We can include the gnutella module later without a problem. Regards Brian. |
From: Dieter L. <th...@mb...> - 2002-01-01 01:36:00
|
Hey, I have started the component that will be used by the COM server. It is available on the cvs as module gnutella. It isn't very much just now so don't expect to compile it. If you would like to help me work on it you will require the Indy components available from http://www.nevrona.com/indy/. Brian if I don't talk to you before you get this the main tank module is now tank if you need to change the tarball script and don't include the gnutella module just yet. Talk to you all later. And remember to let me know what it is you would like to do. |
From: Dieter L. <th...@mb...> - 2001-12-31 03:21:16
|
Hey peeps, Here are some of the things that need to be done. Please let me know what specifically you would like to do. 1) Get jabber chat working. 2) Work on COM server with me and Brian 3) Find ways to tweak the interface and make it more user friendly There are probably more things than this that need to be done but they are the only ones I can think of at this time. Please register on the web site so you can get more info from the developer only forums and other such perks. I hope to be sending out more regular e-mails and I want to hear from you guys and get your ideas and suggestions into this as you are working on it. I don't want to be the guy who says this is the way it is going to be or don't work on that. If you have an idea that you want to add to the project e-mail the list about it or put it in the feature requests and I will look at it and get back to you. I want this to be as much your project as mine. Brian has graciously donated his computer for the web page and cvs server. I don't expect you to do that much but at least don't think I am not going to be a harsh dictator in this project. I hope to get to know each and every one of you guys before this is done so that we can work easier together. I know I heard from Carlos so I am going to be lenient about kicking Ken out but please give your opinions and ideas and contribute your share into the project. Thanks. |
From: Carlos C. <ca...@ca...> - 2001-12-31 01:19:40
|
Hi, I'm Carlos and I don't want to be thrown out of the project :-) No really. I connected to the cvs and downloadeded the files to my computer. Let me see what I can hack here and there (or assign me something...) anyways I'm here to work. Happy new year everyone! -- Best regards, Carlos |
From: Dieter L. <th...@mb...> - 2001-12-29 15:57:30
|
Hey People, Here is the final ultimatum. Respond to this e-mail within two days and you will not be cut from the team (this doesn't include you Brian). If you do not respond I will take that to mean you aren't interested in being apart of this project and will remove you as a developer. This will be your last and final warning. Thank You for your interest anyway. |