Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on July 08, 2006, 05:59:31 pm

Title: The 08 July 2006 build is out.
Post by: killerbot on July 08, 2006, 05:59:31 pm
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://download.berlios.de/codeblocks/wxmsw26u_gcc_cb_wx2.6.3p2.7z

For those who might need this one (when no MingW installed on your system) : the mingw10m.dll : http://download.berlios.de/codeblocks/mingwm10.7z

For support of ansi builds, a link to the ansi windows wxWidget dll (2.6.2) for Code::Blocks : http://download.berlios.de/codeblocks/wxmsw26_gcc_cb.7z

The 08 July 2006 build is out.
  - Windows : http://download.berlios.de/codeblocks/CB_20060708_rev2717_win32.7z
  - Linux :
         http://download.berlios.de/codeblocks/CB_20060708_rev2717_Ubuntu6.06.deb (not this time)
         http://download.berlios.de/codeblocks/CB_20060708_rev2717_fc4+5.rpm


Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 08 July 2006 build is out.
Post by: ocloma on July 08, 2006, 06:33:56 pm
C::B crash when click "Settings-->Editor ", and a error occured when click "Settings-->Enviroments", error message: "XRC resource 'dlgEnvVars' (class 'wxPanel') not found!" .Idem rev2712.
Title: Re: The 08 July 2006 build is out.
Post by: ocloma on July 08, 2006, 06:36:07 pm
a crash occured in winXP sp2.
Title: Re: The 08 July 2006 build is out.
Post by: Ceniza on July 08, 2006, 06:39:29 pm
Just the same crashes of 07 July.
Title: Re: The 08 July 2006 build is out.
Post by: badboy on July 08, 2006, 07:35:38 pm
Same with me. C::B crashed when clicked "Settings -> Editor"  :(

----------
badboy

C::B crash when click "Settings-->Editor ", and a error occured when click "Settings-->Enviroments", error message: "XRC resource 'dlgEnvVars' (class 'wxPanel') not found!" .Idem rev2712.
Title: Re: The 08 July 2006 build is out.
Post by: thomas on July 08, 2006, 07:48:54 pm
Those are missing XRC files.
Title: Re: The 08 July 2006 build is out.
Post by: killerbot on July 08, 2006, 08:52:01 pm
Those are missing XRC files.

missing in svn and therefor not in the build, or just missing in the build ?
In the latter case, do we have a problem with update(.bat) ?
Title: Re: The 08 July 2006 build is out.
Post by: mandrav on July 08, 2006, 08:58:46 pm
Those are missing XRC files.

Not exactly. It's a bug with the resource loader...
Title: Re: The 08 July 2006 build is out.
Post by: thomas on July 08, 2006, 09:22:27 pm
Not exactly. It's a bug with the resource loader...
Are you sure? I tested both under Windows XP and Ubuntu 6.06, it works without any problems for me.

I do get errors with some contrib plugins under Ubuntu, but these don't use the resource loader at all (they load resources the "old" way). This may be related to the deb building, too, I had warnings while building the package, but couldn't be bothered to look into them, I rather just disabled the contrib plugins, and all is fine.
Title: Re: The 08 July 2006 build is out.
Post by: mandrav on July 08, 2006, 09:48:48 pm
Not exactly. It's a bug with the resource loader...
Are you sure? I tested both under Windows XP and Ubuntu 6.06, it works without any problems for me.

I have the same problems here and, trust me, I 'm not missing any resources ;).
In envvars/envvars.cpp, if you replace this

Code
Manager::Get()->Loadxrc(_T("/envvars.zip#zip:envvars.xrc"));

with this

Code
wxString resPath = ConfigManager::GetDataFolder();
wxXmlResource::Get()->Load(resPath + _T("/envvars.zip#zip:envvars.xrc"));

it works fine.
Title: Re: The 08 July 2006 build is out.
Post by: thomas on July 08, 2006, 10:00:39 pm
Funnily, 2706 (which already contains the preloader) works fine for me with contrib plugins, but as Ceniza pointed out wxSmith was causing a crash for him, I rebuilt it with 2717 and it *does* crash   :shock:

Give me 5 minutes of time to rebuild please, I've now modified the whole contrib workspace to do everything the "canonical" way, consistently throughout. Will see if that fixes it.
Title: Re: The 08 July 2006 build is out.
Post by: thomas on July 08, 2006, 10:03:49 pm
Surprise! All is fixed now :)
Title: Re: The 08 July 2006 build is out.
Post by: mandrav on July 08, 2006, 10:51:55 pm
Great :)
Title: Re: The 08 July 2006 build is out.
Post by: thomas on July 08, 2006, 11:03:33 pm
One issue remains, that is the "already loaded" message which you get after pressing "OK" when having the EnvVars plugin loaded. It is not a major thing, though.

The EnvVars plugin calls OnAttached() from its OnSave() function which is technically wrong (so the error message is correct). The Autosave plugin used to do the same up to and including revision 2705.

I have not changed this in EnvVars plugin since I don't know whether this is a copy artefact or intentional. Morten will know :)
Title: Re: The 08 July 2006 build is out.
Post by: Acki on July 09, 2006, 12:31:19 am
Same errors with me !!!!

Settings-Environment -> Error when opened -> fixed by disabled "Environment variables V0.92" plugin
Settings-Editor-> crashes C::B -> fixed by disabled "wxSmith" plugin

Title: Re: The 08 July 2006 build is out.
Post by: thomas on July 09, 2006, 12:36:32 am
Same errors with me !!!!
Really!!!
Title: Re: The 08 July 2006 build is out.
Post by: Ceniza on July 09, 2006, 03:36:56 am
Acki: Well, if you're trying this nightly of course you'll still have those problems (they were fixed after this release). If you compiled the latest revision from SVN and you're still having those crashes... well, I wouldn't know. It's working pretty nice here :)
Title: Re: The 08 July 2006 build is out.
Post by: killerbot on July 09, 2006, 10:49:54 am
indeed, with the fix 'post yesterday's nightly' the crashs are gone.
So ..... today's nightly .... is the one to catch ;-)
Title: Re: The 08 July 2006 build is out.
Post by: oz on July 09, 2006, 12:55:23 pm
a crash occured in winXP sp2.

same in Fedora 5