Code::Blocks Forums

User forums => Nightly builds => Topic started by: killerbot on June 11, 2006, 06:32:47 pm

Title: The 11 June 2006 build is out.
Post by: killerbot on June 11, 2006, 06:32:47 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 11 June 2006 build is out.
  - Windows : http://download.berlios.de/codeblocks/CB_20060611_rev2544_win32.7z
  - Linux :
         http://download.berlios.de/codeblocks/CB_20060611_rev2544_Ubuntu6.06.deb
         http://download.berlios.de/codeblocks/CB_20060611_rev2544_fc4+5.rpm


Resolved Fixed:


Regressions/Confirmed/Annoying/Common bugs:


Title: Re: The 11 June 2006 build is out.
Post by: squizzz on June 11, 2006, 08:56:31 pm
  • Added split-view in editors. Right-click inside an editor and click "Split view" to split/unsplit it

Awesome feature. 8)
Title: Re: The 11 June 2006 build is out.
Post by: PsYhLo on June 11, 2006, 09:00:13 pm
  • Added split-view in editors. Right-click inside an editor and click "Split view" to split/unsplit it

super cool feature
very helpful
Title: Re: The 11 June 2006 build is out.
Post by: David Perfors on June 11, 2006, 09:17:15 pm
A cool feature indeed 8)

btw. I can't save a single file anymore by clicking the button/menu item/CTRL + S it only saves files when I compile and click on Save all...
Title: Re: The 11 June 2006 build is out.
Post by: Victrix on June 11, 2006, 10:13:26 pm
Hi all,

I hope i'm not making a mistake writing this here, but i post here because i was working with this builds when i got the problem, im new using C::B and i was looking for the problem in all forum and don't find nothing about this.

Well, i had a problem with "Dev-C++ DevPak updater/installer" (*s1) plugin, when i use the plugin, i dont get nothing for server "Dev-C++ primary devpak server" (*s2), and no problems with server "devpaks.org Community Devpaks", well, was a fileformat problem, the file for server *s1 (devpak_bddfa153.conf) and *s2 (devpak_2f4d4c09.conf) had different formats, with the tool dos2unix (from MinGW) the probem was solved using next sintax:

    unix2dos -n -c ISO devpak_bddfa153.conf x.conf

   and then replacing devpak_bddfa153.conf with x.conf all works nice again  :).

Note: this problem is not in C::B 1.0rc2, Oct 25, 2005

My sand granite  :D, i hope i can help more, sorry for my bad english :P.

Files included (remove .txt):
devpak_2f4d4c09.conf.txt : "devpaks.org Community Devpaks" file working
devpak_bddfa153.conf.txt : "Dev-C++ primary devpak server" file with trouble.
devpak_bddfa153.working.conf.txt  : "Dev-C++ primary devpak server" file repaired.

You are doing a GREAT WORK guys, congratulations and thanks for your efforts.

Vic.

[attachment deleted by admin]
Title: Re: The 11 June 2006 build is out.
Post by: sethjackson on June 11, 2006, 10:14:56 pm
A cool feature indeed 8)

btw. I can't save a single file anymore by clicking the button/menu item/CTRL + S it only saves files when I compile and click on Save all...

Yep cool feature. 8) I can confirm that bug too. :P
Title: Re: The 11 June 2006 build is out.
Post by: Szabadember on June 11, 2006, 10:33:43 pm
Can't display different source files in the two splited windows, is this the normal behaviour of this new feature?  :shock:
Title: Re: The 11 June 2006 build is out.
Post by: Michael on June 11, 2006, 10:37:19 pm
  • Added split-view in editors. Right-click inside an editor and click "Split view" to split/unsplit it

Hello,

As it was told many times already :), really cool feature :D.

Best wishes,
Michael
Title: Re: The 11 June 2006 build is out.
Post by: TDragon on June 12, 2006, 03:15:35 am
btw. I can't save a single file anymore by clicking the button/menu item/CTRL + S it only saves files when I compile and click on Save all...
Confirmed here.
Title: Re: The 11 June 2006 build is out.
Post by: sethjackson on June 12, 2006, 04:06:59 am
The following function looks suspicious (I don't know though so I'm probably wrong).......

