News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

The 16 September 2007 build (4472) is out.

Started by killerbot, September 16, 2007, 08:31:35 PM

Previous topic - Next topic

killerbot

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 16 September 2007 build is out.
  - Windows :
   http://prdownload.berlios.de/codeblocks/CB_20070916_rev4472_win32.7z
  - Linux :
   http://prdownload.berlios.de/codeblocks/CB_20070916_rev4472_Ubuntu6.10+7.04_wx2.8.4.tar.gz (not yet)
   http://prdownload.berlios.de/codeblocks/CB_20070916_rev4472_Debian4.0_wx2.8.4.tar.gz (not yet)
   http://prdownload.berlios.de/codeblocks/CB_20070916_rev4472_suse100-102.wx28.i586.rpm (not yet)
   http://prdownload.berlios.de/codeblocks/CB_20070916_rev4472_fc4+5.i586.rpm (not yet)


Resolved Fixed:


  • Fixed: A bug in SetVersionString() which could not detect the version string of MinGW compilers installed in an arbitrary folder

Regressions/Confirmed/Annoying/Common bugs:


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


killerbot

coming week nightly builds might come out, but not sure. I am off to Boston for sdexpo [listening to the gurus ;-) ], it all depends on the facilities on the hotel room.

PsYhLo

i found one mistake codeblocks search for translation only at /usr/share/codeblocks/locale
but i one to put the translation at /home/user/.codeblocks/share/locale
i hope you understand me :)
[url="http://img529.imageshack.us/img529/822/3664286vy.png"]http://img529.imageshack.us/img529/822/3664286vy.png[/url]

Seronis

Quote from: killerbot on September 16, 2007, 08:33:31 PM
coming week nightly builds might come out, but not sure. I am off to Boston for sdexpo [listening to the gurus ;-) ], it all depends on the facilities on the hotel room.
A week without changes wont kill anyone.  Enjoy the expo and dont worry about the nightlies.  We'll just have a bigger nightly when ya return.

dje

Hi all !

I tried the very nice ClearCase plugin. All is OK  :D but there is a little mistake; it is written "Check in" in the "Check out" window.

Dje

incorrect user

Take quality as a rule!

dempl_dempl

Feature request:

Lack of this following feature is small, but pesky :

When I press Ctrl+F , and when I want to select one of previous searches, I have to use the mouse. Using of UP and DOWN keys should be enabled.

BTW, I use Ubuntu Feisty 7.04  .

kisoft

Quote from: dje on September 17, 2007, 04:46:13 PM
I tried the very nice ClearCase plugin. All is OK  :D but there is a little mistake; it is written "Check in" in the "Check out" window.
Sorry for offtopic. Where I can to find ClearCase plugin? I looked .exe only.
OS: WinXPSP3
wxWidgets: 2.8.12
CodeBlocks: Master github cbMakefileGen plugin:
[url="https://github.com/kisoft/cbmakefilegen"]https://github.com/kisoft/cbmakefilegen[/url]

dje

Hi !

Quote from: kisoft on September 19, 2007, 08:43:15 AM
Quote from: dje on September 17, 2007, 04:46:13 PM
I tried the very nice ClearCase plugin. All is OK  :D but there is a little mistake; it is written "Check in" in the "Check out" window.
Sorry for offtopic. Where I can to find ClearCase plugin? I looked .exe only.
I got it in SVN 4472 nightly build on Windows.
It was included.

Dje

indigo0086

My codeblocks wont start up without mingw10.dll, I never had it before.  I even deleted the default.conf and it's still askiing for it.

stahta01

Quote from: indigo0086 on September 19, 2007, 04:19:32 PM
My codeblocks wont start up without mingw10.dll, I never had it before.  I even deleted the default.conf and it's still askiing for it.

Windows Code::Blocks requires mingwm10.dll to be in the path.

Tim S
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

killerbot

that dll is needed, it brings the multithreading library/functions

stahta01

#12
Bug discoverer in "Import Project"; C::B no longer imports MSVC8 Projects or Solutions.

SVN 4246/7 seems to be the last time it worked.
Was user error on my part, I did not have the Foreign projects importer plugin turned on.

Feature Request
https://developer.berlios.de/feature/index.php?func=detailfeature&feature_id=3747&group_id=5358

Note, include of <wx/ffile.h> needed for windows non PCH compile.

Index: src/plugins/compilergcc/compilergcc.cpp
===================================================================
--- src/plugins/compilergcc/compilergcc.cpp (revision 4478)
+++ src/plugins/compilergcc/compilergcc.cpp (working copy)
@@ -49,6 +49,7 @@
#include <wx/button.h>
#include <wx/stattext.h>
#include <wx/statline.h>
+#include <wx/ffile.h>
#include "makefilegenerator.h"
#include "compileroptionsdlg.h"
#include "directcommands.h"

C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

lubos

if you have output name something like : "0.myApp.exe", cb will change it to "0.exe" after restart  :( should i fill a bug report?

killerbot

Quote
Note, include of <wx/ffile.h> needed for windows non PCH compile.
done