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

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
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: 7588
    • 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: 5491
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: 7588
    • 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: 5491
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: 5491
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: 2775
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: 2775
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



Offline artoj

  • Almost regular
  • **
  • Posts: 206
  • Location: Supporting my team
    • http://ajonsson.kapsi.fi/
Re: The 04 january 2007 build is out.
« Reply #15 on: January 05, 2007, 03:12:42 pm »
...

It's a well known fact that I learned speaking English by watching American TV shows, so blame them. :mrgreen:

Offline joubertdj

  • Multiple posting newcomer
  • *
  • Posts: 120
Re: The 04 january 2007 build is out.
« Reply #16 on: January 05, 2007, 03:25:12 pm »

Quote
It's a well known fact that I learned speaking English by watching American TV shows, so blame them.

 :lol: Here is a cool British response to a statement like that  :lol:

Quote
To the citizens of the United States of America, In the light of your failure to elect a competent President of the USA and thus to govern yourselves, we hereby give notice of the revocation of your independence, effective today. Her Sovereign Majesty Queen Elizabeth II will resume monarchical duties over all states, commonwealths and other territories. (Except Utah, which she does not fancy.) Your new prime minister (The Right Honourable Tony Blair, MP for the 97.85% of you who have until now been unaware that there is a world outside your borders) will appoint a minister for America without the need for further elections. Congress and the Senate will be disbanded. A questionnaire will be circulated next year to determine whether any of you noticed. To aid in the transition to a British Crown Dependency, the following rules are introduced with immediate effect:

1. You should look up "revocation" in the Oxford English Dictionary. Then look up "aluminium". Check the pronunciation guide. You will be amazed at just how wrongly you have been pronouncing it. The letter 'U' will be reinstated in words such as 'favour' and 'neighbour', skipping the letter 'U' is nothing more than laziness on your part. Likewise, you will learn to spell 'doughnut' without skipping half the letters. You will end your love affair with the letter 'Z' (pronounced 'zed' not 'zee') and the suffix "ize" will be replaced by the suffix "ise". You will learn that the suffix 'burgh is pronounced 'burra' e.g. Edinburgh. You are welcome to respell Pittsburgh as 'Pittsberg' if you can't cope with correct pronunciation. Generally, you should raise your vocabulary to acceptable levels. Look up "vocabulary".

Using the same twenty seven words interspersed with filler noises such as "like" and "you know" is an unacceptable and inefficient form of communication. Look up "interspersed". There will be no more 'bleeps' in the Jerry Springer show. If you're not old enough to cope with bad language then you shouldn't have chat shows. When you learn to develop your vocabulary then you won't have to use bad language as often.

2. There is no such thing as "US English". We will let Microsoft know on your behalf. The Microsoft spell-checker will be adjusted to take account of the reinstated letter 'u' and the elimination of "-ize".

3. You should learn to distinguish the English and Australian accents. It really isn't that hard. English accents are not limited to cockney, upper-class twit or Mancunian (Daphne in Frasier). You will also have to learn how to understand regional accents - Scottish dramas such as "Taggart" will no longer be broadcast with subtitles. While we're talking about regions, you must learn that there is no such place as Devonshire in England. The name of the county is "Devon". If you persist in calling it Devonshire, all American States will become "shires" e.g. Texasshire, Floridashire, Louisianashire.

4. Hollywood will be required occasionally to cast English actors as the good guys. Hollywood will be required to cast English actors to play English characters. British sit-coms such as "Men Behaving Badly" or "Red Dwarf" will not be re-cast and watered down for a wishy-washy American audience who can't cope with the humour of occasional political incorrectness.

5. You should relearn your original national anthem, "God Save The Queen", but only after fully carrying out task 1. We would not want you to get confused and give up half way through.

6. You should stop playing American "football". There is only one kind of football. What you refer to as American "football" is not a very good game. The 2.15% of you who are aware that there is a world outside your borders may have noticed that no one else plays "American" football. You will no longer be allowed to play it, and should instead play proper football. Initially, it would be best if you played with the girls. It is a difficult game. Those of you brave enough will, in time, be allowed to play rugby (which is similar to American "football", but does not involve stopping for a rest every twenty seconds or wearing full kevlar body armour like nancies). We are hoping to get together at least a US Rugby sevens side by 2005. You should stop playing baseball. It is not reasonable to host an event called the 'World Series' for a game which is not played outside of America. Since only 2.15% of you are aware that there is a world beyond your borders, your error is understandable. Instead of baseball, you will be allowed to play a girls' game called "rounders" which is baseball without fancy team strip, oversized gloves, collector cards or hotdogs.

