Author Topic: The 08 July 2006 build is out.  (Read 19098 times)

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
The 08 July 2006 build is out.
« 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:

  • wxSmith (new) : use wxHIDE_READONLY for file ope dialog under Windows to avoid confusion
  • fixed broken compilation due to missing include (cbproject.h)
  • Added missing #includes
  • Removed some gcc warnings
  • fixed [ Bug #8084 ] Crash using "replace in files"
  • fixed [ Bug #7022 ] Compiler selection lags behind

Regressions/Confirmed/Annoying/Common bugs:

  • toolbar-images-not-changing-state (is a wx problem/Win XP problem)
  • there are several issues with Code Completion (is being redesigned : work in progress)
  • menu items with icon not correctly aligned (since wx263)

« Last Edit: July 09, 2006, 10:48:56 am by killerbot »

ocloma

  • Guest
Re: The 08 July 2006 build is out.
« Reply #1 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.

ocloma

  • Guest
Re: The 08 July 2006 build is out.
« Reply #2 on: July 08, 2006, 06:36:07 pm »
a crash occured in winXP sp2.

Offline Ceniza

  • Developer
  • Lives here!
  • *****
  • Posts: 1441
    • CenizaSOFT
Re: The 08 July 2006 build is out.
« Reply #3 on: July 08, 2006, 06:39:29 pm »
Just the same crashes of 07 July.

Offline badboy

  • Single posting newcomer
  • *
  • Posts: 4
Re: The 08 July 2006 build is out.
« Reply #4 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.

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: The 08 July 2006 build is out.
« Reply #5 on: July 08, 2006, 07:48:54 pm »
Those are missing XRC files.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline killerbot

  • Administrator
  • Lives here!
  • *****
  • Posts: 5491
Re: The 08 July 2006 build is out.
« Reply #6 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) ?

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 08 July 2006 build is out.
« Reply #7 on: July 08, 2006, 08:58:46 pm »
Those are missing XRC files.

Not exactly. It's a bug with the resource loader...
Be patient!
This bug will be fixed soon...

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: The 08 July 2006 build is out.
« Reply #8 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.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 08 July 2006 build is out.
« Reply #9 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.
Be patient!
This bug will be fixed soon...

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: The 08 July 2006 build is out.
« Reply #10 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.
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: The 08 July 2006 build is out.
« Reply #11 on: July 08, 2006, 10:03:49 pm »
Surprise! All is fixed now :)
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline mandrav

  • Project Leader
  • Administrator
  • Lives here!
  • *****
  • Posts: 4315
    • Code::Blocks IDE
Re: The 08 July 2006 build is out.
« Reply #12 on: July 08, 2006, 10:51:55 pm »
Great :)
Be patient!
This bug will be fixed soon...

Offline thomas

  • Administrator
  • Lives here!
  • *****
  • Posts: 3979
Re: The 08 July 2006 build is out.
« Reply #13 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 :)
"We should forget about small efficiencies, say about 97% of the time: Premature quotation is the root of public humiliation."

Offline Acki

  • Multiple posting newcomer
  • *
  • Posts: 100
Re: The 08 July 2006 build is out.
« Reply #14 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