Author Topic: The 26 November 2008 build (5322) is out.  (Read 85743 times)

Offline Wahooney

  • Multiple posting newcomer
  • *
  • Posts: 34
  • Demon Onion Slayer
    • wahooney.net
Re: The 26 November 2008 build (5322) is out.
« Reply #15 on: November 29, 2008, 04:12:58 pm »
Here ya go :)

[attachment deleted by admin]
Fabricati Diem, Celerata!

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: The 26 November 2008 build (5322) is out.
« Reply #16 on: November 29, 2008, 04:15:20 pm »
I've attached an updated squirrel lexer file that includes the 'const' and 'enum' keywords introduced in squirrel 2.2+
I get an "archive is broken" error. Mind trying again with a ZIP, please?

Martin, you seem to have a problem on your computer, my download works and there are no errors in archive.

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 26 November 2008 build (5322) is out.
« Reply #17 on: November 29, 2008, 10:00:00 pm »
Martin, you seem to have a problem on your computer, my download works and there are no errors in archive.
Strange thing, but you are right. I am on another PC (laptop) now and all works just fine. Got both of the files in question... Now all that's missing is C::B - it's not my laptop and not even a laptop of a programmer.
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Erick

  • Guest
Re: The 26 November 2008 build (5322) is out.
« Reply #18 on: November 30, 2008, 02:06:23 am »
Hi there, my first post...

When do we will get a new stable release? Most of the resent nigthlys are more stable than the current 8.02 stable release. A truly stable stable release is important to keep community growing, 8.02 sometimes crashes badly, lack some cool features like highlighting and behaves strangely once in a while.

5309 was a good nigthly, never crashed on me, 5322 is going in the same path. Good job guys.

Offline koala01

  • Single posting newcomer
  • *
  • Posts: 7
Re: The 26 November 2008 build (5322) is out.
« Reply #19 on: November 30, 2008, 12:46:14 pm »
Hi,

I don't know if i'm at the good place, but, it seems that last NB witch "class wizard" plugin works is rev 5274 one (from 2008 october 18th)

Have i to report a bug for that :?:

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: The 26 November 2008 build (5322) is out.
« Reply #20 on: November 30, 2008, 12:53:38 pm »
Hi,

I don't know if i'm at the good place, but, it seems that last NB witch "class wizard" plugin works is rev 5274 one (from 2008 october 18th)

Have i to report a bug for that :?:

Did you read this (r5297)
  • Moved class wizard menu item to "File->New->Class

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: The 26 November 2008 build (5322) is out.
« Reply #21 on: November 30, 2008, 03:13:16 pm »
When i added a search path, it's changed to:

[attachment deleted by admin]

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 26 November 2008 build (5322) is out.
« Reply #22 on: November 30, 2008, 03:47:41 pm »
When i added a search path, it's changed to:
It's as big as it should be that you can read the target's names... so... what?!
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7588
    • My Best Post
Re: The 26 November 2008 build (5322) is out.
« Reply #23 on: December 09, 2008, 02:39:17 pm »
Patch needed to compile against wxWidgets 2.8 with 2.4 compatible mode on. Tim S

See thread http://forums.codeblocks.org/index.php/topic,9444.msg68171/topicseen.html#msg68171

Code
Index: src/tools/cb_share_config/mainframe.cpp
===================================================================
--- src/tools/cb_share_config/mainframe.cpp (revision 5332)
+++ src/tools/cb_share_config/mainframe.cpp (working copy)
@@ -434,9 +434,6 @@
     wxT("Code::Blocks configuration files (*.conf)|*.conf|"
         "All files (*.*)|*.*"),                      // wildcards
     wxFD_OPEN | wxFD_FILE_MUST_EXIST                 // flags
-#if (WXWIN_COMPATIBILITY_2_4)
-    | wxFD_HIDE_READONLY
-#endif
   );
 
   return filename;
« Last Edit: December 11, 2008, 08:34:15 am by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7588
    • My Best Post
