Droopy's Lib 1.32 x86/x64!

Developed or developing a new product in PureBasic? Tell the world about it.
SFSxOI
Addict
Addict
Posts: 2970
Joined: Sat Dec 31, 2005 5:24 pm
Location: Where ya would never look.....

Re: Droopy's Lib 1.32 x86/x64!

Post by SFSxOI »

Thank you very much :)
The advantage of a 64 bit operating system over a 32 bit operating system comes down to only being twice the headache.
User avatar
DoubleDutch
Addict
Addict
Posts: 3220
Joined: Thu Aug 07, 2003 7:01 pm
Location: United Kingdom
Contact:

Re: Droopy's Lib 1.32 x86/x64!

Post by DoubleDutch »

Any chance of a version for V4.5? :)
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Re: Droopy's Lib 1.32 x86/x64!

Post by lexvictory »

I'll start looking into it after next tuesday, I have exam study up until then
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
User avatar
DoubleDutch
Addict
Addict
Posts: 3220
Joined: Thu Aug 07, 2003 7:01 pm
Location: United Kingdom
Contact:

Re: Droopy's Lib 1.32 x86/x64!

Post by DoubleDutch »

np, thanks. :)
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
KIKI
Enthusiast
Enthusiast
Posts: 145
Joined: Thu Dec 28, 2006 11:49 am
Location: FRANCE

Re: Droopy's Lib 1.32 x86/x64!

Post by KIKI »

This version doesn't work with PB 4.50. is it plan an new version ? Thanks
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Re: Droopy's Lib 1.32 x86/x64!

Post by lexvictory »

See my previous post.

I have not yet had time to try yet.

Try tailbiting it yourself if you have it (or feel like installing it) - if TB doesn't work with 4.50 i'll have to update/fix TB first.
If it works, I can probably squeeze Droopy's Lib in sooner, as i won't have to test so much first.
There shouldn't be any code changes needed

I will endeavour to start tomorrow (GMT+8), though no guarantees.
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
User avatar
DoubleDutch
Addict
Addict
Posts: 3220
Joined: Thu Aug 07, 2003 7:01 pm
Location: United Kingdom
Contact:

Re: Droopy's Lib 1.32 x86/x64!

Post by DoubleDutch »

No rush for me, it's both Fathers Day AND my birthday tomorrow - so I think I'll have my feet up with a nice cup of tea! ;)
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
lexvictory
Addict
Addict
Posts: 1027
Joined: Sun May 15, 2005 5:15 am
Location: Australia
Contact:

Re: Droopy's Lib 1.32 x86/x64!

Post by lexvictory »

Sorry for the long delay, time kept getting away from me - I was on uni break after all!

Compiled a version for 4.50
It SEEMS to work with 4.51rc1 (haven't tested much of it), but you need to copy version.lib from \PureLibraries\Windows\Libraries\ from a previous version at the moment, as 4.51rc1 does not seem to have this lib file
Demonio Ardente

Currently managing Linux & OS X Tailbite
OS X TailBite now up to date with Windows!
User avatar
electrochrisso
Addict
Addict
Posts: 989
Joined: Mon May 14, 2007 2:13 am
Location: Darling River

Re: Droopy's Lib 1.32 x86/x64!

Post by electrochrisso »

Hi Lexvictory, I have found a little memory error bug in bargraph.

Source Code Line 4693
StartDrawing(ImageOutput(BargraphLList()))
Should be
StartDrawing(ImageOutput(BargraphLList()\Image))

Great lib, keep up the good work.
PureBasic! Purely the best 8)
User avatar
oakvalley
User
User
Posts: 77
Joined: Sun Aug 08, 2004 6:34 pm
Location: Norway
Contact:

Re: Droopy's Lib 1.32 x86/x64!

Post by oakvalley »

I really love this library, thanks droopy!

I do have a small suggestion for the GetDirectoryEntrySize()
-----------------------------------------------------------

It feeds back size in KB. Should really been just bytes. Let people decide afterwards if they want to / 1024.

So:
Size+( lpFindFileData\nFileSizeLow / 1024) ; Add Low DWord

Should be:
Size+( lpFindFileData\nFileSizeLow) ; Add Low DWord

Gives back size as bytes.

No problem, as one can just copy the code out of droopy.pb and modify ourselves, but just a thought :-)
Regards Stone Oakvalley
Currently @ PB 5.70
Post Reply