Author Topic: The 27 June 2007 build (4190) is out.  (Read 22390 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.

Offline DaVince

  • Multiple posting newcomer
  • *
  • Posts: 11
    • DaVince's Website
Re: The 27 June 2007 build (4190) is out.
« Reply #15 on: June 28, 2007, 01:14:17 pm »
  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)
How long has that been there? Isn't it time to find a workaround or at least remove it from the list? :P

Offline skirby

  • Almost regular
  • **
  • Posts: 137
Re: The 27 June 2007 build (4190) is out.
« Reply #16 on: June 28, 2007, 01:15:59 pm »
Job done.

I have updated all files which contained Tabs by four spaces.
I also indented all files which used only two spaces instead of four.

Thanks to regular expressions  :D

You can find my archive here:
http://www.mytempdir.com/1364422

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7582
    • My Best Post
Re: The 27 June 2007 build (4190) is out.
« Reply #17 on: June 28, 2007, 03:49:49 pm »
  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)
How long has that been there? Isn't it time to find a workaround or at least remove it from the list? :P

Feel free to submit a patch to Microsoft.

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 kurapix

  • Multiple posting newcomer
  • *
  • Posts: 68
Re: The 27 June 2007 build (4190) is out.
« Reply #18 on: June 28, 2007, 04:41:51 pm »
Thank you for the warnings tips.

The warnings are here because of the SDL library so if I have to fix theses ... I'll need to type all the keyboards keys, etc.
*EDIT* : Whops ... it is because I've forgotten the default case ... shame on me lol.
Of course I'm careful about my code not having warnings because like thomas said, it cans produces some problems.

Kurapix
Code::Blocks package building script

Offline SharkCZ

  • Almost regular
  • **
  • Posts: 131
Re: The 27 June 2007 build (4190) is out.
« Reply #19 on: June 28, 2007, 08:56:15 pm »
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).
C::B is already part of Fedora. For the spec file and some patches see http://cvs.fedora.redhat.com/viewcvs/devel/codeblocks/?root=extras
I can upload my internal development versions to http://fedora.danny.cz/ occasionally
« Last Edit: June 28, 2007, 09:03:35 pm by SharkCZ »
Code::Blocks package maintainer for Fedora and EPEL

Offline Outis

  • Multiple posting newcomer
  • *
  • Posts: 26
Re: The 27 June 2007 build (4190) is out.
« Reply #20 on: July 06, 2007, 08:43:48 pm »
Hi,

wxSmith crashed C::B after I changed some sizer settings and started the preview. My whole work with wxSmith is destroyed now although I compiled the project may times before the crash. Perhaps the file was overwritten... I don't know.

But please add the wxs file to the autosave files. If got backups of the cpp and hpp files - which are ok  :? - but there's no wxs.save file. :(

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5490
Re: The 27 June 2007 build (4190) is out.
« Reply #21 on: July 06, 2007, 10:02:04 pm »
people are already working on this issue. It's because it is not part of the project, you can always add that file your self to the project. Things will probably be ok.

@Thomas : you implemented the autosave --> is it correct it will be included then ??

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: The 27 June 2007 build (4190) is out.
« Reply #22 on: July 09, 2007, 09:30:14 am »
people are already working on this issue. It's because it is not part of the project, you can always add that file your self to the project. Things will probably be ok.

@Thomas : you implemented the autosave --> is it correct it will be included then ??
Autosave only saves editors that validate as builtin editors, as I know they are just text files. It then uses the standard write-string-to-file function to do its job. Later, saving projects was added by calling the respective ProjectManager function. I don't think it's a good idea, but popular demand was large.

Other than that, Autosave knows nothing about any editors or the data within, and does not touch them. They might be wxSmith editors or something entirely different. Remember that Byo's Tetris-game is an editor too.
Unless we implement a kind of document interface for opening and saving files, and things like this, I see now way how this could be implemented. If an editor is not a builtin editor, you know nothing about it, and should not attempt to save it on your own.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."