Description of Favorite Users

Archived discussion about features (predating the use of Bugzilla as a bug and feature tracker)

Moderator: Moderators

Locked
_Fredzz_
Posts: 15
Joined: 2003-09-26 03:49

Description of Favorite Users

Post by _Fredzz_ » 2003-11-17 07:16

:idea:
It would be nice to had something to write when you had a user to the Favorite users list just like when you had an HUB you have a place to put a description. I think many ppl would like this. Someone post it in the request website. I didn't did it because i had to register.. and i dont feel like it...

Any comments?!

GargoyleMT
DC++ Contributor
Posts: 3212
Joined: 2003-01-07 21:46
Location: .pa.us

Post by GargoyleMT » 2003-11-17 13:57

There's no need for you to register and post it on the RFE tracker; someone did add it, back in February:

[ 679288 ] Add Notes/Comments to Favorite Users

_Fredzz_
Posts: 15
Joined: 2003-09-26 03:49

Post by _Fredzz_ » 2003-11-17 16:41

2003-02-02 19:08 ????


IN 2002???! Where's that feature in DC++ ???? :x

Xan1977
Forum Moderator
Posts: 627
Joined: 2003-06-05 20:15

Post by Xan1977 » 2003-11-17 18:36

while (cur_year == 2003)
{
while (feb == 02)
{
cout<<"It was posted this past February.\n Have a nice day.";
}}

Xan1977
Forum Moderator
Posts: 627
Joined: 2003-06-05 20:15

Post by Xan1977 » 2003-11-17 18:37

That was the most disguisting code I've ever written. The fact that it wouldn't even compile takes away from the otherwise witty remark. :(

_Fredzz_
Posts: 15
Joined: 2003-09-26 03:49

Post by _Fredzz_ » 2003-11-17 18:38

Xan1977 wrote:while (cur_year == 2003)
{
while (feb == 02)
{
cout<<;
}}
what a hell is that?? code for DC++???
have a nice day
its 1:00am over here

_Fredzz_
Posts: 15
Joined: 2003-09-26 03:49

Post by _Fredzz_ » 2003-11-17 18:40

ahh ok.. i got it now.. dc++ code :roll:

Xan1977
Forum Moderator
Posts: 627
Joined: 2003-06-05 20:15

Post by Xan1977 » 2003-11-17 18:40

Ok, then sleep well :D

Yea, that's C++ and it's on an infite loop until next year, hope Sourceforge can handle that...

_Fredzz_
Posts: 15
Joined: 2003-09-26 03:49

Post by _Fredzz_ » 2003-11-17 18:42

can you make changes on the source coude of dc++?? cool? do you have a modified version that you use, dont you?? badboy badboy 8)

TheParanoidOne
Forum Moderator
Posts: 1420
Joined: 2003-04-22 14:37

Post by TheParanoidOne » 2003-11-17 19:37

_Fredzz_ wrote:can you make changes on the source coude of dc++?? cool? do you have a modified version that you use, dont you?? badboy badboy 8)
You do of course realise that DC++ is open source, meaning that the source code is freely available, don't you?
The world is coming to an end. Please log off.

DC++ Guide | Words

_Fredzz_
Posts: 15
Joined: 2003-09-26 03:49

Post by _Fredzz_ » 2003-11-17 19:39

[I] do. thats why [I] asked. but [that wasn't] the answer [I expected]. yes or no? do you use a modified version? just curiosity. (spellcheck plz)

(spellcheck completed, /sed)

Xan1977
Forum Moderator
Posts: 627
Joined: 2003-06-05 20:15

Post by Xan1977 » 2003-11-17 19:45

I can make changes to it, but the results are usually horrific.

Code: Select all

LRESULT FavHubProperties::OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
{
	if(wID == IDOK)
	{
		char buf[256];
		GetDlgItemText(IDC_HUBNAME, buf, 256);
		entry->setName(buf);
		GetDlgItemText(IDC_HUBDESCR, buf, 256);
		entry->setDescription(buf);
		GetDlgItemText(IDC_HUBADDR, buf, 256);
		entry->setServer(buf);
		GetDlgItemText(IDC_HUBNICK, buf, 35);
		entry->setNick(buf);
		GetDlgItemText(IDC_HUBPASS, buf, 256);
		entry->setPassword(buf);
		GetDlgItemText(IDC_HUBUSERDESCR, buf, 35);
		entry->setUserDescription(buf);
		HubManager::getInstance()->save();
	}
	EndDialog(wID);
	return 0;
}
That's an IF statment out of the source for DC++... compare that to my sad little embeded while statements... you get the idea :cry:

I haven't contributed, but maybe I'll be able to after I get out of college. I hope so.

But to answer your question I run all different flavors of DC++ from .301 to .303 to BCDC... I was running that Reverse Connect thing earlier... but none are my own, yet :D

_Fredzz_
Posts: 15
Joined: 2003-09-26 03:49

Post by _Fredzz_ » 2003-11-17 19:47

thats good code. but theres one thing its wrong:

if(wID == IDOK)
should be als
only in the source between the line where you specify it
the same to GetDlgItemText(IDC_HUBPASS, buf, 256);
that should contain: "NOS" so you have better speed.



What do you think of my code? 8)

Xan1977
Forum Moderator
Posts: 627
Joined: 2003-06-05 20:15

Post by Xan1977 » 2003-11-17 19:50

What do you think of my code?
:lol: Brilliant!

I'll add a cold-air intake and a flomaster cat-back exhaust and we'll submit a patch to Arne :wink:

_Fredzz_
Posts: 15
Joined: 2003-09-26 03:49

Post by _Fredzz_ » 2003-11-17 19:51

only if it is executable so he can't see the source.

Twink
Posts: 436
Joined: 2003-03-31 23:31
Location: New Zealand

Post by Twink » 2003-11-17 23:29

_Fredzz_ wrote:only if it is executable so he can't see the source.
but if arnie can't see the source then what's he meant to do with it?

GargoyleMT
DC++ Contributor
Posts: 3212
Joined: 2003-01-07 21:46
Location: .pa.us

Post by GargoyleMT » 2003-11-20 12:18

_Fredzz_ wrote:IN 2002???! Where's that feature in DC++ ???? :x
Not all feature requests get filled right away, or at all.

However, unless Saurod beats me to the punch, I'll code this one... It should enable people to manually enter favorite users as well.

(Like my last-seen code in 0.304? :))

mai9
Posts: 111
Joined: 2003-04-16 23:02

Post by mai9 » 2003-11-21 11:14

what a strange topic this is.... :roll:

Locked