News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

The 05 June 2006 build is out.

Started by killerbot, June 05, 2006, 06:10:18 PM

Previous topic - Next topic

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://download.berlios.de/codeblocks/wxmsw26u_gcc_cb.7z
For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://download.berlios.de/codeblocks/mingwm10.7z

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://download.berlios.de/codeblocks/wxmsw26u_gcc_cb.7z
For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://download.berlios.de/codeblocks/mingwm10.7z

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

The 05 June 2006 build is out.
  - Windows : http://download.berlios.de/codeblocks/CB_20060605_rev2535_win32.7z
  - Linux :
         http://download.berlios.de/codeblocks/CB_20060605_rev2535_Ubuntu6.06.deb
         http://download.berlios.de/codeblocks/CB_20060605_rev2535_fc4+5.rpm (not yet)


Resolved Fixed:

  • Modify the checking condition in GetProducingCode in order to be consistent with MyCreatePreview
  • Added the "scripts" folder to autotools installation procedure (patch #7735)
  • Separated HTML lexer from XML (patch #1091)
  • Added "dynamic" adjusting of the line numbers margin width in editor settings (patch #1074)
  • Set FindInFiles log font & size like all other logs (patch #1071)
  • Added dependency for the "zip" package for debian package builds (patch #1076)
  • envvars: apply environment variabes on C::B startup, too
  • SDK (Doxygen) documentation update

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)

[/list]

Trikko

There are some bug that is difficult to explain... if i make a movie could it be useful?

killerbot

Quote from: Trikko on June 05, 2006, 06:13:24 PM
There are some bug that is difficult to explain... if i make a movie could it be useful?
bring it on ;-)

orefa

Menu options have remained stable for a while now. Can we expect unique shortcuts or "underscored letters" to be in place when RC3 is released? The suggested date of this important release is fast approaching and menus look unfinished at the moment. I also wrote a small tool a while back, my meager contribution to try to help out with this part:

http://forums.next.codeblocks.org/index.php?topic=2818

Ocelot

There is weird bug.
If I check on "Open default workspace", projects are loaded but CB shows  "loading workspace.." on Menagement/Project panel, so I can't see projects/files tree.

asdf

I'm sorry, the runtime linenumber generator thing, it is all great and everything, but I am not a linenumber person. I don't like them in my margin, is there an option to remove them completely? If not then why when I check to not show the line numbers, it still generates and shows the line numbers... Very agrivating...

Defender

I will check it now, maybe it is my fault... :o

Defender

No way... for me it works perfectly  :D

killerbot

Quote from: asdf on June 06, 2006, 02:16:04 AM
I'm sorry, the runtime linenumber generator thing, it is all great and everything, but I am not a linenumber person. I don't like them in my margin, is there an option to remove them completely? If not then why when I check to not show the line numbers, it still generates and shows the line numbers... Very agrivating...

you can turn the line numbers of, I have them off all the time, and it works ok.
Settings->Editor : General Settings : Other Options : Show line numebrs

nix_BB

My line numbers were also displayed when I tried last nights build even though the 'Show line numbers' checkbox was uncheked.

Checking 'Show line numbers' on and then off again removed them though. Now the checkbox works as expected again.

nix_BB

 :(

Whoops I spoke too soon, as soon as I try editing my source (inserting or deleting a line) the line numbers display again.

Windows XP Pro with C::B 1.0 revision 2535

kkez

Has anyone experienced a regression in the "Fold all on file open" option with this last nightly build? It does no longer fold, the last revision i have without this bug is the 4 may, revision 2526.

killerbot

#12
Quote from: nix_BB on June 06, 2006, 10:41:43 AM
:(

Whoops I spoke too soon, as soon as I try editing my source (inserting or deleting a line) the line numbers display again.

Windows XP Pro with C::B 1.0 revision 2535

yes you are correct, I can confirm this issue !!!

[EDIT] : the bug is introduced in this nightly build, due to rev 2531 (path 1074)

[EDIT2] :
OK, I have found the problem, will commit within the hour, first need to boot up laptop ;-)


[EDIT 3] :
for those who build cb themself and do not want to wait : cbeditor.cpp
replace the call (SetLineNumberColWidth()) at the end of cbEditor:OnEditorModified() by this :
ConfigManager* mgr = Manager::Get()->GetConfigManager(_T("editor"));
if (mgr->ReadBool(_T("/show_line_numbers"), true))
{
m_pData->SetLineNumberColWidth();
}

Phoenix

Another problem is that when you have open wxSmith designer and you try to close C::B it is crashing for no reason. This was OK before you have moved wxSmith configuration to the main project file.

Defender

It was my fault even so...  :oops:
Thank you, Lieven