User forums > Nightly builds

The 16 august 2006 build is out.

(1/9) > >>

killerbot:
Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml

A link to the unicode windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z

For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://prdownload.berlios.de/codeblocks/mingwm10.7z

For support of ansi builds, a link to the ansi windows wxWidget dll for Code::Blocks : http://prdownload.berlios.de/codeblocks/wxmsw26_gcc_cb_wx2.6.3p2.7z

The 16 August 2006 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20060816_rev2863_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20060816_rev2863_Ubuntu6.06.deb
         http://prdownload.berlios.de/codeblocks/CB_20060816_rev2863_fc4+5.rpm (not yet)


Resolved Fixed:


* codesnippets : autobuild tools and post build step to unix cbp
* * Greatly improved/enhanced code-completion:
  C/C++ parser is much more accurate now.
  Code-completion proposals are much more correct, based on context.
  Functions implementation file and line are now correctly identified.
  Function arguments tooltips (a.k.a. calltips) are now updated dynamically, while typing, reducing the possible matches based on the number of already typed function arguments.
  Calltips highlight the current argument (only if one matching function signature because of a scintilla limitation).
  Improved "Go to declaration/implementation" functionality when right-clicking on a token in the editor.
* Removed old (custom) code-completion control.
* Fixed the #includes order in a couple of files. PCH must be the very first #included file...
* fixed some pch/include conflicts
* TODO plug-in : replaced combobox controls by choice controls
* CB_Koders plugin: enable search for selection / word under cursor in editor (on right-click in active editor)
* Correctly update class-browser when closing a project
* Added support for virtual build targets. These are user-defined aliases that group together real build targets. For example, a well-known virtual target is "All". Configuration can be accessed from project properties, "Targets" page, "Virtual targets..." button.
- SDK version changed to 1.9.0.
- API change for cbProject::[Get|Set]ActiveBuildTarget().
- API rename for cbProject::[Get|Set]DefaultExecuteTargetIndex (int) to cbProject::[Get|Set]DefaultExecuteTarget (wxString)
Regressions/Confirmed/Annoying/Common bugs:


* toolbar-images-not-changing-state (is a wx problem/Win XP problem)
* there are several issues with Code Completion (is being redesigned : work in progress)
* menu items with icon not correctly aligned (since wx263)

sethjackson:
Windows ANSI build is here.

cstudent:
What should be the correct member name?

compilergcc.cpp: In member function 'void CompilerGCC::OnSelectTarget(wxCommandE vent&)':
compilergcc.cpp:2754: error: 'class wxComboBox' has no member named 'GetCurrentSelection'



thanks,
cstudent

killerbot:

--- Quote from: cstudent on August 16, 2006, 09:36:12 pm ---What should be the correct member name?

compilergcc.cpp: In member function 'void CompilerGCC::OnSelectTarget(wxCommandE vent&)':
compilergcc.cpp:2754: error: 'class wxComboBox' has no member named 'GetCurrentSelection'



thanks,
cstudent

--- End quote ---

probably GetSelection will be sufficient, since we need it as index, not as string

EDIT : platform independent my ... , on windows this builds, thanks wx

EDIT2 : in case of a choice it would have been ok (wxChoice::GetCurrentSelection)

EDIT 3 : on windows : wxComboBox derives from wxChoice (dunno for linux and others, should boot in linux for that) and on windows wxChoice has :
#if wxABI_VERSION >= 20602
    virtual int GetCurrentSelection() const;
#endif

EDIT 4 : on wxgtk (linux) : wx Choice also has :
#if wxABI_VERSION >= 20602
    virtual int GetCurrentSelection() const;
#endif

BUT wxComboBox is not derived from wxCoice BUT THEN AGAIN : wxComboBox has :
#if wxABI_VERSION >= 20602
    int GetCurrentSelection() const;
#endif

So I would say your are not wxABI_VERSION >= 20602 ...

Last-Attacker:
Hey guys!
Excellent work on the code completion!
It works like... better than a dream! REALLY!

I mean, it actually determines the correct structural datatype and shows the list of its members and methods, and its complete list with inherited members and methods! In like a split second! BRILLIANT!
I also like the CallTip now. This app is starting to become more and more like VC++ but better IMHO!

Again! Very well done!

I honestly can't wait for RC3!

God Bless!

Navigation

[0] Message Index

[#] Next page

Go to full version