Author Topic: The 04 january 2007 build is out.  (Read 19592 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
The 04 january 2007 build is out.
« on: January 05, 2007, 12:33:20 am »
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

To fix the menu alignment bug introduced in wx 2.6.3 [windows only bug] we have patched wx ourselves, and that results in the following alternative dll : http://prdownload.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2AndCbPatch.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 04 January 2007 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20070104_rev3459_win32.7z
  - Linux :
         http://prdownload.berlios.de/codeblocks/CB_20070104_rev3459_Ubuntu6.06.deb
         http://prdownload.berlios.de/codeblocks/CB_20070104_rev3459_suse100+101.i586.rpm (not yet)
         http://prdownload.berlios.de/codeblocks/CB_20070104_rev3459_fc4+5.i586.rpm (not yet)


Resolved Fixed:

  • Code snippets 0.3.2:
    - Keep all whitespace in snippets
    - Respect GNOME HIG in Edit snippet dialog (wxGTK)
    - To prevent data loss if the codesnippets.xml is not valid XML, the file is now backupped if loading it failed
  • Code-completion:
      - bug-fix for duplicate C/C++ parser dirs per-project.
      - improve code-completion wrt namespace members
  • Added per-project notes (accessible through project properties or menu "Project->Notes"). There is also the option to display the project's notes on-load (useful if you want to share your project with others and want to embed some usage/setup instructions, for example)
  • New project option for generating object filenames. Currently C::B generates a file's filename by replacing its extension with the object extension (e.g. foo.cpp ->foo.o). This option allows you instead to append the object extension (e.g. foo.cpp -> foo.cpp.o). Useful for projects with compileable files having the same name (and in the same directory) but different extensions
  • Added new generic dialog containing a multiline text box (read-only or editable; controlled by the constructor). Used for project notes currently
  • Project file version upgraded to 1.6. Differences from 1.5 include changes to accommodate the above new features plus that now only values that differ from the defaults are saved (so project files are smaller now)
  • SDK version pumped to 1.11.6

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) (is fixed with our special wx263/wx28 dll)

« Last Edit: January 05, 2007, 03:27:03 pm by killerbot »

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
Re: The 04 january 2007 build is out.
« Reply #1 on: January 05, 2007, 12:39:03 am »
The 04 January 2007 build is out.
  - Windows : http://prdownload.berlios.de/codeblocks/CB_20070104_rev3459_win32.7z

Does this link work? I am on dialup, so that might be the cause, but it does NOT work for me.
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

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 04 january 2007 build is out.
« Reply #2 on: January 05, 2007, 12:41:39 am »
and I was uploading ;-)

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
Re: The 04 january 2007 build is out.
« Reply #3 on: January 05, 2007, 01:06:41 am »
The link is working now. 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

Offline orefa

  • Multiple posting newcomer
  • *
  • Posts: 102
Re: The 04 january 2007 build is out.
« Reply #4 on: January 05, 2007, 01:16:30 am »
Quote
the file is now backupped if loading it failed

backupped?  :shock:

Alright, natural languages are dynamic, let's all agree that "backup" is also a verb. ...although the past tense takes only one 'p' according to the well-known scientific method of Googling (also a verb) for "backupped" (15 thousand entries) and "backuped" (261 thousand). Usage makes law. Back to your regular programming.  :wink:

(end rambling)


btriffles

  • Guest
Re: The 04 january 2007 build is out.
« Reply #5 on: January 05, 2007, 03:39:48 am »
  • Project file version upgraded to 1.6. Differences from 1.5 include changes to accommodate the above new features plus that now only values that differ from the defaults are saved (so project files are smaller now)
Just a thought:
Do you think it is wise to only store settings that differ from the defaults?  Yes, you will save a few bytes of disk space (IMHO not important), but there could be some disadvantages:
  • If the developers ever want to change the default value of a setting, it may require extra work to make sure projects that expect the previous defaults don't break
  • It will be harder to manually edit the project file to change things from default settings

