emuikernel / wittytwitter

Automatically exported from code.google.com/p/wittytwitter
1 stars 0 forks source link

Windows 7 Support #250

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Clicking the Witty icon in the taskbar when it's minimized - instead of 
maximizing it, will try to launch another process. Perhaps this can be 
overcome with the handling of a launch event - that if the process is 
already running, instead of displaying an error message, it simply 
maximizes the current session.
2. Jumplists for Windows7 would be nice. 
3. Not sure it's a Windows 7 specific, but after logging in the login form 
will not disappear, yet instead stay 'on top' of the gui. Only way to get 
rid of it is to close the app completely and relaunch it.

What version of the product are you using? On what operating system?

Tried both nightly and latest official build.
OS is Windows7 RC (7100)

Original issue reported on code.google.com by eladav...@gmail.com on 3 May 2009 at 10:29

Attachments:

GoogleCodeExporter commented 8 years ago
Looking at http://code.msdn.microsoft.com/WindowsAPICodePack

Seems like it's not backwards compatible, so you have to check if 
System.Environment.OSVersion.Major >=6 && System.Environment.OSVersion.Minor 
>=1 
before using Win7 featues.

Original comment by jongallo...@gmail.com on 4 May 2009 at 7:02

GoogleCodeExporter commented 8 years ago
I'm no big programmer, but can't this be put in a conditional function?
For example (and pardon my lack of syntax):

If (System.Environment.OSVersion.Major >=6 && 
System.Environment.OSVersion.Minor >=1)
{
//do the jumplist thing
}

Original comment by eladav...@gmail.com on 4 May 2009 at 9:36

GoogleCodeExporter commented 8 years ago
Yes, those were just my notes on the fix.

Original comment by jongallo...@gmail.com on 5 May 2009 at 6:05