Update

Previous topic - Next topic

Minion

Gernot, some code for ya.

Any screen sizes below that of the CREATESCREEN size screws up (either X or Y)
Anything equal or above is fine.

Code (glbasic) Select


SETSCREEN 640,480,0
//SETSCREEN 800,600,0
//SETSCREEN 1280,1024,0
//SETSCREEN 850,850,0
//SETSCREEN 800,300,0
//SETSCREEN 600,600,0


LOCAL sx,sy
GETSCREENSIZE sx,sy

CREATESCREEN 0,0,800,600
USESCREEN 0

FOR m=0 TO 800 STEP 10
DRAWLINE m,0,0,600,RGB(255,255,255)
DRAWLINE 800-m,600,800,0,RGB(255,255,255)
NEXT

REPEAT

USESCREEN -1
STARTPOLY 0
POLYVECTOR 0,0,0,0
POLYVECTOR sx,0,800,0
POLYVECTOR sx,sy,800,600
POLYVECTOR 0,sy,0,600
ENDPOLY
SHOWSCREEN
USESCREEN 0

UNTIL 0

ampos

I have had to go back, as new editor mess my SUBs list on the right window. Will do a screenshoot later.
check my web and/or my blog :D
http://diniplay.blogspot.com (devblog)
http://www.ampostata.org
http://ampostata.blogspot.com
I own PC-Win, MacBook 13", iPhone 3G/3GS/4G and iPAC-WinCE

Minion

There appears to be a new update (8.12500), have these issues been addresses or is this for other problems ?

Minion

Eeeep ! Another problem ! Just trird to update my version of GLB on my lappy b4 I go on hols (Im taking lappy with me). The Update states that there is a new update .... Vers 8.00000 and my old version is ver 7.34100. When I try to update this the updater crashes ;(  Any reason why ? Is there a way to get the update manually ?

matchy

SAVESPRITE works fine with the update!  =D

Ian Price

QuoteEeeep ! Another problem ! Just trird to update my version of GLB on my lappy b4 I go on hols (Im taking lappy with me). The Update states that there is a new update .... Vers 8.00000 and my old version is ver 7.34100. When I try to update this the updater crashes ;(  Any reason why ? Is there a way to get the update manually ?

You can't update from V7.XX to V8.XX you have to install the new version 8, then update - download HERE approx. 130Mb
I came. I saw. I played.

Kuron

Quote from: Minion on 2010-Oct-09
Eeeep ! Another problem ! Just trird to update my version of GLB on my lappy b4 I go on hols (Im taking lappy with me). The Update states that there is a new update .... Vers 8.00000 and my old version is ver 7.34100. When I try to update this the updater crashes ;(  Any reason why ? Is there a way to get the update manually ?
Expanding on what Ian said, the updater is only for updates.  You can't use it to do upgrades.

matchy

First time I noticed; this messes up the jump list when all on one line (have changed all my TYPES to separate lines  :puke:):
Code (glbasic) Select
TYPE objAmmo; x; y; ENDTYPE

[attachment deleted by admin]

ampos

Quote from: matchy on 2010-Oct-10
First time I noticed; this messes up the jump list when all on one line (have changed all my TYPES to separate lines  :puke:):
Code (glbasic) Select
TYPE objAmmo; x; y; ENDTYPE

Just separate the last type def. It worked for me.
check my web and/or my blog :D
http://diniplay.blogspot.com (devblog)
http://www.ampostata.org
http://ampostata.blogspot.com
I own PC-Win, MacBook 13", iPhone 3G/3GS/4G and iPAC-WinCE

Kitty Hello

OK, the big update is live now.
I hope it's not a halloween gift :S

It seems pretty stable. I've been working with it for a few weeks now.

ampos

I am in holidays (no computer!!!!). Can someone enumerate the new things?
check my web and/or my blog :D
http://diniplay.blogspot.com (devblog)
http://www.ampostata.org
http://ampostata.blogspot.com
I own PC-Win, MacBook 13", iPhone 3G/3GS/4G and iPAC-WinCE

MrTAToad

#26
The weekend is here, so can give it a good thrashing  :whistle:

What new is :

// 8.148
   // Compiler:
   //    Later declared TYPEs cause no more warning.
   //    Member functions returning a type work now.
   //    LOCAL a[] AS double // works now -> the array was dropped before.
   //    BREAK/CONTINUE work inside REPEAT...UNTIL.
   //
   // Core:
   //    Better error messages with GETLASTERROR$ in:
   //       LOAD... and OPENFILE
   //
   //    CLEARSCREEN -1 -> does not clear the backbuffer
   //    on SHOWSCREEN. (Faster if you take care of that).
   //
   //    SHOWSCREEN: Z-Buffer only gets cleared if X_MAKED was used.
   //
   // iPhone:
   //    using GL_EXT_BGRA on iOS 3.x and higher -> slightly faster
   //    LOADSPRITE, SAVESPRITE, GRABSPPRITE and USEASBMP.
   //
   // Pandora:
   //    using OpenGL|ES now. Run! Run!
   //
   // Commands:
   //    PRINT supports font kerning with an additional parameter.
   //    SPLITSTR can keep empty tokens now.
   //
   // Editor:
   //    Functions within types are coloured keywords now.
   //    Replace in selection yields some feedback what it did.
   //
   //    iPhone XCode directory will no longer overwrite project
   //    and plist files.

ampos

Can you write it without quotes ?  iPhone don't show a scroll bar in quotes/codes :(
check my web and/or my blog :D
http://diniplay.blogspot.com (devblog)
http://www.ampostata.org
http://ampostata.blogspot.com
I own PC-Win, MacBook 13", iPhone 3G/3GS/4G and iPAC-WinCE

Leginus

use two fingered multi touch to scroll down in the quotes

MrTAToad

I think spaces take up a bit too much, well, space...

Works well though

[attachment deleted by admin]