
TailBite 1.0 Preview, soon in PureProject and PureArea
Moderators: gnozal, ABBKlaus, lexvictory
- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Version: 1.2 Beta 1.11 Date: January 14th 2005
I think there is a new version at http://perso.wanadoo.es/tailbite/
Version: 1.2 Beta 1.11 Date: January 14th 2005
Thanks El Choni 
Version: 1.2 Beta 1.11 Date: January 14th 2005
Code: Select all
January 14th 2005: 1.2 Beta 1.11
* Fixed: Resident files would not be created if a previous resident file with a conflicting definition existed.
* You can now use "PB_" to prefix your library name.
January 11th 2005: Version 1.2 Beta 1.10
* Fixed problem when including PureLibraries with "TB_Include*". Should be fixed this time, thanks to freedimension.
January 10th 2005: Version 1.2 Beta 1.9
* Fixed problem when using "_S" as part of a string. Was being treated as a variable name. Thanks to dracflamloc for reporting it.

For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
Re: Version: 1.2 Beta 1.11 Date: January 14th 2005
Thanks El!
...and thanks gnozal for pointing that out!
- np
*edit*
El, you're going backwards with you numbers again...
January 14th 2005: 1.2 Beta 1.11
Fixed: Resident files would not be created if a previous resident file with a conflicting definition existed.
You can now use "PB_" to prefix your library name.
January 11th 2005: Version 1.2 Beta 1.10
Fixed problem when including PureLibraries with "TB_Include*". Should be fixed this time, thanks to freedimension.
January 10th 2005: Version 1.2 Beta 1.9
Fixed problem when using "_S" as part of a string. Was being treated as a variable name. Thanks to dracflamloc for reporting it.
November 4th 2004: 1.2 Beta 1.8
** from 1.9 you should have gone to 2.0..
1.9 is higher than 1.10
...and thanks gnozal for pointing that out!
- np
*edit*
El, you're going backwards with you numbers again...
January 14th 2005: 1.2 Beta 1.11
Fixed: Resident files would not be created if a previous resident file with a conflicting definition existed.
You can now use "PB_" to prefix your library name.
January 11th 2005: Version 1.2 Beta 1.10
Fixed problem when including PureLibraries with "TB_Include*". Should be fixed this time, thanks to freedimension.
January 10th 2005: Version 1.2 Beta 1.9
Fixed problem when using "_S" as part of a string. Was being treated as a variable name. Thanks to dracflamloc for reporting it.
November 4th 2004: 1.2 Beta 1.8
** from 1.9 you should have gone to 2.0..
1.9 is higher than 1.10

- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
Yeah, but try to go to the tailbite manager, click on keep source, and then use the option in the purebasic ide to compile your library ; after that, the sources in asm of your lib should be stored in Library Sources in tailbite's folder, but unfortunately it does not work anymore (it was working in the past)
- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
I'm sure that's easy to fix. If he's got an option button for it. He'll bringPolo wrote:Yeah, but try to go to the tailbite manager, click on keep source, and then use the option in the purebasic ide to compile your library ; after that, the sources in asm of your lib should be stored in Library Sources in tailbite's folder, but unfortunately it does not work anymore (it was working in the past)
it back.
- np
- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
El, I'd like to be a mirror site for you. I'll drop TB on there today.
And post a link here.. I'm a permanent site.
Unless you have any objections.
Here's an idea of where it'll be: liquidbuzz.com
- np
And post a link here.. I'm a permanent site.
Unless you have any objections.
Here's an idea of where it'll be: liquidbuzz.com
- np
- NoahPhense
- Addict
- Posts: 1999
- Joined: Thu Oct 16, 2003 8:30 pm
- Location: North Florida
El chroni, can you fix the stuff with the source files please ?
sorry to hurry you 
btw, i've found something (not a bug) with the procedures with optional parameter :
if you do :
PB will report you an error, of course
But what i mean with this is that putting optionnal parameter in a procedure should be done in another way, because this one is quite limited, if it was possible to do it like with Blitzbasic, it would be amazing !!
if think in blitz you just put :
Hope you've understood, my english is not really good tonight
[/code]


btw, i've found something (not a bug) with the procedures with optional parameter :
if you do :
Code: Select all
proceduredll myfunction()
[...]
endprocedure
proceduredll myfunction2(opt.l)
[...]
endprocedure
;here's a library function using "myfunction"
proceduredll stuff(st.l)
myfunction(st)
endprocedure

if think in blitz you just put :
which you can call either myfunction() or myfunction(parameter)function myfunction(myopt=0)
endfunction
Hope you've understood, my english is not really good tonight
