Author Topic: The 12 September 2007 build (4466) is out.  (Read 29683 times)

NobodyImportant

  • Guest
Re: The 12 September 2007 build (4466) is out.
« Reply #15 on: September 13, 2007, 07:31:17 pm »
Diabling the Code Snippets plugin crashes CB.

Win XP/sp2 with build 4466 & previous versions.

I'm trying to speed up CodeBlocks' load time by disabling useless plugins via the plugin manager, but everytime I disable it, it crashes codeblocks and XP asks me if I want to send a crash report.

I'm not using CodeSnippets, so it shouldn't be running or doing anything.  Nor is it visible.

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 12 September 2007 build (4466) is out.
« Reply #16 on: September 13, 2007, 07:40:02 pm »
Diabling the Code Snippets plugin crashes CB.
This is a known bug. The plugin references an invalid (config) pointer if you disable it.
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 JGM

  • Lives here!
  • ****
  • Posts: 518
  • Got to practice :)
Re: The 12 September 2007 build (4466) is out.
« Reply #17 on: September 13, 2007, 09:43:14 pm »
Diabling the Code Snippets plugin crashes CB.

Win XP/sp2 with build 4466 & previous versions.

I'm trying to speed up CodeBlocks' load time by disabling useless plugins via the plugin manager, but everytime I disable it, it crashes codeblocks and XP asks me if I want to send a crash report.

I'm not using CodeSnippets, so it shouldn't be running or doing anything.  Nor is it visible.


try deleting the plugin dll files and zip files.

GNU_master

  • Guest
Re: The 12 September 2007 build (4466) is out.
« Reply #18 on: September 14, 2007, 06:15:32 am »
Does the following links work? I try to open them to download but got a "
Code: server_response_reset
 The server response could not be read because of an error" error message.

http://prdownload.berlios.de/codeblocks/wxmsw28u_gcc_cb_wx284.7z
http://prdownload.berlios.de/codeblocks/mingwm10.7z
http://prdownload.berlios.de/codeblocks/CB_20070912_rev4466_win32.7z

thanks.
Best Regards.

Offline Ceniza

  • Developer
  • Lives here!
  • *****
  • Posts: 1441
    • CenizaSOFT
Re: The 12 September 2007 build (4466) is out.
« Reply #19 on: September 14, 2007, 06:43:45 am »
BeliOS is down... again. You'll have to continue trying till it's up or till somebody provide another link.

Offline BrianSidebotham

  • Multiple posting newcomer
  • *
  • Posts: 45
Re: The 12 September 2007 build (4466) is out.
« Reply #20 on: September 14, 2007, 02:13:05 pm »
Hi guys,

Using Rev 4466

The Help File settings under the Settings->Environment dialog only take effect when I close and then restart c::b

Every time the Help File settings under the Settings->Environment dialog are edited I get a new menu option View->Man Pages Viewer (So I end up with multiple copies of the same menu item)

The following section of a man page doesn't render correctly in the man pages viewer:
Code
.nf
({                                                         \
    uint8_t value = (uint8_t)(~(lock_bits));               \
    __asm__ __volatile__                                   \
    (                                                      \
        'ldi r30, 1\n\t'                                   \
        'ldi r31, 0\n\t'                                   \
        'mov r0, %2\n\t'                                   \
        'sts %0, %1\n\t'                                   \
        'spm\n\t'                                          \
        :                                                  \
        : 'i' (_SFR_MEM_ADDR(__SPM_REG)),                  \
          'r' ((uint8_t)__BOOT_LOCK_BITS_SET),             \
          'r' (value)                                      \
        : 'r0', 'r30', 'r31'                               \
    );                                                     \
})
.fi

