PureBasic 4.40 Beta1 released!

Developed or developing a new product in PureBasic? Tell the world about it.
JCV
Enthusiast
Enthusiast
Posts: 580
Joined: Fri Jun 30, 2006 4:30 pm
Location: Philippines

Post by JCV »

:o
Nice added features!

Thanks PB Team!

[Registered PB User since 2006]
[PureBasic 6.20][SpiderBasic 2.2]
[RP4 x64][Win 11 x64][Ubuntu x64]
User avatar
flaith
Enthusiast
Enthusiast
Posts: 704
Joined: Mon Apr 25, 2005 9:28 pm
Location: $300:20 58 FC 60 - Rennes
Contact:

Post by flaith »

:D sooooo happy with those new features, thanks a lot
“Fear is a reaction. Courage is a decision.” - WC
Marco2007
Enthusiast
Enthusiast
Posts: 648
Joined: Tue Jun 12, 2007 10:30 am
Location: not there...

Post by Marco2007 »

Wow! Thanks!

btw..I was right:
Marco wrote:I´ll bet: 4.40 beta 1 will be released Friday...
8)
PureBasic for Windows
User avatar
Fluid Byte
Addict
Addict
Posts: 2336
Joined: Fri Jul 21, 2006 4:41 am
Location: Berlin, Germany

Post by Fluid Byte »

I came!
Windows 10 Pro, 64-Bit / Whose Hoff is it anyway?
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Post by Trond »

I'm trying the project feature now.

Feature request: Have the explorer used to select project files (Create new project or Project options dialog) use the same directory as the
normal file open dialogs.

Feature request: Remove the > on filenames that are part of the project. It is a good idea in theory, but in practice it just looks messy.

Feature request: An additional menu item like "Remove from project" that also deletes the file.
THCM
Enthusiast
Enthusiast
Posts: 276
Joined: Fri Apr 25, 2003 5:06 pm
Location: Gummersbach - Germany
Contact:

Post by THCM »

Great work and thanks for the unsigned variables ;)
The Human Code Machine / Masters' Design Group
Fred
Administrator
Administrator
Posts: 18153
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Post by Fred »

Updated the first post to notice the PCRE update to 7.9, RemoveString() definition and the new FillMemory() command. The available type for fillmemory is #PB_Byte, #PB_Word and #PB_Long.
User avatar
luis
Addict
Addict
Posts: 3893
Joined: Wed Aug 31, 2005 11:09 pm
Location: Italy

Re: PureBasic 4.40 Beta1 released!

Post by luis »

freak wrote: - Added: Structure item autocomplete
OMG ! REALLY ?
freak wrote: - Added: Project Management:
OMG !
freak wrote: - Autocomplete for all files within a project (even if not opened)
OMG !
freak wrote: - Multiple compiler settings for different compile targets
OMG !


I could cry but I will download the beta instead.

Thank you :D
maw

Post by maw »

OMG! Now I can die happy!! And believe me, after 2 weeks in bed with the swine flu, I would welcome death. Well, not really, but almost :lol:
Matt
Enthusiast
Enthusiast
Posts: 447
Joined: Sat May 21, 2005 1:08 am
Location: USA

Post by Matt »

Thanks!!! Can't wait till I get home to try this :D :D :D

Sounds like such a great update to the IDE! Projects was much needed :)

Thanks again
User avatar
GeoTrail
Addict
Addict
Posts: 2794
Joined: Fri Feb 13, 2004 12:45 am
Location: Bergen, Norway
Contact:

Post by GeoTrail »

KEWL :!:
I Stepped On A Cornflake!!! Now I'm A Cereal Killer!
mrjiles
Enthusiast
Enthusiast
Posts: 238
Joined: Fri Aug 18, 2006 7:21 pm
Location: IL

Post by mrjiles »

Auto complete works great! I love the customization of it :D
User avatar
blueznl
PureBasic Expert
PureBasic Expert
Posts: 6166
Joined: Sat May 17, 2003 11:31 am
Contact:

Post by blueznl »

Oh, by the way, great list of new features... but mathematic priorities are still somewhat broken, can I report that one still as a bug? Before Fred shoots me down like the rabid dog I am :-)
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
freak
PureBasic Team
PureBasic Team
Posts: 5940
Joined: Fri Apr 25, 2003 5:21 pm
Location: Germany

Post by freak »

There is another command that i forgot in the initial changelog:

Code: Select all

- Added: ShortcutGadget()
Its the thing that the IDE uses to modify the shortcuts now.
quidquid Latine dictum sit altum videtur
User avatar
Progi1984
Addict
Addict
Posts: 806
Joined: Fri Feb 25, 2005 1:01 am
Location: France > Rennes
Contact:

Post by Progi1984 »

freak wrote:There is another command that i forgot in the initial changelog:

Code: Select all

- Added: ShortcutGadget()
Its the thing that the IDE uses to modify the shortcuts now.
Some Shortcuts doesn't run :
Escape
Space
Tab
Suppr

Code: Select all

If OpenWindow(0, 100, 200, 195, 260, "PureBasic Window", #PB_Window_SystemMenu | #PB_Window_MinimizeGadget | #PB_Window_MaximizeGadget)

  ShortcutGadget(1, 5, 5, 50, 20, #PB_Shortcut_A)
  Repeat
    Event = WaitWindowEvent()

    If Event = #PB_Event_CloseWindow
      Quit = 1
    EndIf

  Until Quit = 1
  
EndIf

End
Post Reply