Author Topic: The 23 October 2010 build (6752) is out.  (Read 44869 times)

Offline koso

  • Multiple posting newcomer
  • *
  • Posts: 58
Re: The 23 October 2010 build (6752) is out.
« Reply #15 on: October 30, 2010, 10:58:36 am »
I am sorry for my previous post ... all problems i had with this build (indent, broken cc, lags in editor) were solved with deleting default.conf

Offline scarphin

  • Lives here!
  • ****
  • Posts: 644
Re: The 23 October 2010 build (6752) is out.
« Reply #16 on: October 30, 2010, 12:12:08 pm »
I guess debuggers branch hasn't been mixed into this nightly, has it?

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: The 23 October 2010 build (6752) is out.
« Reply #17 on: October 30, 2010, 12:23:28 pm »
I guess debuggers branch hasn't been mixed into this nightly, has it?

No !

Offline Phenom

  • Multiple posting newcomer
  • *
  • Posts: 57
Re: The 23 October 2010 build (6752) is out.
« Reply #18 on: October 30, 2010, 07:23:49 pm »
The "Copy strings to clipboard" plugin copies include names that are between " and " e.g:

Code
#include "header.h"

copies "header.h".

Offline alb_cb_moon

  • Multiple posting newcomer
  • *
  • Posts: 25
Re: The 23 October 2010 build (6752) is out.
« Reply #19 on: October 31, 2010, 09:38:56 pm »
Hello Developer-Team.

The new nightly seams to have problem to write its configuration data into the renamed data-path. If I just open C::B and close it again it crashes. WinXP SP2 tells me that there is an impossible read on the adress "0x00000001". I renamed the old data-folder in the hope it helps. But C:B creates only a new folder-system and 2 ini-files "DragScroll.ini" and "codesnippets.ini".

Best Regards,
                   Eckard Klotz.

I have the same problem... I use  WinXP Profesional  SP2
OS: Windows XP SP2
GUI Library: wxWidgets 2.8.10
IDE: CodeBlocks SVN / Nigth Builds Compiler: MinGW & gcc 3.4.5

Offline Grom

  • Almost regular
  • **
  • Posts: 206
Re: The 23 October 2010 build (6752) is out.
« Reply #20 on: November 01, 2010, 04:31:45 pm »
Bug!!! When I use debugger, the call stuck doesn't show template classes methods from template class methods.  :twisted: :twisted: :twisted:

Say

template<calass type>
class A{
type a;
void Add(type b)
{
a+=b;
}};

template<calass type>
class B{
type a;
A<T> m_A;
void Mul(type b)
{
a*=b;
}

void Add(type b)
{
 m_A.Add(b);
}

};

void main()
{
 B<float> B;
 B.Add(10.0); // <- doen't show to the class A!!!!
  return -1;
}
gcc+winXP+suse.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: The 23 October 2010 build (6752) is out.
« Reply #21 on: November 01, 2010, 04:46:39 pm »
Have you tried the version from the debuggers branch?

If it doesn't work there, can you paste the debuggers debug log?


p.s. and please use code tags for larger pastes
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

Offline fataluk1

  • Single posting newcomer
  • *
  • Posts: 4
Re: The 23 October 2010 build (6752) is out.
« Reply #22 on: November 02, 2010, 06:38:24 am »
Does it happen to anyone else that when you write two nested for-s for example

for( int i = 0 ; i < N ; i++ ){
    for( int j = 0 ; j < N ; j++ ){
    
    }
}

I want it to look like above ( with the second for indented ). Sadly codeblocks drives me crazy when it aligns the second for with the first. Is that an option that I can turn off or is it just a bug.... I cannot make myself believe this is a feature!??!  Really, who'd write without indentation... Please fix it :)

OS: Kubuntu 10.10
Codeblocks SVN 6803, Build : Nov 1 2010, 10:20:47 - wx 2.8.10 - 32 bit

