Page 3 of 5

Posted: Fri Aug 14, 2009 11:25 am
by JCV
:o
Nice added features!

Thanks PB Team!

Posted: Fri Aug 14, 2009 11:34 am
by flaith
:D sooooo happy with those new features, thanks a lot

Posted: Fri Aug 14, 2009 11:36 am
by Marco2007
Wow! Thanks!

btw..I was right:
Marco wrote:I´ll bet: 4.40 beta 1 will be released Friday...
8)

Posted: Fri Aug 14, 2009 11:41 am
by Fluid Byte
I came!

Posted: Fri Aug 14, 2009 11:42 am
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.

Posted: Fri Aug 14, 2009 12:20 pm
by THCM
Great work and thanks for the unsigned variables ;)

Posted: Fri Aug 14, 2009 12:39 pm
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.

Re: PureBasic 4.40 Beta1 released!

Posted: Fri Aug 14, 2009 12:47 pm
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

Posted: Fri Aug 14, 2009 12:55 pm
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:

Posted: Fri Aug 14, 2009 1:58 pm
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

Posted: Fri Aug 14, 2009 2:10 pm
by GeoTrail
KEWL :!:

Posted: Fri Aug 14, 2009 2:12 pm
by mrjiles
Auto complete works great! I love the customization of it :D

Posted: Fri Aug 14, 2009 2:40 pm
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 :-)

Posted: Fri Aug 14, 2009 3:42 pm
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.

Posted: Fri Aug 14, 2009 3:47 pm
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