TClock3 0.3.5
#81
Posted 24 September 2007 - 12:54 AM
i mean, why do we get all the source files in that package, it is just space.
the most of us dont even now how to use that.
Cant you make two seperate packages?
one with the source and one smaller package with out the source?
damian666
#82
Posted 27 September 2007 - 09:13 PM
damian666, on Sep 24 2007, 02:54 AM, said:
i mean, why do we get all the source files in that package, it is just space.
the most of us dont even now how to use that.
Cant you make two seperate packages?
one with the source and one smaller package with out the source?
damian666
Hee, hee. Sorry about that. I'll try to organize it a bit better. I hate having to maintain two separate packages, but I'll see if I can at least put the source in a separate folder.
#83
Posted 28 September 2007 - 01:24 AM
damian666
#84
Posted 28 September 2007 - 02:19 PM
#85
Posted 01 October 2007 - 12:54 AM
damian666
#86
Posted 01 October 2007 - 01:25 AM
I'm willing to test and post Dr.Watson crash reports, if helpful.
#87
Posted 03 October 2007 - 09:07 PM

It's really hard for me to test under Win98 as I don't normally keep a PC with that installed. I've made a lot of changes to this version around the shutdown code that might help under Win98 though, so there's hope with this one.
This post has been edited by WildBill: 03 October 2007 - 09:28 PM
#88
Posted 04 October 2007 - 02:56 PM
Anyway, I was just thinking of you having Win98 installed under a virtual machine, as many other developers do.
#89
Posted 10 October 2007 - 07:59 PM
Drugwash, on Oct 4 2007, 04:56 PM, said:
Anyway, I was just thinking of you having Win98 installed under a virtual machine, as many other developers do.
Using a VM would be a cool possibility. Is there an easy way to do this? I have a spare laptop HD so I could load Win98 on it again, but that would take all day
I'm trying to get the next TClock3 ready and I'll release it as soon as I fix these last few bugs. One thing I'm considering is dropping support for importing WB skins. I found that skin files have some text at the top that prohibits using them with anything other than WB. Personally I think there's zero legal force behind it, but I might drop it just to avoid the fight. I've been refactoring the heck out of the internal code and at some point I plan to totally redesign the TClock3 interface to make it a lot easier to set up a skin, to the point where importing might not be necessary anyway. Of course, their files and mine are both just .INI files, so if there was demand for it I guess it wouldn't be long before someone wrote a converter anyway. If anyone has an opinion on the matter, I wouldn't mind hearing what you think.
This post has been edited by WildBill: 10 October 2007 - 08:10 PM
#90
Posted 11 October 2007 - 04:12 PM
For most users, creating own skins instead of comfortably importing already existing ones would just be a turn-off. Tihiy's Revolution Pack already does skinning - and in a more advanced way - and Stoic Joker's version of TClock works fine without crashing on exit, at least on my machine.
At this point, I dunno what to say... Let's hear other opinions.
#91
Posted 13 October 2007 - 07:55 PM
Known bugs:
- Quitting TClock3 can crash some programs. My Palm HotSync Manager doesn't like it when I quit TClock3, for instance.
- Halos do NOT work correctly. If you import a skin that uses them, make sure to turn halos off.
I edited the top post with the new download link (0.3.3).
This post has been edited by WildBill: 13 October 2007 - 07:56 PM
#92
Posted 15 October 2007 - 04:26 AM
The wbskins come with more then tclock needs, so its big, when there is no need really...
i will look at this new release, thanx again man.
oh btw, did you see you got a sticky now?
i thought it was appropriate so i asked for it! hahaha
now i dont have to search anymore for your posts.
damian666
#93
Posted 15 October 2007 - 09:59 AM
- 100% CPU usage all the time
- quicklaunch icons were all shifted to a clickable menu, while their original taskbar space was empty and not skinned, except for incidental bitmap overlaps.
Systray icons still hidden, still crashes on exit.
I reapplied the BoostMauve theme, as some elements were not skinned anymore due to changes between versions. No start menu skinning, no advanced skinning like halos, etc.
Currently I'm sick, can't test more thoroughly, sorry.
#94
Posted 17 October 2007 - 01:22 AM
you broke something i think.
or could you please post your theme and ini file as a startpoint?
damian666
#95
Posted 17 October 2007 - 06:10 AM
drop all features and code you don't need or want!
That's how i usually do. Don't listen to anyone whining.
Release really stipped down version which is stable and only then start adding features.
As a programmer, i can say that your TClock3.dll code is insanely **** overfilled with features and API which:
0) Don't have sense under Win2000.
1) Duplicate functionality is already present in Win32 API.
2) Don't make sense at all. Let me explain:
try hDC=GetWindowDC(hwnd) .... finally ReleaseDC (hwnd,hDC) end;
How can this code fail? If NT user32.dll is trowing exception at GetDC(), it means your process is extremely badly corrupted and you should just fail hard. If you're tough, check it for <>0 and that's it.
Personally, i believe object-oriented code is harder and worser to manage when you're dealing with hooks.
Wrapping everything in try..except is a bad idea (in all means), better, rewrite main things in flat non-object code, you'll gain speed and simplicity.
I'll suggest you rewriting your code and splitting it into several pieces:
- TClock3Test.exe: why 2,6 MB has to be loaded always? You need just hook loader and icon in system tray (or clock hooked). Split them into TClock3Loader and TClock3Settings.
- TClock3.dll: well, split it at least into 2 dlls: one which gets loaded into explorer.exe only and other into all processes.
Get rid of hooks if you can safely hook API.
Some boasting maybe, but that's how LameSkin is used:
- 30 KB for skin loader, loads bitmaps into shared memory(only startup process);
- 60 KB for shell hooking (30% of its code is actually for taskbar skinning);
- 32 KB for process hooking (15% of its code is actually for window skinning);
- 52 KB skin metrics/drawing API for every process;
- 24 KB for 32-bit icons (consider this as an equivalent for font smoothing) for every process;
So, it is 32+52+24=108KB and PB compiler sucks. Usually with loaded skin memory usage increase is under 2MB.
You can do the same! If you don't want WB skins, use Windows XP msstyles format (it is FAR better than WB ones in terms of simplicity and standartization, and i believe it can't be restricted to Windows XP) or extracted bitmaps with ini file like i do.
You can read a bit of LameSkin skin format if you like:
http://tihiy.ahanix.org/lame/
Note it does not contain advanced taskbar skinning features
#96
Posted 17 October 2007 - 06:43 AM
it sounds like reason.
and i do think there are to many features in tclock3.
cut it down, really man do that
damian666
#97
Posted 05 November 2007 - 10:44 AM
I didn't notice any type of installer open, although I walked away for a minute.
Now my clock has dissappeared, and I'm thinking a restart will get it going.
#98
Posted 15 November 2007 - 08:24 PM
#99
Posted 16 November 2007 - 04:58 AM
will report on monday what the findings are.
damian666
#100
Posted 03 December 2007 - 08:09 PM



Help

Back to top