Code: cpp
bool cbEditor::GetModified() const
{
    return m_Modified || m_pControl->GetModify();
}

Which should probably be:

Code: cpp
bool cbEditor::GetModified() const
{
    eturn m_Modified || GetControl()->GetModify();
}

Note the GetControl() call. :)
Title: Re: The 11 June 2006 build is out.
Post by: Ceniza on June 12, 2006, 04:19:30 am
Just tried and it seems it's not the one causing it, but it looks suspicious :)

[edit]
I found the problem... a really subtle one BTW :)

Committing...
[/edit]
Title: Re: The 11 June 2006 build is out.
Post by: jomabrueloe on June 12, 2006, 10:28:06 am
Hi,

I think that I've found a bug  :shock:, but it might also be a feature: in my system (Windows XP) none of the keys on the grey number block do work, except for the standard arrows (up, down, left, right).

With RC2, which I keep as reference, all keys work fine.

Best regards

Jo
Title: Re: The 11 June 2006 build is out.
Post by: kkez on June 12, 2006, 10:42:14 am
I think that I've found a bug  :shock:, but it might also be a feature: in my system (Windows XP) none of the keys on the grey number block do work, except for the standard arrows (up, down, left, right).

With RC2, which I keep as reference, all keys work fine.
I assume the "grey number block" is the numpad... and for me it works fine. Make sure you don't have the Num Lock keyboard option enabled.
Title: Re: The 11 June 2006 build is out.
Post by: reptils on June 12, 2006, 12:03:47 pm
Hi, i'm using the rev2544 and i have some problems with save option. in the menu "File" and in the toolbar, save is disactivated. Have you seen this?
Title: Re: The 11 June 2006 build is out.
Post by: Bluespear on June 12, 2006, 12:15:26 pm
  • Added split-view in editors. Right-click inside an editor and click "Split view" to split/unsplit it
Perfect feature  8)
Title: Re: The 11 June 2006 build is out.
Post by: MortenMacFly on June 12, 2006, 12:44:26 pm
Hi, i'm using the rev2544 and i have some problems with save option. in the menu "File" and in the toolbar, save is disactivated. Have you seen this?
I'm not quite sure but I'd say it's already fixed in SVN, see:
http://svn.berlios.de/wsvn/codeblocks/?rev=2546&sc=1 (http://svn.berlios.de/wsvn/codeblocks/?rev=2546&sc=1)
Wait for today's nightly...
With regards, Morten.
Title: Re: The 11 June 2006 build is out.
Post by: reptils on June 12, 2006, 01:48:10 pm
thank for your quick answer, I'll be waiting for tonight
Title: Re: The 11 June 2006 build is out.
Post by: nix_BB on June 12, 2006, 02:47:01 pm
Quote from: jomabrueloe
Hi,

I think that I've found a bug  :shock:, but it might also be a feature: in my system (Windows XP) none of the keys on the grey number block do work, except for the standard arrows (up, down, left, right).

With RC2, which I keep as reference, all keys work fine.

Best regards

Jo

@ C::B Devs:

I think I know what Jo is talking about.

With the previous build I was using (Build 2537) I could use the numpad with numlock disabled to navigate my code (up, down, home, end, etc.) With last nights build (Build 2544) the navigation does not work when using the numpad.


Quote from: Szabadember
Can't display different source files in the two splited windows, is this the normal behaviour of this new feature?  :shock:

@ Szabadember:

That's how the split view feature works in VS, so I'm assuming that the single document split is the intended result.
Title: Re: The 11 June 2006 build is out.
Post by: reptils on June 12, 2006, 02:50:34 pm
I wonder if the option "build->Export Makefile" will be activated one day? Anyone have information about that?
Title: Re: The 11 June 2006 build is out.
Post by: Game_Ender on June 12, 2006, 06:52:56 pm
I wonder if the option "build->Export Makefile" will be activated one day? Anyone have information about that?

Probably in version 1.5. Since the build system is being updated for that version.  The devs don't have the time to fix the makefile exporter because of the state of flux the build system is in right now.  So after the update finishes it will probably be worked on.