Page 13 of 40

Posted: Fri Nov 05, 2004 1:59 am
by El_Choni
Fixed (update to TailBite 1.2 Beta 1.8)

Posted: Thu Dec 30, 2004 10:10 pm
by Polo
Hi
i don't remember where i posted my message so i repost it there :)
I've got troubles with optional parameters in functions, especially with :

Procedure function()
endprocedure
Procedure function2(arg)
endprocedure

Posted: Thu Dec 30, 2004 10:14 pm
by Polo
And, i found another bug : enven with selecting "keep source" in the tb manager, the source are not kept :(
Hope you'll get time to fix that ;)

Posted: Thu Dec 30, 2004 10:36 pm
by NoahPhense
Polo wrote:And, i found another bug : enven with selecting "keep source" in the tb manager, the source are not kept :(
Hope you'll get time to fix that ;)
Post some code.. we can't read minds.. ;)

- np

Version: 1.2 Beta 1.11 Date: January 14th 2005

Posted: Sat Jan 15, 2005 9:59 am
by gnozal
I think there is a new version at http://perso.wanadoo.es/tailbite/

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. 
Thanks El Choni :D

Re: Version: 1.2 Beta 1.11 Date: January 14th 2005

Posted: Sat Jan 15, 2005 2:49 pm
by NoahPhense
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 ;)

Posted: Sat Jan 15, 2005 2:59 pm
by Polo
I hope he'll fix the keep library source option, it's the only thing i'm missing ;)

Posted: Sat Jan 15, 2005 3:06 pm
by NoahPhense
Polo wrote:I hope he'll fix the keep library source option, it's the only thing i'm missing ;)
I use TailBite from inside the PB GDI. I have never used it as a
stand-alone product. So I don't have that problem.

- np

Posted: Sat Jan 15, 2005 3:28 pm
by Polo
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)

Posted: Sat Jan 15, 2005 3:33 pm
by NoahPhense
Polo 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)
I'm sure that's easy to fix. If he's got an option button for it. He'll bring
it back.

- np

Posted: Sat Jan 15, 2005 3:34 pm
by NoahPhense
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

Posted: Mon Jan 17, 2005 9:00 pm
by El_Choni
Cool, thank you very much ;)

I would need this info to automate the upload process:

* ftp host address
* user
* password
* subdirectory, in case it's needed

And thank you again for your contributions.

Posted: Mon Jan 17, 2005 9:37 pm
by NoahPhense
El_Choni wrote:Cool, thank you very much ;)

I would need this info to automate the upload process:

* ftp host address
* user
* password
* subdirectory, in case it's needed

And thank you again for your contributions.
Tonight when I get home, I'll set you up.

- np

Posted: Mon Jan 17, 2005 9:57 pm
by Polo
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 :

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
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 :
function myfunction(myopt=0)
endfunction
which you can call either myfunction() or myfunction(parameter)
Hope you've understood, my english is not really good tonight :lol: [/code]

Posted: Mon Jan 17, 2005 10:00 pm
by Polo
whoops i've spoke too fast, the library source are kept now :)
thx el c !