Author Topic: The 20 June 2007 build is out.  (Read 9564 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
The 20 June 2007 build is out.
« on: June 20, 2007, 10:23:51 pm »
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/wxmsw28u_gcc_cb_wx284.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

The 20 June 2007 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20070620_rev4124_win32.7z
  - Linux :
   http://prdownload.berlios.de/codeblocks/CB_20070620_rev4124_Ubuntu6.10+7.04_wx2.8.4.deb
   http://prdownload.berlios.de/codeblocks/CB_20070620_rev4124_suse100-102.wx28.i586.rpm (not yet)
   http://prdownload.berlios.de/codeblocks/CB_20070620_rev4124_fc4+5.i586.rpm (not yet)


Resolved Fixed:

  • Scripted wizard pages are now resizable. If you can't see a control, please resize the page
  • wxSmith: Fixed sizing for childless sizers (static box in wxStaticBox sizer did not expand)
  • wxSmith: Small update to editor area (it won't fetch preview when code::blocks is not active)
  • Added new compiler output parsing level: cltInfo (fixes info's treated as warnings)
  • Added new parsing line "In function: " for GNU Compiler
  • Compiler Settings now at version 0.0.2
  • Added: The following SDK functions.
    - ProjectManager::IsLoadingProject()
    - ProjectManager::IsLoadingWorkspace()
    - ProjectManager::IsClosingProject()
    - ProjectManager::IsClosingWorkspace()
  • wxSmith: Fixed build for wx2.6
  • Fixed: [Bug #11205] Code Completion toolbar - not loading functions, Now Code-Completion plugin would not parse editor files during Project Loading/Closing or App closing
  • Fixed: Scripted wizard pages' minimal size is not computed properly (Thanks wxLearner)
  • HUGE Memory leak (hundreds of megabytes) fixed
  • AStyle plugin: Bugfix: Crash when file to be formatted had lines with more than 2047 characters

Regressions/Confirmed/Annoying/Common bugs:

  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)

« Last Edit: June 21, 2007, 07:23:01 am by killerbot »

Offline Z_guy

  • Single posting newcomer
  • *
  • Posts: 7
Re: The 20 June 2007 build is out.
« Reply #1 on: June 21, 2007, 01:37:32 am »
So it's CodeBlocks who've been taking all my memory :P
Thanks for the fix!

Offline Morphius Faydal

  • Multiple posting newcomer
  • *
  • Posts: 75
Re: The 20 June 2007 build is out.
« Reply #2 on: June 21, 2007, 01:47:46 am »
Nice to see we got the "add header files" screen on Linux worked out. That was kinda annoying. :)

Offline cstudent

  • Almost regular
  • **
  • Posts: 159
    • Cstudent's Help Desk
Re: The 20 June 2007 build is out.
« Reply #3 on: June 21, 2007, 04:24:51 am »

Offline madnut.ua

  • Multiple posting newcomer
  • *
  • Posts: 13
  • something mad...
Re: The 20 June 2007 build is out.
« Reply #4 on: June 21, 2007, 11:25:06 am »
Please, also add "note:" parsing line to compiler default settings. Now it's treated as error for gcc 4.x

Code
:: === sqlite3 ===
-----------cut------------
..\src\sqlite3\sqlite3.c:: In function 'sqlite3WinOpenReadOnly':
..\src\sqlite3\sqlite3.c:17501: warning: 'f.sharedLockByte' is used uninitialized in this function
..\src\sqlite3\sqlite3.c:16836: note: 'f.sharedLockByte' was declared here
..\src\sqlite3\sqlite3.c:17501: warning: 'f.locktype' is used uninitialized in this function
..\src\sqlite3\sqlite3.c:16836: note: 'f.locktype' was declared here
..\src\sqlite3\sqlite3.c:17501: warning: 'f.pMethod' is used uninitialized in this function
..\src\sqlite3\sqlite3.c:16836: note: 'f.pMethod' was declared here
..\src\sqlite3\sqlite3.c:: In function 'sqlite3WinOpenExclusive':
..\src\sqlite3\sqlite3.c:17501: warning: 'f.sharedLockByte' is used uninitialized in this function
..\src\sqlite3\sqlite3.c:16769: note: 'f.sharedLockByte' was declared here
..\src\sqlite3\sqlite3.c:17501: warning: 'f.locktype' is used uninitialized in this function
..\src\sqlite3\sqlite3.c:16769: note: 'f.locktype' was declared here
..\src\sqlite3\sqlite3.c:17501: warning: 'f.pMethod' is used uninitialized in this function
..\src\sqlite3\sqlite3.c:16769: note: 'f.pMethod' was declared here
---------------cut------------------
:: === Build finished: 9 errors, 45 warnings ===
« Last Edit: June 21, 2007, 11:30:51 am by madnut.ua »

basurapr

  • Guest
Re: The 20 June 2007 build is out.
« Reply #5 on: June 21, 2007, 03:04:33 pm »
Nice to see that the web page is been updated to better point to the nightly. This project really demonstrate the power of team work, not like me, working like a lonely wolf... I'm the only programmer at my work  :(

This is the best C/C++ IDE in the world, and if not, is becoming the best one.

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7589
    • My Best Post
Re: The 20 June 2007 build is out.
« Reply #6 on: June 21, 2007, 08:46:06 pm »
Patch needed for non-precompiled headers under windows XP on SVN 4145

Tim S

Code
Index: src/plugins/todo/todolist.cpp
===================================================================
--- src/plugins/todo/todolist.cpp (revision 4145)
+++ src/plugins/todo/todolist.cpp (working copy)
@@ -18,6 +18,7 @@
 #include <wx/xrc/xmlres.h>
 #include "cbeditor.h"
 #include "configmanager.h"
+#include "projectmanager.h"
 #include "editormanager.h"
 #include "manager.h"
 //#include "messagemanager.h"
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 20 June 2007 build is out.
« Reply #7 on: June 21, 2007, 08:55:42 pm »
done, thanks Tim