Author Topic: The 27 June 2007 build (4190) is out.  (Read 22392 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
The 27 June 2007 build (4190) is out.
« on: June 27, 2007, 11:21:14 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_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 27 June 2007 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20070627_rev4190_win32.7z
  - Linux :
   http://prdownload.berlios.de/codeblocks/CB_20070627_rev4190_Ubuntu6.10+7.04_wx2.8.4.deb (not yet)
   http://prdownload.berlios.de/codeblocks/CB_20070627_rev4190_suse100-102.wx28.i586.rpm (not yet)
   http://prdownload.berlios.de/codeblocks/CB_20070627_rev4190_fc4+5.i586.rpm (not yet)


Resolved Fixed:

  • Fixed: [Bug #11454] wxDatePickerCtrl: wxDataEvent instead of wxDateEvent
  • wxSmith: Added few missing icons and fixed small bug in property editor (it didn't clear events page after closing editor)
  • Fixed: Couldn't compile on MSW without PCH (applied patch #1992 - thanks stahta01)
  • DragScroll 1.1.04 2007/06/27
    - Reduce minimum Unix Context menu sentry delay
    - Clean up configuration panel
  • CodeSnippets 1.2.83 2007/06/27
    - Fixed: Index might not be saved when changing category label

Regressions/Confirmed/Annoying/Common bugs:

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


Offline z.e.k

  • Single posting newcomer
  • *
  • Posts: 7
Re: The 27 June 2007 build (4190) is out.
« Reply #1 on: June 27, 2007, 11:31:17 pm »
@wxSmith Dev

When creating project through wizard, you don't check if the user wants the PCH file or not, it's always included in the source file.

Do you want me to fill a bug report ?

(Bug noticed for the last 2 nightlies on Windows Vista)

Offline byo

  • Plugin developer
  • Lives here!
  • ****
  • Posts: 837
Re: The 27 June 2007 build (4190) is out.
« Reply #2 on: June 28, 2007, 12:28:57 am »
@wxSmith Dev

When creating project through wizard, you don't check if the user wants the PCH file or not, it's always included in the source file.

Do you want me to fill a bug report ?

(Bug noticed for the last 2 nightlies on Windows Vista)

Thanks for feedback. There's no need to fill bug report. Should work fine in next nightly :).

Regards
   BYO

MathStuf

  • Guest
Re: The 27 June 2007 build (4190) is out.
« Reply #3 on: June 28, 2007, 02:23:53 am »
I got C::B to build on Fedora 7 as-is. If someone writes the .spec file (or helps me do it), I could help have nightly builds for Fedora 7 on x86_64 (and possibly i386 if I can get it to cross-compile).

Offline kurapix

  • Multiple posting newcomer
  • *
  • Posts: 68
Re: The 27 June 2007 build (4190) is out.
« Reply #4 on: June 28, 2007, 05:47:22 am »
I've found a strange behavior of the GCC compiler when I compile : when not using some declared variables, I now have errors instead of warnings.

Kurapix
Code::Blocks package building script

Offline rickg22

  • Lives here!
  • ****
  • Posts: 2283
Re: The 27 June 2007 build (4190) is out.
« Reply #5 on: June 28, 2007, 06:40:45 am »
kurapix: What was the last version (before this one) of CodeBlocks you used?

Offline kurapix

  • Multiple posting newcomer
  • *
  • Posts: 68
Re: The 27 June 2007 build (4190) is out.
« Reply #6 on: June 28, 2007, 08:30:09 am »
Yeah sorry.
I've seen this problem for the first time in build 4181, now I'm using build 4191 and the problem is still there.
I'm using Ubuntu 7.04 with wxWidgets 2.8.4.

Suggestion for the compile log :
- ability to hide some warnings (and keep others like not using some variables, ...)

Kurapix
Code::Blocks package building script

Offline Kazade

  • Multiple posting newcomer
  • *
  • Posts: 73
Re: The 27 June 2007 build (4190) is out.
« Reply #7 on: June 28, 2007, 08:39:36 am »
Quote
Suggestion for the compile log :
- ability to hide some warnings (and keep others like not using some variables, ...)

Hehe, I'm not sure that's a good idea. Warnings are there for a reason  :lol:


Offline blend

  • Multiple posting newcomer
  • *
  • Posts: 32
Re: The 27 June 2007 build (4190) is out.
« Reply #8 on: June 28, 2007, 11:10:57 am »
Suggestion for the compile log :
- ability to hide some warnings (and keep others like not using some variables, ...)
You can change the Warnings level: see project->build options->Compiler Flags...

Offline Kazade

  • Multiple posting newcomer
  • *
  • Posts: 73
Re: The 27 June 2007 build (4190) is out.
« Reply #9 on: June 28, 2007, 11:57:58 am »
I used to be able to find the value of a variable while debugging just by hovering over it, this has stopped working for me  :?

I'm on Ubuntu Feisty with the latest nightly (but this could have started at any time recently). Is there an option that I may have turned off? Debugging symbols are enabled in the project.

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: The 27 June 2007 build (4190) is out.
« Reply #10 on: June 28, 2007, 11:59:43 am »
Quote
Suggestion for the compile log :
- ability to hide some warnings (and keep others like not using some variables, ...)
Hehe, I'm not sure that's a good idea. Warnings are there for a reason  :lol:
Exactly. If you want to disable certain warnings, you can do that by adding the respective commandline options to compiler flags: http://gcc.gnu.org/onlinedocs/gcc-4.1.0/gcc/Warning-Options.html
(you want the ones starting with -fno-...)

It is usually a better idea to fix the code, though. Although most of the time, things seem to work just fine despite warnings, code that produces warnings may break on some platforms under some conditions, at the most inappropriate and most unpredictable time.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline skirby

  • Almost regular
  • **
  • Posts: 137
Re: The 27 June 2007 build (4190) is out.
« Reply #11 on: June 28, 2007, 12:02:15 pm »
Hello,

I am going to play the damned pesky but would it be possible to homogenize spaces/tabs in files from wizard (main.cpp and all other file created with wizard).

There are some files which contains tabs and spaces to indent code.
Depend of Tab options, the code is or isn't correctly indented.

If you want, I can do it and send you the new files.

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: The 27 June 2007 build (4190) is out.
« Reply #12 on: June 28, 2007, 12:10:07 pm »
If you want, I can do it and send you the new files.

We'd be happy to get them. :)
Be a part of the solution, not a part of the problem.

Offline skirby

  • Almost regular
  • **
  • Posts: 137
Re: The 27 June 2007 build (4190) is out.
« Reply #13 on: June 28, 2007, 12:33:12 pm »
Ok, I will do it this afternoon.

Do you know if there is any standard in code formatting?

Do you prefer Tab or space from the beginning of a line?
If I have to use spaces, do you prefer 2 or 4 spaces?

Offline Biplab

  • Developer
  • Lives here!
  • *****
  • Posts: 1874
    • Biplab's Blog
Re: The 27 June 2007 build (4190) is out.
« Reply #14 on: June 28, 2007, 12:37:46 pm »
Ok, I will do it this afternoon.

Do you know if there is any standard in code formatting?

Do you prefer Tab or space from the beginning of a line?
If I have to use spaces, do you prefer 2 or 4 spaces?

Please use 4 Spaces and No Tabs. :)

I'm not sure which files are affected. But it could some of the files I committed. Morten pointed me that problem. :roll:
Be a part of the solution, not a part of the problem.