7. You will no longer be allowed to own or carry guns. You will no longer be allowed to own or carry anything more dangerous in public than a vegetable peeler. Because we don't believe you are sensible enough to handle potentially dangerous items, you will require a permit if you wish to carry a vegetable peeler in public.

8. July 4th is no longer a public holiday. November 2nd will be a new national holiday, but only in England. It will be called "Indecisive Day".

9. All American cars are hereby banned. They are crap and it is for your own good. When we show you German cars, you will understand what we mean. All road intersections will be replaced with roundabouts. You will start driving on the left with immediate effect. At the same time, you will go metric with immediate effect and without the benefit of conversion tables. Roundabouts and metrication will help you understand the British sense of humour.

10. You will learn to make real chips. Those things you call French fries are not real chips. Fries aren't even French, they are Belgian though 97.85% of you (including the guy who discovered fries while in Europe) are not aware of a country called Belgium. Those things you insist on calling potato chips are properly called "crisps". Real chips are thick cut and fried in animal fat. The traditional accompaniment to chips is beer which should be served warm and flat. Waitresses will be trained to be more aggressive with customers.

11. As a sign of penance 5 grams of sea salt per cup will be added to all tea made within the Commonwealth of Massachusetts, this quantity to be doubled for tea made within the city of Boston itself.

12. The cold tasteless stuff you insist on calling beer is not actually beer at all, it is lager. From November 1st only proper British Bitter will be referred to as "beer", and European brews of known and accepted provenance will be referred to as "Lager". The substances formerly known as "American Beer" will henceforth be referred to as "Near-Frozen Knat's Urine", with the exception of the product of the American Budweiser company whose product will be referred to as "Weak Near-Frozen Knat's Urine". This will allow true Budweiser (as manufactured for the last 1000 years in Pilsen, Czech Republic) to be sold without risk of confusion.

13. From November 10th the UK will harmonise petrol (or "Gasoline" as you will be permitted to keep calling it until April 1st 2005) prices with the former USA. The UK will harmonise its prices to those of the former USA and the Former USA will, in return, adopt UK petrol prices  (roughly $6/US gallon - get used to it).

14. You will learn to resolve personal issues without using guns, lawyers or therapists. The fact that you need so many lawyers and therapists shows that you're not adult enough to be independent. Guns should only be handled by adults. If you're not adult enough to sort things out without suing someone or speaking to a therapist then you're not grown up enough to handle a gun.

15. Please tell us who killed JFK. It's been driving us crazy. Tax collectors from Her Majesty's Government will be with you shortly to ensure the acquisition of all revenues due (backdated to 1776).

16. Last but not the least, and for heaven's sake.....it's Nuclear as in "clear" NOT Nucular. Thank you for your co-operation and have a great day.

Offline Pecan

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 2775
Re: The 04 january 2007 build is out.
« Reply #17 on: January 05, 2007, 04:30:50 pm »
It's a well known fact that I learned speaking English by watching American TV shows, so blame them. :mrgreen:

Ah, yes! Another alien with a Hollywood accent.
 :o


Quote
7. You will no longer be allowed to own or carry guns. You will no longer be allowed to own or carry anything more dangerous in public than a vegetable peeler. Because we don't believe you are sensible enough to handle potentially dangerous items, you will require a permit if you wish to carry a vegetable peeler in public.

Peelers don't hurt people. People hurt people.

It's best to keep your peeler hidden.
« Last Edit: January 05, 2007, 04:41:31 pm by Pecan »

Offline Grom

  • Almost regular
  • **
  • Posts: 206
Re: The 04 january 2007 build is out.
« Reply #18 on: January 05, 2007, 06:52:45 pm »
After examination of the release discussions I found that everybody should study Russian language, which helps to express a lot more emotions then barbarian languages :lol:..... and you will have no problems in reading, writing and pronunciation, except one - all words will be longer :lol:
gcc+winXP+suse.

Offline rcoll

  • Almost regular
  • **
  • Posts: 150
Re: The 04 january 2007 build is out.
« Reply #19 on: January 05, 2007, 07:39:49 pm »
/* edited out unknown language, please speak english only */

« Last Edit: January 05, 2007, 07:54:20 pm by thomas »