Author Topic: The 05 December 2007 build (4703) is out.  (Read 23276 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
The 05 December 2007 build (4703) is out.
« on: December 05, 2007, 08:55:08 pm »
Get quick announcements through the RSS feed http://www.codeblocks.org/nightly/CodeBlock_RSS.xml

Before you use a nightly make sure you understand how it works.

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

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

The 05 December 2007 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20071205_rev4703_win32.7z
  - Linux :
   none

Resolved Fixed:

  • KeyBinder 1.0.44 2007/12/2
    - add non-pch logmanager headers
    - fix skipping of previously opened editors
  • applied patch of jens to make info panels hide again
  • wxSmith:
    * Added wxFileDialog
    * Added wxDirDialog
    * Some small code reorganizations
  • fix: [Bug #11976 ] Incorrect options for msp430-gcc
  • wxSmith:
    * Added wxMultiChoiceDialog
    * Added wxSingleChoiceDialog
  • Added events for begin/end multiple files addition/removal
  • CodeBlocksLogEvent is now handled by Manager (in other words don't use the obsolete Manager::Get()->GetAppWindow()->ProcessEvent() but use Manager::Get()->ProcessEvent() instead)
  • If a non-logger is added using cbEVT_ADD_LOG_WINDOW, it is NOT deleted with cbEVT_REMOVE_LOG_WINDOW anymore

Regressions/Confirmed/Annoying/Common bugs:

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


Offline reptils

  • Multiple posting newcomer
  • *
  • Posts: 24
    • Winsplit Revolution
Re: The 05 December 2007 build (4703) is out.
« Reply #1 on: December 05, 2007, 09:35:14 pm »
Auto hide message pane seem to be again bugged! :(
WinSplit Revolution http://reptils.free.fr

Offline Rayman

  • Single posting newcomer
  • *
  • Posts: 3
Re: The 05 December 2007 build (4703) is out.
« Reply #2 on: December 05, 2007, 10:21:42 pm »
Auto hide message pane seem to be again bugged! :(

The same here. There is no change with the 'Auto hide message pane' compared to the previous version  :?

Best,
Stefan.

Offline pasgui

  • Almost regular
  • **
  • Posts: 165
    • LGP
Re: The 05 December 2007 build (4703) is out.
« Reply #3 on: December 05, 2007, 10:25:29 pm »
Build for Ubuntu i386/amd64 can be found here

Best regards, pasgui
« Last Edit: December 05, 2007, 10:40:33 pm by pasgui »

Offline Xaviou

  • Regular
  • ***
  • Posts: 402
    • X@v's wxStuff
Re: The 05 December 2007 build (4703) is out.
« Reply #4 on: December 05, 2007, 10:25:51 pm »
Ubuntu 6.10 -> 7.10 Amd64 tar.gz archive (containing '.deb' installers builds with wx2.8.6) can be found here.
The french wxWidgets site : http://www.wxdev.fr
My wxWidgets's stuff : https://wxstuff.xaviou.fr/

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 05 December 2007 build (4703) is out.
« Reply #5 on: December 05, 2007, 11:52:13 pm »
due to some include fixes for linux I broke the windows build. Hope to have it fixed soon (tomorrow).

ipc.h : doesn't know HANDLE.

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
Re: The 05 December 2007 build (4703) is out.
« Reply #6 on: December 06, 2007, 01:18:40 am »
due to some include fixes for linux I broke the windows build. Hope to have it fixed soon (tomorrow).

ipc.h : doesn't know HANDLE.

Quick patch for this, needs testing. And, there may be better patches than this.

Tim S

Code
Index: src/src/ipc.h
===================================================================
--- src/src/ipc.h (revision 4707)
+++ src/src/ipc.h (working copy)
@@ -9,6 +9,8 @@
  #include <sys/ipc.h>
  #include <sys/shm.h>
  #include <fcntl.h>
+#else
+    #include "wx/msw/wrapwin.h"
 #endif
 
 class wxString;
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 orel

  • Multiple posting newcomer
  • *
  • Posts: 96
Re: The 05 December 2007 build (4703) is out.
« Reply #7 on: December 06, 2007, 01:33:10 am »
  • Added events for begin/end multiple files addition/removal

Oh really! very nice !! it will really be easier for me to implement one functionnality in SVNInside plugin :
look here http://forums.codeblocks.org/index.php/topic,7390.0.html

Thank you for that!!

regards,
orl
windows XP SP2
mingw gcc 3.4.5
svn Code::Blocks and M$ Visual Studio 2005 and .NET to eat!! SVNInside plugin :http://forums.codeblocks.org/index.php/topic,7063.0.html

Offline Grom

  • Almost regular
  • **
  • Posts: 206
Re: The 05 December 2007 build (4703) is out.
« Reply #8 on: December 06, 2007, 05:58:20 am »
Mega thanks to Byo for the wxSmith improvements  :mrgreen::!: :!: :!:
gcc+winXP+suse.

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 05 December 2007 build (4703) is out.
« Reply #9 on: December 06, 2007, 08:45:51 am »
due to some include fixes for linux I broke the windows build. Hope to have it fixed soon (tomorrow).

ipc.h : doesn't know HANDLE.

Quick patch for this, needs testing. And, there may be better patches than this.

Tim S

Code
Index: src/src/ipc.h
===================================================================
--- src/src/ipc.h (revision 4707)
+++ src/src/ipc.h (working copy)
@@ -9,6 +9,8 @@
  #include <sys/ipc.h>
  #include <sys/shm.h>
  #include <fcntl.h>
+#else
+    #include "wx/msw/wrapwin.h"
 #endif
 
 class wxString;

thanks !!!

Offline TheTuxKeeper

  • Regular
  • ***
  • Posts: 293
  • daniel2000
Re: The 05 December 2007 build (4703) is out.
« Reply #10 on: December 06, 2007, 10:29:54 am »
Updated packages (rev4707 with killerbots include fixes) for Suse 10.1, 10.2, 10.3 and factory (i586 and x84_64) against wxgtk 2.8 are available:
All other distributions aren't supported atm.

have fun ;)
Nightly builds for openSUSE

Offline lobby

  • Multiple posting newcomer
  • *
  • Posts: 10
Re: The 05 December 2007 build (4703) is out.
« Reply #11 on: December 06, 2007, 03:18:47 pm »
i use codeblocks on windows XP sp2, 1280*1024
i have upgraded to that nightly build, but there is some problems:
-when i doubleclick(or rightclick/open) a file to open with codeblocks, the explorer window doesn't respond, and is blocked until i close codeblocks
older nightly builds didn't get that bug, but i don't know when exactly it has been introduced

-the wxsmith settings options window is too small, it need to be resized to display correctly the bottom options (see attachment below)

the first bug is annoying, maybe someone have the same problem or a solution ?


[attachment deleted by admin]
« Last Edit: December 06, 2007, 03:21:51 pm by lobby »

Offline The-Kenny

  • Multiple posting newcomer
  • *
  • Posts: 10
Re: The 05 December 2007 build (4703) is out.
« Reply #12 on: December 06, 2007, 04:21:29 pm »

the first bug is annoying, maybe someone have the same problem or a solution ?


I don't have a solution, but the same problem.
The only difference is, that the explorer windows only sometimes block when I open a project.

Offline Grom

  • Almost regular
  • **
  • Posts: 206
Re: The 05 December 2007 build (4703) is out.
« Reply #13 on: December 06, 2007, 05:06:46 pm »
i use codeblocks on windows XP sp2, 1280*1024
i have upgraded to that nightly build, but there is some problems:
-when i doubleclick(or rightclick/open) a file to open with codeblocks, the explorer window doesn't respond, and is blocked until i close codeblocks
older nightly builds didn't get that bug, but i don't know when exactly it has been introduced

-the wxsmith settings options window is too small, it need to be resized to display correctly the bottom options (see attachment below)

the first bug is annoying, maybe someone have the same problem or a solution ?


Try to resize Configure editor dialog window.
gcc+winXP+suse.

Offline gd_on

  • Lives here!
  • ****
  • Posts: 796
Re: The 05 December 2007 build (4703) is out.
« Reply #14 on: December 06, 2007, 07:58:14 pm »
@lobby and The-kenny
Look in the http://forums.codeblocks.org/index.php/topic,7286.msg55538.html#msg55538. You'll find acki, denk_mal and gd_on (myself) describing the double click problem and some workaround solutions (while waiting for a better solution).

gd_on
Windows 11 64 bits (23H2), svn C::B (last version or almost!), wxWidgets 3.2.4 (tests with 3.3), Msys2 Compilers 13.2.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).