Hi,
MLC said:
Hi _Moonlit_,
The new version is already downloadable? If so, you're fast!
Yes, it shows 1.01.
Two other questions:
+ I saw that during the install something was added/changed to
windows\system32, something correlated with "runonce" and a file ending in
-o (I'm sorry I can't be more precise). What is it?
I don't think it uses the runonce registry entry. Although I am not 100%
sure. Partially it uses the windows setup api. I checked my registry and
didn't find any entries in it. However I am still curious why you thought
that.
It does however add registry entries. First for the windows dll's it
installs like the Visual C++ library and the MFC library. It hands those to
the setup api which should increase the reference count for those DLL's
(though microsoft's recommend never to deinstall the msvcrt.dll Normally
when the reference count decreases to zero, during deinstall, windows would
say something like 'windows detected this dll is no longer in use by any
program would you like to deinstall?").
Secondly for all the fields in the interface, so you don't have to setup
everything again when you exit the program.
Third, it adds an entry so you can type MeAndMyGall in de "run..." combobox
and windows will find it.
Fourth, it will add an entry for the Add/Remove programs applet. So clicking
on the entry will start my setup program again which will remove everything
it installed.
BTW you can look in the programs directory, there should be a file
MeAndMyGall.inf. Used during installation/deinstallation. It shows you most
of the things happening during install.
+ The install file was a resource hog (CPU 100% always)
You're right it has the same problem. I didn't yet fix that though, but
since it only runs once. I will fix it in a future version though (see
below).
and IIRC didn't
close well: the progress bar was still halfway when the installation was
finished. Could you fix also it?
I will fix it, but not in this version, the problem is I use the same
installer for all my programs. Currently in a way that the installer itself
doesn't really know how far installation is. But I could at the end of
course set the slider to max. However it also would make me compile and
repackage and then test all the programs. But I certainly add it my todo
list.
Thank you for taking the time to report the bugs, so I can improve the
program.