EDIT: WHERE ARE MY ABBREVIATIONS!?!?!?
« Last Edit: November 02, 2010, 10:19:39 am by fataluk1 »

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: The 23 October 2010 build (6752) is out.
« Reply #23 on: November 02, 2010, 10:44:08 am »
Does it happen to anyone else that when you write two nested for-s for example

for( int i = 0 ; i < N ; i++ ){
    for( int j = 0 ; j < N ; j++ ){
    
    }
}

I want it to look like above ( with the second for indented ). Sadly codeblocks drives me crazy when it aligns the second for with the first. Is that an option that I can turn off or is it just a bug.... I cannot make myself believe this is a feature!??!  Really, who'd write without indentation... Please fix it :)

OS: Kubuntu 10.10
Codeblocks SVN 6803, Build : Nov 1 2010, 10:20:47 - wx 2.8.10 - 32 bit

EDIT: WHERE ARE MY ABBREVIATIONS!?!?!?

trying to delete default.conf?

Offline koso

  • Multiple posting newcomer
  • *
  • Posts: 58
Re: The 23 October 2010 build (6752) is out.
« Reply #24 on: November 02, 2010, 10:44:35 pm »
I have the same problem with indent, even with new profile.

In my case, I can reproduce it with this:

1. disable brace completion (in default config)
2. write this:

Code
for(;;) {
        for(;;)
3. press '{'

Now it unindents inner for ... and it happens only if you write code from '2' char by char <- so do not copy-paste it to test.


Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: The 23 October 2010 build (6752) is out.
« Reply #25 on: November 03, 2010, 01:22:15 pm »
I have the same problem with indent, even with new profile.

In my case, I can reproduce it with this:

1. disable brace completion (in default config)
2. write this:

Code
for(;;) {
        for(;;)
3. press '{'

Now it unindents inner for ... and it happens only if you write code from '2' char by char <- so do not copy-paste it to test.


This issue should fixed in next nightly build.

Offline tanq

  • Multiple posting newcomer
  • *
  • Posts: 18
Re: The 23 October 2010 build (6752) is out.
« Reply #26 on: November 03, 2010, 04:33:38 pm »
I want to add some minor bugs I found.

1. Sometimes compiler settings (particulary executable paths) are not saved with "save all" command. This is happening when new workspace is used instead of "default" workspace.
--load prevously saved workspace
--edit compiler paths
--"save everything"
--exit code::blocks
--start code::blocks
--load saved workspace
-> paths may be lost

2. Similar bug:
--rename toolchain in compiler settings
--toolchain name in projects' options updates automatically
--save everything
->after restarting c::b projects references to old tollchain name which not exist
->updating toolchain name in every project manually, fixes the prolem


Offline fataluk1

  • Single posting newcomer
  • *
  • Posts: 4
Re: The 23 October 2010 build (6752) is out.
« Reply #27 on: November 03, 2010, 07:51:13 pm »
By MY I meant abbreviations as a whole... I don't have Abbreviations in Tools->Editor...

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: The 23 October 2010 build (6752) is out.
« Reply #28 on: November 03, 2010, 09:00:38 pm »
By MY I meant abbreviations as a whole... I don't have Abbreviations in Tools->Editor...
Confirmed, abbreviations have moved into a plugin.
I updated automake-system, but forgot to fix the debian install files.

Currently I build the new packages.
It will take about an hour (64-bit and 32-bit), if everything else is okay.

I post here if the packages are available.

Sorry for the inconvenience.

Offline fataluk1

  • Single posting newcomer
  • *
  • Posts: 4
Re: The 23 October 2010 build (6752) is out.
« Reply #29 on: November 03, 2010, 09:03:01 pm »
Can you also please add the option "Cancel" to the close dialog( when you press X incidentally, it only asks you whether to save the layout( at least me ) )... I like the firefox behaviour ( if I press X incidentally I can press Esc and not close firefox... no way(?) to do this with code::blocks :) )