This comes out as a blank section. All I see of it is the start ({

The man page viewer has quite a large font. Is is possible to get this adjustable, or at least use a fixed-width font of a smaller size?

I can see this is currently being worked on, so disregard my post if this is already known, but I figured some feedback is better than none. At least you know someone is trying to use it!

P.S. Everything else is really going well, thanks for all the effort you put into the software, don't want you to think I am just moaning on! ;)


Offline jsibarani

  • Multiple posting newcomer
  • *
  • Posts: 31
Re: The 12 September 2007 build (4466) is out.
« Reply #21 on: September 14, 2007, 02:36:34 pm »
Hi,

CB crashed after i added files recursively to my project.

I attached codeblocks.RPT.

I'm using WinXP Pro SP2

Thanks



[attachment deleted by admin]

Offline Ceniza

  • Developer
  • Lives here!
  • *****
  • Posts: 1441
    • CenizaSOFT
Re: The 12 September 2007 build (4466) is out.
« Reply #22 on: September 14, 2007, 08:40:27 pm »
Quote from: BrianSidebotham
The Help File settings under the Settings->Environment dialog only take effect when I close and then restart c::b

Could you be a bit more specific?

On attach, the plugin concatenates all the man pages entries and sets all those entries as default directories. This is helpful if you want to search something when you just started the application. At this point, the only way to change those directories in the viewer is to search something using an entry of the help menu or the "locate in" submenu in the context menu you get when you right click on the editor (it must be a man: entry in this case). All subsequent searches will use the last set of directories established by that entry.

Quote from: BrianSidebotham
Every time the Help File settings under the Settings->Environment dialog are edited I get a new menu option View->Man Pages Viewer (So I end up with multiple copies of the same menu item)

You just found a bug! It's fixed in my local copy now, and I'll commit it in a few minutes.

Quote from: BrianSidebotham
The following section of a man page doesn't render correctly in the man pages viewer:
Code
.nf
({                                                         \
    uint8_t value = (uint8_t)(~(lock_bits));               \
    __asm__ __volatile__                                   \
    (                                                      \
        'ldi r30, 1\n\t'                                   \
        'ldi r31, 0\n\t'                                   \
        'mov r0, %2\n\t'                                   \
        'sts %0, %1\n\t'                                   \
        'spm\n\t'                                          \
        :                                                  \
        : 'i' (_SFR_MEM_ADDR(__SPM_REG)),                  \
          'r' ((uint8_t)__BOOT_LOCK_BITS_SET),             \
          'r' (value)                                      \
        : 'r0', 'r30', 'r31'                               \
    );                                                     \
})
.fi

This comes out as a blank section. All I see of it is the start ({

Now that's difficult to fix because I didn't write the man2html source (it was taken from the KDE 4 repository). I could give it a try, but I can't promise you anything.

Quote from: BrianSidebotham
The man page viewer has quite a large font. Is is possible to get this adjustable, or at least use a fixed-width font of a smaller size?

Working on that...

Quote from: BrianSidebotham
I can see this is currently being worked on, so disregard my post if this is already known, but I figured some feedback is better than none. At least you know someone is trying to use it!

P.S. Everything else is really going well, thanks for all the effort you put into the software, don't want you to think I am just moaning on! ;)

Thanks.

P.S.: You should have created another thread for this.

Xerox

  • Guest
Re: The 12 September 2007 build (4466) is out.
« Reply #23 on: September 15, 2007, 02:03:28 pm »
hello,
I've got a problem with this version.

I'm running on kubuntu 7.10 amd64.
when I start codeblocks from konsole it says:
Code
(codeblocks:8624): Gtk-CRITICAL **: gtk_window_realize_icon: assertion `info->icon_pixmap == NULL' failed

and actually, the codeblocks windows is empty....

I was running on svn 3964 before I did the upgrade.
before unpacking the codeblocks .deb I installed libcodeblocks and libwxsmith that are provided by the tar archive....

what shall I do? have I done anything wrongly?

(sorry for bad english  :?)

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 12 September 2007 build (4466) is out.
« Reply #24 on: September 15, 2007, 04:34:13 pm »
what shall I do? have I done anything wrongly?
Yes. You haven't searched the forum. This question has been answered a million times. Hence I'll give you a hint anyway: Use wx284. For details -> search the forum.
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

Xerox

  • Guest
Re: The 12 September 2007 build (4466) is out.
« Reply #25 on: September 15, 2007, 06:25:57 pm »
thank you, and sorry  :? :(

I've worked out where to find the newest version of libwxwidget but not in this forum... How to find such a problem with the search function of the forum??

how it runs perfectly...

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: The 12 September 2007 build (4466) is out.
« Reply #26 on: September 15, 2007, 06:40:05 pm »
How to find such a problem with the search function of the forum??
- Goto "search" -> in the menu on top of the forum
- Place e.g. "assertion `info->icon_pixmap == NULL' failed" in the "search for" textbox
- Hit "Search".
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

Xerox

  • Guest
Re: The 12 September 2007 build (4466) is out.
« Reply #27 on: September 15, 2007, 09:32:59 pm »
I know! and so I did!

but I didn't find antything this way....

however, problem is ok now....