Posted: Sun May 14, 2006 3:17 pm
I think I'll release it today with strings fixed (other bugs are on the list yet). Sorry about that loss, how could that happen? 

http://www.purebasic.com
https://www.purebasic.fr/english/
Thanks, and don't forget to enable OnError supportEl_Choni wrote:I think I'll release it today with strings fixed (other bugs are on the list yet).
I updated my coLinux(The knoppix images are still there), but now it shows a grey or black screen and nothing appears, so I have to reboot(alt+tab doesn't work, windows key doesn't work, ...).El_Choni wrote:Sorry about that loss, how could that happen?
Sure, I can't open the hd-images, I don't know how to read files out of them.El_Choni wrote:Oh, but you didn't lose the sources, did you?
Or reinstalling coLinux(old).Nik wrote:You could launch the knoppix image with vmware or vmwareplayer or if it's a plain .img with QEMU
That's VERY good news !!!El_Choni wrote:I think I'll release it today with strings fixed (other bugs are on the list yet).
Version: 1.3 PR 0.3 Date: May 15th 2006Polo wrote:Can't wait to make libs again !
Some errors if found (Version: 1.3 PR 0.3 Date: May 15th 2006) :El_Choni wrote:There are still some bugs and PB4 features missing, but i'd like to hear about new bugs, etc., before adding features like default values for arguments, etc.
Code: Select all
Import "C:\Purebasic400\Program\PureZIP_O.lib"
ZLIBCompress(*DestBuffer, *DestBufferLen, *SourceBuffer, SourceBufferLen.l) As "_compress@16"
etc...
EndImport
Code: Select all
; ACTIVER l'ASSEMBLEUR EN LIGNE !
; Conversion AsciiDosLatinUS vers AsciiWinLatin1 (caractères accentués)
; par Denis (Forum Français)
ProcedureDLL PureZIP_AsciiDosLatinUS_To_AsciiWinLatin1(StringPointer.l) ; Transforms a string from ASCII DOS Latin US to ASCII WIN Latin 1
; la chaîne est transformée directement en mémoire
; Chaine.l est l'adresse de la chaîne donc passer la chaîne avec @
; Ex: AsciiDosLatinUS_To_AsciiWinLatin1(@MaChaine.s)
;
! LEA Ebx, [TableConversion]
MOV Ecx, StringPointer
! Boucle :
! MOV al, byte [Ecx]
! TEST al, al
! JZ FinChaine
! CMP al, $80
! JNA CarSuivant
! ADD al, -$80
! XLATB
! MOV byte[Ecx], al
! CarSuivant:
! INC Ecx
! JMP Boucle
;
; table des 128 caractères de remplacement
;
! TableConversion:
! DB $C7, $FC, $E9, $E2, $E4, $E0, $E5, $E7, $EA, $EB, $E8, $EF, $EE, $EC, $C4, $C5
etc...
! FinChaine:
EndProcedure
Code: Select all
; SORT - To much, I can mail it to you if you want
Code: Select all
; SMTP - To much, I can mail it to you if you want
Files sent to your 'inicia.es' account.El_Choni wrote:Thank you very much, gnozal. I'll have a look at those; could you e--mail me 3 and 4? TIA