Re: The 26 November 2008 build (5322) is out.
« Reply #24 on: December 10, 2008, 08:25:05 am »

Regressions/Confirmed/Annoying/Common bugs:

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


This bug seems to be fixed in the 2.8 Branch SVN number 57223

Note: This 2.8 Branch revealed an issue in Code::Blocks

The line "wxFile f(name, wxFile::write);" is not checked afterwards for a valid value of "f". I added code below as a temp work around, but it is not well written code; an better coder needs to fix this bug.

Code
Index: src/sdk/filemanager.cpp
===================================================================
--- src/sdk/filemanager.cpp (revision 5333)
+++ src/sdk/filemanager.cpp (working copy)
@@ -336,7 +336,7 @@
         }
 
         wxFile f(name, wxFile::write);
-        if ( !f.IsOpened() )
+        if ( !f.Access(name, wxFile::write) || !f.IsOpened() )
         {
             return false;
         }

Tim S
« Last Edit: December 15, 2008, 02:59:57 am by stahta01 »
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline dje

  • Lives here!
  • ****
  • Posts: 683
Re: The 26 November 2008 build (5322) is out.
« Reply #25 on: December 10, 2008, 10:31:35 pm »
H!

Each time I try to disale the ToDo plugin, I have a crash.
Does anyone confirm this ?
Windows XP SP2, SVN5322

Dje

Offline Wavesonics

  • Multiple posting newcomer
  • *
  • Posts: 43
Re: The 26 November 2008 build (5322) is out.
« Reply #26 on: December 15, 2008, 04:51:17 pm »
Has anyone noticed this bug:

When using the symbol browser for a project, it seems like the entire program loses focus, and I have to switch to some other running program and then back to C::B for it to become interactive again.

It might not *just* be when using the symbol browser, but thats when I've noticed it so far.

Also, another small one, when using the symbol browser, when you click on a symbol to jump to it, it jumps to it just fine, but it scrolls the symbol browsers all the way to the bottom, kinda annoying.

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5913
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: The 26 November 2008 build (5322) is out.
« Reply #27 on: December 19, 2008, 05:57:15 am »
Has anyone noticed this bug:

When using the symbol browser for a project, it seems like the entire program loses focus, and I have to switch to some other running program and then back to C::B for it to become interactive again.

It might not *just* be when using the symbol browser, but thats when I've noticed it so far.

Also, another small one, when using the symbol browser, when you click on a symbol to jump to it, it jumps to it just fine, but it scrolls the symbol browsers all the way to the bottom, kinda annoying.
I haven't got the problem you stated. I'm using this nightly build and Windows XP.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

Offline Loaden

  • Lives here!
  • ****
  • Posts: 1014
Re: The 26 November 2008 build (5322) is out.
« Reply #28 on: December 19, 2008, 10:09:51 am »
Quote
||note: obsolete option -I- used, please use -iquote instead|
This is a BUG? all info in the pictures.
svn build rev 5338 (2008-12-17T06:04:25.033374Z) gcc 4.3.2 Windows/unicode
OS: Windows SP3.



[attachment deleted by admin]

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 26 November 2008 build (5322) is out.
« Reply #29 on: December 19, 2008, 02:52:36 pm »
Code
Index: src/sdk/filemanager.cpp
===================================================================
--- src/sdk/filemanager.cpp (revision 5333)
+++ src/sdk/filemanager.cpp (working copy)
@@ -336,7 +336,7 @@
         }
 
         wxFile f(name, wxFile::write);
-        if ( !f.IsOpened() )
+        if ( !f.Access(name, wxFile::write) || !f.IsOpened() )
         {
             return false;
         }
I don't see any problem with the old code. If the file cannot be opened that way using the constructor f.IsOpened() will return false...?! Can you give more details, please?

Edit:
Would this be better:
Code
        wxFile f;
        if (!f.Open(name, wxFile::write))
            return false;
???
And if so: Why?
« Last Edit: December 19, 2008, 02:57:08 pm by MortenMacFly »
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