Why does it fail for everyone BUT me and my VM...
[img]http://imgur.com/ws0md.jpg[/img]
Because you made it for YOUUUU.
[QUOTE=itsDivine;23268261]Because you made it for YOUUUU.[/QUOTE]
Ah, the joys of software development. Unreproducible bugs, unless, of course, it's the user.
2 reports of it not working.
:v:
Well, that's unpleasant.
[IMG]http://dl.dropbox.com/u/3794151/unpleasant.png[/IMG]
It works but with some incredibly ugly font v:v:v
Not for me.
[QUOTE=Dashiel;23268403]Well, that's unpleasant.
[IMG]http://dl.dropbox.com/u/3794151/unpleasant.png[/IMG]
It works but with some incredibly ugly font v:v:v[/QUOTE]
I'm aware.
[img]http://filesmelt.com/dl/unreadable.png[/img]
[editline]03:14AM[/editline]
I'm completely baffled as to how this is happening as well, since it uses the default font for labels.
[editline]03:17AM[/editline]
Awesome! I found one of my computers that exhibits the text screwups.
Still logs in perfectly though.
Also for the record in my screeny above, all of that is for a memory profiling application I was using.
[QUOTE=Jawalt;23269002]Also for the record in my screeny above, all of that is for a memory profiling application I was using.[/QUOTE]
Sure it is, hacker!
Also, found it is with my fading controls wrapper. Not sure HOW though, since it basically paints the control to an image in memory, then paints that with opacity to the actual control. Looking to try another way to do it, but does not look like there really is one. Another hack involving windows on top of my control, but that's about it.
Hmmh, still won't login without crashing, but I am seeing notifications.
Here's the good version:
[IMG]http://imgur.com/NpGRJ.png[/IMG]
Here's the bad version:
[IMG]http://imgur.com/uXyhe.png[/IMG]
Here's the relevant source code that outputs either one seemingly randomly based upon where it's running, OS independent:
[cpp] void UpdateImageBuffer()
{
_img = new Bitmap(BaseControl.ClientRectangle.Width, BaseControl.ClientRectangle.Height,
PixelFormat.Format32bppArgb);
Graphics fakeGraphics = Graphics.FromImage(_img);
InvokePaint(BaseControl, new PaintEventArgs(fakeGraphics, BaseControl.ClientRectangle));
fakeGraphics.Flush();
}
protected override void OnPaint(PaintEventArgs e)
{
UpdateAutoFade();
_redraw = false;
if(_img == null)
UpdateImageBuffer();
if(!File.Exists("durp.png")) // let's see....
_img.Save("durp.png",ImageFormat.Png);
ImageAttributes imgattribs = new ImageAttributes();
imgattribs.SetColorMatrix(new ColorMatrix {Matrix33 = _opacity }, ColorMatrixFlag.Default, ColorAdjustType.Bitmap);
e.Graphics.DrawImage(_img, e.ClipRectangle, 0, 0, e.ClipRectangle.Width, e.ClipRectangle.Height, GraphicsUnit.Pixel, imgattribs);
base.OnPaint(e);
}
[/cpp]
I think it's easy to see why I am confused.
I was thinking, if there is nothing to do with the fade, maybe you can make it slide out to the right or something instead.
Also, maybe remove the border or the notification window?
[QUOTE=LarparNar;23276229]I was thinking, if there is nothing to do with the fade, maybe you can make it slide out to the right or something instead.
Also, maybe remove the border or the notification window?[/QUOTE]
Actually, as far as my testing can tell, it's drawing a control to an image. But only on some systems.
Sure.
All versions but the first crash on startup for me on Windows 7, no error.
first version says login failed, but it still shows all the posts being made in that ugly ass font.
Wouldn't it be easier to make it like the original one and just have it track threads that were user entered?
[editline]01:05PM[/editline]
Also, just saying, I have a mac and I run os x\windows 7. I have no experience with coding at all, though.
Im working on one that displays the post like if you are on facepunch. With the emoticons, images and all that.
[QUOTE=BobbyHill;23282463]Im working on one that displays the post like if you are on facepunch. With the emoticons, images and all that.[/QUOTE]
I did that at first, with a cut down html page with css. But it was slow as hell.
[editline]09:31PM[/editline]
[QUOTE=Lambadvanced;23281741]All versions but the first crash on startup for me on Windows 7, no error.
first version says login failed, but it still shows all the posts being made in that ugly ass font.
Wouldn't it be easier to make it like the original one and just have it track threads that were user entered?
[editline]01:05PM[/editline]
Also, just saying, I have a mac and I run os x\windows 7. I have no experience with coding at all, though.[/QUOTE]
I tested with windows 7 x86 and x64, as well as windows XP x86. Last two work perfectly, correct font and all: first has ugly font: I've never gotten any to crash.
That third one, when it crashed did it give out a crash log?
[QUOTE=ShaRose;23288271]I did that at first, with a cut down html page with css. But it was slow as hell.
[editline]09:31PM[/editline]
I tested with windows 7 x86 and x64, as well as windows XP x86. Last two work perfectly, correct font and all: first has ugly font: I've never gotten any to crash.
That third one, when it crashed did it give out a crash log?[/QUOTE]
Earlier in the thread you say you MD5 hash the password, do you still do that?
[QUOTE=darkrei9n;23288399]Earlier in the thread you say you MD5 hash the password, do you still do that?[/QUOTE]
Yes. It only saves it as a hash as well.
[QUOTE=ShaRose;23288529]Yes. It only saves it as a hash as well.[/QUOTE]
Ah, according to the book I got MD5 is considered broken, along with MD6. Which is why I asked.
It does mention SHA-2 as a unbroken one.
I have logging in working on mine. :3:
[QUOTE=ShaRose;23288271]I did that at first, with a cut down html page with css. But it was slow as hell.
[editline]09:31PM[/editline]
I tested with windows 7 x86 and x64, as well as windows XP x86. Last two work perfectly, correct font and all: first has ugly font: I've never gotten any to crash.
That third one, when it crashed did it give out a crash log?[/QUOTE]
Nope, the icon came up and then just closed.
[QUOTE=darkrei9n;23288574]Ah, according to the book I got MD5 is considered broken, along with MD6. Which is why I asked.
It does mention SHA-2 as a unbroken one.[/QUOTE]
I'm fully aware MD5 is broken. That's all the forum accepts.
[editline]11:38AM[/editline]
[QUOTE=Lambadvanced;23296260]Nope, the icon came up and then just closed.[/QUOTE]
Weird. The first thing the thing does is if there are any unhandled exceptions, present you with the 'here's a crash dump, send it to ShaRose' form.
So is this dead Project?
Nah, just don't have a bunch of time. :v:
[QUOTE=Zeb Brown;23460527]So is this dead Project?[/QUOTE]
I was unable to find anyone with any idea what the hell was going on with that text issue.
Or a library to replace what I had. I'm debating [url=http://www.growlforwindows.com/]Growl for windows[/url] though.
[img]http://www.growlforwindows.com/gfw/images/ss/expanded.png[/img]
That's if everyone's OK with installing it.
Screw it, I'll use growl. It's better looking than anything I'd be able to do up. I'm sure after a while I could get the effect, but this is customizable. It's only really supposed to be a demo application anyways, so.
[editline]08:44AM[/editline]
Automerge, suck my balls.
[editline]11:40AM[/editline]
Well, growl worked PERFECTLY. And there's even the ability to set an icon, so I can just use the poster's avatar right next to the notification! Shame getting growl to download it makes it slow as all hell. So here it is with the default image (I'm gonna get a facepunch one there later)
[IMG]http://imgur.com/jdCXY.jpg[/IMG]
That's also the 'plain' style: There's a load of custom ones you can get.
When will this version be out? I'd wait for this one.
This looks nice.
[IMG]http://imgur.com/CSxBB.jpg[/IMG]
I've written my own version that mimics closely what Steam does to notify you. Is that a good idea?
Sorry, you need to Log In to post a reply to this thread.