IconSort 1.04 released.
Mentat Without Prescription
Purchase Triphala
Generic Avodart
Purchase Urispas
Generic Actos
Natural Combivent
Generic Herbolax
Buy Mentat Online
Order Zyrtec
Generic Avandamet
Purchase Mental Booster
Tentex Royal For Sale
Generic Depakote
Order Kytril
Buy Cialis Soft Tabs Online
Buy Toprol Xl Online
Purchase Atrovent
Viagra Cialis Pill
Order Diet Maxx
Pletal For Sale
Inderal Pill
Buying Lasix
Generic Urispas
Buying Medrol
Order Proscar
Cialis Soft Tabs Without Prescription
Natural Prozac
Purchase Combivent
Zanaflex Without Prescription
Buying Rimonabant
Stretchnil Pill
Purchase Abana
Prandin Without Prescription
Generic Lamictal
Endep Without Prescription
Natural Zoloftultram
Buy Innopran Xl Online
Purchase Herbal Maxx
Differin Without Prescription
Generic Mircette
Buy Combivent Online
Omnicef Pill
Kamagra For Sale
Generic Isordil
Buying Indocin
Natural Hytrin
Cla Pill
Natural Zebeta
Shuddha Guggulu Pill
Buy Vermox Online
I’m glad to announce that the new version of IconSort is ready for download.
More information and downloads here.
This entry was posted on Monday, March 23rd, 2009 at 3:00 and is filed under General. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
March 25th, 2009 at 23:19
Hi, …
—
V1.04 x32 = version “installer .exe”, and the “standalone .zip”, tested.
—
For the moment, i have tested the V1.04 x32, in = Windows XP, x32, French Canada, SP3.
It only work one time. And after each logout and/or restart, even trying to deinstall ans re-install, it show that error, …
“Unable to get user’s folder”.
—
The v1.03 x32, dont show that error message and work.
—
—————————
Sylvain St-Amand (sst)
March 27th, 2009 at 0:40
Hi, I’ve been testing both installers (32/64) and have no problems neither with adminstrator or limited accounts.
Tested on Windows XP SP3 and Windows XP x64 SP2.
No problems at all. I’ll continue the testing.
Good-bye.-
March 27th, 2009 at 1:53
By the way, this new version is multi-user, because of that the program tries to get user’s folder (ex: “C:\Documents and Settings\\Local Settings\Application Data”) and here stores icon’s data and language file. Because of that, each user (administrator or limited) can store his own data and language preferences.
Version 1.03 doesn’t have this feature. Please go to your user folder and look inside it for a folder called IconSort. Remove it if exists and try the program again.
It will be grear ff you can test the program in another copy of Windows.
Thanks for your support.
March 27th, 2009 at 12:00
v1.04, Xp x32, … I will try today in a virtual machine, in x64.
It make the bug on installed xp and virtual machine of xp, further test soon, …
—
I have found, the problem, …
= I have a ntfs partition, and compressed the disk. The problem is, if an harddisk have the “[C:\Documents and Settings\" and it sub-directory(s)], user directory compressed, …
In example = if your username is (MyAccount). Then if = “C:\Documents and Settings\MyAccount”, is not compressed, it make no bug. But compress the directory and it sub-directory(s) = “C:\Documents and Settings\MyAccount”, then it make the bug. Also, … i have try to made 2 accounts in a virtual machine, and it make the bug, inside the compressed user directorys.
—
In conclusion, …
I have tested that you can keep the compression, on the disk, but only dont compress the “C:\Documents and Settings”, section.
—
At your side, try on a Windows that have, ntfs and compressed the disk.
Fat32 dont make that bug, ntfs not compressed dont make that bug, ntfs compressed but users directory not compressed dont make that bug.
——————————————————————————-
I hope that it can help.
—
V1.04 x32 = version “installer .exe”, and the “standalone .zip”, tested.
—
For the moment, i have tested the V1.04 x32, in = Windows XP, x32, French Canada, SP3.
It only work one time. And after each logout and/or restart, even trying to deinstall ans re-install, it show that error, …
“Unable to get user’s folder”.
—
The v1.03 x32, dont show that error message and work.
—
—————————
Sylvain St-Amand (sst)
March 27th, 2009 at 14:59
Hi, it’s a very strange behavior the one that you describe. To obtains the full path of the user’s folder I’ve been using a Windows API called SHGetSpecialFolderLocation().
If the API can’t obtains the path when the disc is compressed, thats a problem I can’t resolve.
I’ll test it and I’ll try to find another way to obtain user’s folder.
Thank you for everything.
April 3rd, 2009 at 21:22
I’m sorry to say the new 64 bit ver also comes up with “unable to get users folder” with my 64bit vista HP laptop.
I’ve been using previous versions and really appreciate the program.
April 3rd, 2009 at 21:33
Hi there. I’ve just submitted a new release with this bug fixed. Please download again and tell me if its works for you.
Thank you for your support.
April 3rd, 2009 at 21:44
Actually, and to my relief, I take the last statement back - I just reinstalled from YOUR SITE and it now works perfectly. (The CNET version was a problem).
Thank you heaps Esteban.
April 3rd, 2009 at 21:50
Thanks for your answer. I’ll upload to CNET again A.S.A.P.
April 3rd, 2009 at 21:57
Isn’t this modern world a wonder?
It’s Saturday morning here, 11.33am,4th.
I’m in Australia - you’re in Argentina!
Best wishes!
April 3rd, 2009 at 22:03
Yes it’s quite impressive how people can comunicate in these days.
It’s friday here yet. 10:11 PM.
April 9th, 2009 at 16:46
I really like this application and wanted to contribute a modification that I made to the source. I made a small modification that prevents launching multiple copies of the IconSort.exe. I tested the x64 binary on 2003 x64 and the x32 binary on XP SP3 x32. Feel free to post any questions or comments and I’ll try to reply ASAP.
Thanks,
Steve
/*———————————————————
Modified File: main.cpp
Change Log: - Added 2 new global variables.
- Added new code block to top of WinMain().
———————————————————-*/
1) Add 2 new global variables (section following #includes).
————————————————————
#define VER_CurrentId_Sys L”IconSort 1.04″
HANDLE m_hMutex;
2) In WinMain(), add block of code to the top of the function.
————————————————————–
// Check to see if another instance of Icon Sort is running, exit if true
m_hMutex = CreateMutex(NULL, FALSE, VER_CurrentId_Sys);
if ((m_hMutex != NULL) && (GetLastError() == ERROR_ALREADY_EXISTS))
{
ReleaseObjects(); // Cleans everything
return 1;
}
April 11th, 2009 at 0:11
Thank you very much. I will include it in the next release.
May 23rd, 2009 at 14:51
program dont save icons, with ?ussia? l?tt??s (there no such writes in xml)
IconSort 1.04 x64
windows7 7100×64
June 18th, 2009 at 18:19
Hi there. I don’t undestand what the problem is. Icons with special characters aren’t saved ?
Thanks for writting. Good luck.-
June 20th, 2009 at 21:27
Hi, …
————————————————————————————-
You have not modify that news, …
/************************************************************
IconSort works on Windows 7.
March 20th, 2009
Thanks to Sylvain St-Amand for testing IconSort on Windows 7 Beta #7000.
************************************************************/
=
/***********************************************************
IconSort works on Windows 7.
June 20th, 2009,
Thanks to Sylvain St-Amand for testing IconSort on Windows 7 Beta and ReleaseCandidate #7100.
************************************************************/
———————————-
Also, … i still wait, for the \"Start with windows\" options, … in the systray icon, …
————————–
Sylvain St-Amand (sst)
June 23rd, 2009 at 13:20
Hi Sylvain, I don’t have time for a new release for the moment.
Maybe in a few months. I hope.