Author Topic: The 17 october 2006 build is out.  (Read 25839 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
The 17 october 2006 build is out.
« on: October 17, 2006, 08:08:01 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/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 17 October 2006 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20061017_rev3099_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20061017_rev3099_Ubuntu6.06.deb
         http://prdownload.berlios.de/codeblocks/CB_20061017_rev3099_suse100+101.rpm (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20061017_rev3099_fc4+5.rpm (not yet)


Resolved Fixed:

  • Fixed broken single-file compilation (without project)
  • DragScroll 1.0.30 2006/10/17 : Added focus follow mouse option for MSW (default off)
  • Warning and error log messages are now printed in both the main app log and the debug log (if enabled), using blue and red colour respectively
  • If errors or warnings are logged during startup, an InfoWindow pops up informing the user about the fact

Regressions/Confirmed/Annoying/Common bugs:

  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)
  • menu items with icon not correctly aligned (since wx263)

« Last Edit: October 17, 2006, 09:42:39 pm by killerbot »

sethjackson

  • Guest
Re: The 17 october 2006 build is out.
« Reply #1 on: October 17, 2006, 09:27:14 pm »
Windows ANSI build is here.

Offline SharkCZ

  • Almost regular
  • **
  • Posts: 131
Re: The 17 october 2006 build is out.
« Reply #2 on: October 17, 2006, 10:36:46 pm »
running this build on Fedora required the following patch for the profiler plugin:
Code
--- src/plugins/contrib/profiler/resources/Makefile.am.orig	2006-10-17 21:38:53.000000000 +0200
+++ src/plugins/contrib/profiler/resources/Makefile.am 2006-10-17 21:40:34.000000000 +0200
@@ -1,7 +1,7 @@
 EXTRA_DIST = configuration.xrc main_dialog.xrc manifest.xml
 
-pkgdata_DATA = CBProfiler.zip
+pkgdata_DATA = profiler.zip
 CLEANFILES = $(pkgdata_DATA)
 
-CBProfiler.zip:
- PWD=`pwd` cd $(srcdir) && zip $(PWD)/CBProfiler.zip manifest.xml *.xrc > /dev/null
+profiler.zip:
+ PWD=`pwd` cd $(srcdir) && zip $(PWD)/profiler.zip manifest.xml *.xrc > /dev/null

and the lib_finder plugin requires this to build and install (create and install the manifest and the config files):
Code
--- /tmp/codeblocks/configure.in	2006-10-10 14:13:47.000000000 +0200
+++ configure.in 2006-10-15 14:02:01.000000000 +0200
@@ -195,6 +195,7 @@
  src/plugins/contrib/help_plugin/Makefile
  src/plugins/contrib/keybinder/Makefile
  src/plugins/contrib/lib_finder/Makefile
+ src/plugins/contrib/lib_finder/lib_finder/Makefile
  src/plugins/contrib/profiler/Makefile
  src/plugins/contrib/profiler/resources/Makefile
  src/plugins/contrib/source_exporter/Makefile
