Page 2 of 2
Posted: Wed Oct 13, 2004 10:27 am
by Fred
Fr34k: I will recompile a new version of the gadgetextension library and put it online asap.
Posted: Fri Oct 15, 2004 10:00 pm
by GeoTrail
Am I always the last to kn0w?
Fred, you should have a newsletter thingy on your site.
Oh, btw, how can I change the email address for my login on the private page? I don't use the email address that I used to register PB with anymore.
Posted: Fri Oct 15, 2004 10:26 pm
by fsw
GeoTrail wrote:Am I always the last to kn0w?
Fred, you should have a newsletter thingy on your site.
Oh, btw, how can I change the email address for my login on the private page? I don't use the email address that I used to register PB with anymore.
Log in into the registered user area with your old email address.
On the bottom (on the right ) there are 3 options:
Change your e-mail
Change your password
Logout
Now choose your option...
If you have a new e-mail address just type in the new one.
The same goes if you want to change your password.
bye
Posted: Fri Oct 15, 2004 10:39 pm
by GeoTrail
fsw, I tried that.
When I go back to the email option the address I entered is displayed there but I still have to login using my old email address.
Posted: Fri Oct 15, 2004 11:56 pm
by freak
GeoTrail:
If you change the email adress in the user area, you change the adress
to which emails are sent (if you forget your password for example)
However, the login email remains the same.
Maybe Fred can change that sometime...
Fangbeast:
I can add this festure, but only if i get an internet connection on my new
home before Fred releases the final. We'll have to wait'n'see...
Fred:
The GadgetExtension lib should be fine, it only contains the gadget creation code.
The event code however is located in the Window asm lib. You must recompile that one!
Timo
Posted: Sat Oct 16, 2004 12:01 am
by GeoTrail
OK freak. Yeah I think Fred should make it so we could change our login email address. Maybe add a validation thing so it sends one email to both addresses with a validation link and both has to be clicked for the email address to be updated... Just an idea though.
Re: PureBasic 3.92 beta 1 for Windows released
Posted: Sat Oct 16, 2004 2:00 am
by MrMat
freak wrote:- Optimized: ListCount() and ListIndex() are now very fast (it doesn't iterate each element of the list anymore).
I take it that means CountList()

Since these list commands have been sped up, how about speeding up SelectElement by iterating back through the list if the position is greater than half the CountList? I'm working with a million elements at the moment and this would give an incredible speed boost when dealing with latter elements. You could even store say 100 equally spaced indices throughout the list and start from the nearest element each time. It'd use hardly any memory and make finding elements soooo fast!
I notice also that PBCompiler is still giving a zero return code even when theres an error (i sent an email about it). Would be nice if that was non-zero
Great work on the update!!
Edit: Thinking about it more, SelectElement could have an optional starting parameter (pointing to an element in the list) and direction parameter (forwards or backwards to search through the list) and then the user can maintain his own speedy routine. This should have been in feature requests, sorry!
Posted: Mon Oct 18, 2004 2:48 am
by eddy
Is new gadget events fixed ? (calendar and date)
Posted: Tue Oct 19, 2004 10:08 am
by freedimension
Fred wrote:It now returns a gadget event, as other gadgets.
Code: Select all
openWindow(0, 0, 0, 400, 300, #PB_Window_MinimizeGadget | #PB_Window_ScreenCentered, "Test")
CreateGadgetList(WindowID())
ImageGadget(0,50,50,100,100,CreateImage(0,100,100))
Repeat
event = WaitWindowEvent()
If event = #PB_Event_Gadget : MessageRequester("Yeah!","Yeah!"): EndIf
Until event = #PB_Event_CloseWindow
I've fixed the linkedlist library, so feel free to test it and see if all is ok now. The new lib is here:
www.purebasic.com/beta/LinkedList
You should at least pass the #WM_XBUTTONXXXX messages to the callback, the actual state is unacceptable. Just my 2 cents.
Posted: Wed Oct 20, 2004 11:14 am
by HeX0R
What about the Ogg-Bug (
-Link- ) ?
I still get "Attempted division by zero" when trying to load an ogg-file.
Posted: Wed Oct 20, 2004 11:37 am
by Fred
I can reproduce it too, I will take a closer look.
Posted: Wed Oct 20, 2004 11:39 am
by GeoTrail
Hi Fred.
Do you have any set date for the release?
Posted: Wed Oct 20, 2004 10:49 pm
by freak
Fangbeast:
I have added that feature to the DateGadget(). It will be available in the
3.92 final.
Timo
Woohoo!!!
Posted: Wed Oct 20, 2004 11:11 pm
by Fangbeast
freak wrote:Fangbeast:
I have added that feature to the DateGadget(). It will be available in the
3.92 final.
Timo
You absolute flaming legend!! You have no idea how useful that is. Thank you!