Offline RJP Computing

  • Almost regular
  • **
  • Posts: 135
    • RJP Computing
Re: The 04 january 2007 build is out.
« Reply #6 on: January 05, 2007, 04:40:18 am »
  • Project file version upgraded to 1.6. Differences from 1.5 include changes to accommodate the above new features plus that now only values that differ from the defaults are saved (so project files are smaller now)
Just a thought:
Do you think it is wise to only store settings that differ from the defaults?  Yes, you will save a few bytes of disk space (IMHO not important), but there could be some disadvantages:
  • If the developers ever want to change the default value of a setting, it may require extra work to make sure projects that expect the previous defaults don't break
  • It will be harder to manually edit the project file to change things from default settings
Oh those are some good points. It might be worth thinking about.
- Ryan

Ubuntu/WinXP, AMD Athlon 64 3000+, 1000MB RAM, AC 97 Audio, ATI Radeon 9600XT 256MB

NuklearZelph

  • Guest
Re: The 04 january 2007 build is out.
« Reply #7 on: January 05, 2007, 05:23:09 am »
I don't look at the Nightlies very often, so i am not sure what i need to do, but i need to know what a good stable version is that i can burn to a cd with some other programs. i won't have constant internet soon or i'd not worry about it. is the current good, i remember some times seeing a big problem show up. (by memory at least)

i'd also like the source for that version so i could build it in linux. if i can get it somehow. i have 3455 right now just so i have something. does anyone have any advice?

Nuklear

wbest116

  • Guest
Re: The 04 january 2007 build is out.
« Reply #8 on: January 05, 2007, 06:16:47 am »
How do I get SDK version 1.11.6?

A month ago, I tried to develop the plugin with SDK (version is ... in CB download page). But CB notified that SDK version is old. Should I need SDK version 1.11.6, if I intend to develop a plugin based on this nightly build?

Offline clyfish

  • Multiple posting newcomer
  • *
  • Posts: 26
Re: The 04 january 2007 build is out.
« Reply #9 on: January 05, 2007, 07:21:44 am »
http://developer.berlios.de/project/showfiles.php?group_id=5358
This Project Filelist link doesn't work.
What's the matter?

Gone
The requested resource
/project/showfiles.php
is no longer available on this server and there is no forwarding address. Please remove all references to this resource.
Apache/1.3.34 Server at developer.berlios.de Port 80

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 04 january 2007 build is out.
« Reply #10 on: January 05, 2007, 07:54:02 am »
link works for me

Offline joubertdj

  • Multiple posting newcomer
  • *
  • Posts: 120
Re: The 04 january 2007 build is out.
« Reply #11 on: January 05, 2007, 08:03:12 am »
Link works for me as well... there is a lot of files there and our repository huge... shouldn't we remove some of those files? Will probably help with BerliOS uptime  :lol:

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 04 january 2007 build is out.
« Reply #12 on: January 05, 2007, 08:50:00 am »
every month stuff gets cleaned, January clean is coming up ;-)

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2750
Re: The 04 january 2007 build is out.
« Reply #13 on: January 05, 2007, 03:01:42 pm »
How do I get SDK version 1.11.6?

A month ago, I tried to develop the plugin with SDK (version is ... in CB download page). But CB notified that SDK version is old. Should I need SDK version 1.11.6, if I intend to develop a plugin based on this nightly build?

To get the SDK, you will have to download the source via SVN.
Search for "building" in the wiki.

   //-- Wiki Index
       CodeBlocks Wiki Index
   //-- Wiki Main Page
    CodeBlocks Wiki Main Page

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2750
Re: The 04 january 2007 build is out.
« Reply #14 on: January 05, 2007, 03:03:08 pm »

i'd also like the source for that version so i could build it in linux. if i can get it somehow. i have 3455 right now just so i have something. does anyone have any advice?

Nuklear

Search for "building" in the wiki index.

   //-- Wiki Index
       CodeBlocks Wiki Index
   //-- Wiki Main Page
    CodeBlocks Wiki Main Page