--- /tmp/codeblocks/src/plugins/contrib/lib_finder/lib_finder/Makefile.am 1970-01-01 01:00:00.000000000 +0100
+++ src/plugins/contrib/lib_finder/lib_finder/Makefile.am 2006-10-15 13:59:28.000000000 +0200
@@ -0,0 +1,3 @@
+pkgdatadir = $(datadir)/@PACKAGE@/lib_finder
+
+dist_pkgdata_DATA = $(srcdir)/*.xml
--- /tmp/codeblocks/src/plugins/contrib/lib_finder/Makefile.am 2006-10-07 17:39:42.000000000 +0200
+++ src/plugins/contrib/lib_finder/Makefile.am 2006-10-15 14:33:41.000000000 +0200
@@ -1,3 +1,5 @@
+SUBDIRS = lib_finder
+
 if PRECOMPILE_HEADERS
 BUILT_SOURCES = $(srcdir)/pch.h.gch
 else
@@ -38,8 +40,11 @@
  license.txt \
  manifest.xml
 
+pkgdata_DATA = lib_finder.zip
+CLEANFILES = $(pkgdata_DATA)
+
 lib_finder.zip:
- PWD=`pwd` cd $(srcdir) && zip $(PWD)/lib_finder.zip manifest.xml *.xrc > /dev/null
+ PWD=`pwd` cd $(srcdir) && zip $(PWD)/lib_finder.zip manifest.xml > /dev/null
 
 $(srcdir)/pch.h.gch: $(srcdir)/pch.h $(srcdir)/../../../sdk/sdk.h.gch
  -rm -rf $(srcdir)/pch.h.gch
Code::Blocks package maintainer for Fedora and EPEL

Offline cyplo

  • Single posting newcomer
  • *
  • Posts: 7
    • Cyryl Plotnicki-Chudyk
Re: The 17 october 2006 build is out.
« Reply #3 on: October 17, 2006, 11:59:06 pm »
Hi

I am having problems while trying to build this revision on my gentoo linux

revision 3099, i've got it from svn directly

make stops after:

Code
Making all in wxFlatNotebook
make[4]: Entering directory `/root/tmp_compilations/codeblocks/src/sdk/wxFlatNotebook'
make[4]: *** No rule to make target `wxFlatNotebook.cpp', needed by `wxFlatNotebook.lo'.  Stop.

it appears always, also after ./bootstrap => ./configure [with no parameters] => make clean => make

i was having no problems with compiling previous releases;
however i am still affected by 'libcairo on dualcore processor' bug but it got less annoying few revisions ago

ps
thanks for all of the work you've done for us :)
« Last Edit: October 18, 2006, 12:02:17 am by cyplo »
Cyryl Plotnicki-Chudyk

Offline SamT

  • Multiple posting newcomer
  • *
  • Posts: 41
Re: The 17 october 2006 build is out.
« Reply #4 on: October 18, 2006, 01:22:54 am »
    • If errors or warnings are logged during startup, an InfoWindow pops up informing the user about the fact


    I got several error by checking the log during startup.

    [07:17:26.525]: ERROR: Plugin resource not found: compilergcc.zip
    [07:17:26.735]: ERROR: Plugin resource not found: debuggergdb.zip
    [07:17:27.065]: ERROR: Plugin resource not found: pluginwizard.zip

    Could you please tell me where could I get those? Thank you very much!

    Note: I found in my C:\Program Files\CodeBlocks\share\CodeBlocks folder, there are something similar as described above:
    - compiler_gcc.zip
    - debugger_gdb.zip
    - plugin_wizard.zip

    but the all the date are old.
    [/list]
    « Last Edit: October 18, 2006, 01:27:26 am by SamT »

    Offline kidmosey

    • Multiple posting newcomer
    • *
    • Posts: 95
      • MUSITU International
    Re: The 17 october 2006 build is out.
    « Reply #5 on: October 18, 2006, 06:30:29 am »
    I got several error by checking the log during startup.

    [07:17:26.525]: ERROR: Plugin resource not found: compilergcc.zip
    [07:17:26.735]: ERROR: Plugin resource not found: debuggergdb.zip
    [07:17:27.065]: ERROR: Plugin resource not found: pluginwizard.zip

    Could you please tell me where could I get those? Thank you very much!


    I had the same error.  I just deleted C::B and extracted it fresh (don't forget the required wx dll's)
    3 years until google knows more than god.

    Offline mandrav

    • Project Leader
    • Administrator
    • Lives here!
    • *****
    • Posts: 4315
      • Code::Blocks IDE
    Re: The 17 october 2006 build is out.
    « Reply #6 on: October 18, 2006, 08:57:00 am »
    Quote
    I got several error by checking the log during startup.

    [07:17:26.525]: ERROR: Plugin resource not found: compilergcc.zip
    [07:17:26.735]: ERROR: Plugin resource not found: debuggergdb.zip
    [07:17:27.065]: ERROR: Plugin resource not found: pluginwizard.zip

    Could you please tell me where could I get those? Thank you very much!

    Try a fresh nightly install. These are probably left-overs from upgrading nightlies. We have changed some filenames over time and older files are probably left in your directories.
    Be patient!
    This bug will be fixed soon...

    Offline Jan van den Borst

    • Multiple posting newcomer
    • *
    • Posts: 99
    Re: The 17 october 2006 build is out.
    « Reply #7 on: October 18, 2006, 09:41:42 am »
    Hello all
    I noticed some different behaviour when I use my TortoiseSVN plugin. When I lock a file codeblocks does not notice that the readonly flag is removed. I must close the file and reopen it. I believe this was different before as codeblocks detected readonly flag changes automatically.

    I do not know in what build this has changed...
    Jan

    Offline tiwag

    • Developer
    • Lives here!
    • *****
    • Posts: 1196
    • sailing away ...
      • tiwag.cb
    Re: The 17 october 2006 build is out.
    « Reply #8 on: October 18, 2006, 10:23:35 am »
    ... When I lock a file codeblocks does not notice that the readonly flag is removed. I must close the file and reopen it. I believe this was different before as codeblocks detected readonly flag changes automatically...

    btw. please bugfix also the icons displayed in the open-files-list.
    if a file is locked (i.e. marked as read only) the icon should show the lock-symbol.
    (same symbol, as it is used in the project-manager's files tree)

    this would enhance greatly the usability, when one is forced to work with file-locking file-versioning-system ...

    thanks and brgds, tiwag
    « Last Edit: October 18, 2006, 10:25:34 am by tiwag »

    Offline JPlaroche

    • Multiple posting newcomer
    • *
    • Posts: 29
      • OMBREBLEU
    Re: The 17 october 2006 build is out.
    « Reply #9 on: October 18, 2006, 11:14:53 am »
    please

    I very much would like u'il there is the possibility of edit the macro s abbreviation S. V. P.   thank you

    j'aimerais bien u'il y est la possibilité de d'éditer les macro s abréviation  S.V.P.  :P :P :P
    chef de projet MASTER (AS400  RPGILE  C   and SYTEM)

    student c++ and wxwidgets for validation acquis (Jean-Pierre) wxformbuilder

    Offline tiwag

    • Developer
    • Lives here!
    • *****
    • Posts: 1196
    • sailing away ...
      • tiwag.cb
    Re: The 17 october 2006 build is out.
    « Reply #10 on: October 18, 2006, 11:46:22 am »
    I very much would like u'il there is the possibility of edit the macro s abbreviation
    what do you mean ???
    can you give an example of what you want to do ?

    Offline JPlaroche

    • Multiple posting newcomer
    • *
    • Posts: 29
      • OMBREBLEU
    Re: The 17 october 2006 build is out.
    « Reply #11 on: October 18, 2006, 11:51:26 am »
    have on paper the abbreviations it is true I can note them sorry  :oops: :oops:

    avoir sur papier les abréviations c'est vrais je peut les noter sorry  :?
    chef de projet MASTER (AS400  RPGILE  C   and SYTEM)

    student c++ and wxwidgets for validation acquis (Jean-Pierre) wxformbuilder

    nzoltan

    • Guest
    Re: The 17 october 2006 build is out.
    « Reply #12 on: October 18, 2006, 12:01:35 pm »
    Code
    Making all in wxFlatNotebook
    make[4]: Entering directory `/root/tmp_compilations/codeblocks/src/sdk/wxFlatNotebook'
    make[4]: *** No rule to make target `wxFlatNotebook.cpp', needed by `wxFlatNotebook.lo'.  Stop.

    I have same issue on fc4.

    Offline killerbot

    • Administrator
    • Lives here!
    • *****
    • Posts: 5491
    Re: The 17 october 2006 build is out.
    « Reply #13 on: October 18, 2006, 12:12:21 pm »
    try to do a make distclean, and then make ...

    Offline stahta01

    • Lives here!
    • ****
    • Posts: 7591
      • My Best Post
    Re: The 17 october 2006 build is out.
    « Reply #14 on: October 18, 2006, 03:52:24 pm »
    • Warning and error log messages are now printed in both the main app log and the debug log (if enabled), using blue and red colour respectively
    • If errors or warnings are logged during startup, an InfoWindow pops up informing the user about the fact

    I know about codeblocks.rpt which I believe is the debug log since --debug-log is what I think turns it on.
    But, what is the main app log filename? And, where is it?

    I am getting the InfoWindow popup warning and don't know where to look for the cause.
    Windows XP built from SVN 3102

    Thanks

    Tim S
    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