Recent Posts

Pages: 1 [2] 3 4 5 6 7 ... 10
11
General (but related to Code::Blocks) / Re: Debug "arrow" too hard to see
« Last post by Pecan on June 29, 2025, 07:23:00 pm »
When debugging, I find the arrow showing the current line really hard to spot. I've had a poke around the editor settings but can't see anything relevant... is there a way to change the arrow's colour or size?

You can highlight the current debugger line with Setting/Editor/Other Editor Settings(tab)/Highlight line under caret.
12
General (but related to Code::Blocks) / Debug "arrow" too hard to see
« Last post by JimC on June 29, 2025, 06:01:47 pm »
When debugging, I find the arrow showing the current line really hard to spot. I've had a poke around the editor settings but can't see anything relevant... is there a way to change the arrow's colour or size?
13
General (but related to Code::Blocks) / Re: download for Linux
« Last post by Bug Killer on June 28, 2025, 09:23:05 am »
Port of a recent Nightly Build for RHEL 9 and derivatives is available from my repository https://www.theox.net/codeblocks.
14
Help / Re: How do I stop Code::Blocks from opening on startup?
« Last post by stahta01 on June 27, 2025, 03:17:41 pm »
Ask on a website that supports your distro what other files to check!

Tim S.
15
Help / Re: How do I stop Code::Blocks from opening on startup?
« Last post by Cookiehead on June 27, 2025, 03:02:50 am »
I'm on 25.03 rev 13644 with wxwidgets 3.2.8.1
I did close it before starting
None of the files reference Code::Blocks in any way...
16
The website codeblocks.org doesn't open in Russia anymore likely because of the stupid Russian authority Roskomnadzor deciding to block Cloudflare traffic. I'm using Tor Browser to write this.

Here's what verbose curl says:
Code
curl -v codeblocks.org
* Host codeblocks.org:80 was resolved.
* IPv6: (none)
* IPv4: 78.46.184.98
*   Trying 78.46.184.98:80...
* Connected to codeblocks.org (78.46.184.98) port 80
> GET / HTTP/1.1
> Host: codeblocks.org
> User-Agent: curl/8.9.1
> Accept: */*
>
* Request completely sent off
^C
Code
curl -v https://codeblocks.org/
* Host codeblocks.org:443 was resolved.
* IPv6: (none)
* IPv4: 78.46.184.98
*   Trying 78.46.184.98:443...
* Connected to codeblocks.org (78.46.184.98) port 443
* schannel: disabled automatic use of client certificate
* ALPN: curl offers http/1.1
^C

Can anything be done about this? Thanks in advance.
17
General (but related to Code::Blocks) / Re: Any way to force light mode?
« Last post by blauzahn on June 26, 2025, 07:22:13 pm »
Not as a whole. But you can change colours manually. See settings|environment|colours and settings|editor|syntax highlighting.
The latter is language wise and can be saved as a named colour theme.

I use gnome with the default theme which is dark. My Code::Blocks has a bright theme like it always had without changing anything. That is: white background in editor, logs and other open views. On the Ubuntu machines and RaspberryOS I also use it is the same.

For general help see https://wiki.codeblocks.org/index.php/Main_Page.
18
General (but related to Code::Blocks) / Re: download for Linux
« Last post by cacb on June 26, 2025, 07:18:37 pm »
I notice that code::blocks doesn't have a choice for Ubuntu or many other except debian, I would love to see other popular linux distros here

I use Kubuntu and I have been using Xaviou's ppa for Ubuntu, it seems to work fine
https://forums.codeblocks.org/index.php/topic,26056.msg177387.html#msg177387

19
Help / Re: How do I stop Code::Blocks from opening on startup?
« Last post by blauzahn on June 26, 2025, 07:02:30 pm »
As far as I am aware there is nothing inside Code::Blocks for this. On my Arch Linux it does not start automatically. Please note
that I use Code::Block's trunk (as of now: svn rev 13672) with wxwidgets 3.3 trunk.

Did you close Code::Blocks before logging off the gui-session (gnome, kde or whatever) or shutting down the machine?

There are some scripts that start programs like: /etc/bash.bashrc, ~/.bashrc, /etc/cron*. I'd grep them for codeblocks.

20
Using Code::Blocks / Re: CB 25.02 - BrowseTracker crash on startup
« Last post by Pecan on June 26, 2025, 06:09:42 pm »
Compilation on MSW now fails due to missing logmanager.h. The MSW project defines NOPCH, so sdk.h will not include logmanager.h. Also, double quotes should be used for the includes.

The solution is changing the first lines of JumpTracker.cpp to
Code
#include "sdk.h" // Code::Blocks SDK
#include "configurationpanel.h"
#include "cbstyledtextctrl.h"
#include "logmanager.h"
#include "projectmanager.h"
#include "editormanager.h"
#include "cbeditor.h"

No that is a workaround; not a solution.
Correction adding "#include "logmanager.h"" is a valid solution

Tim S.

Fixed svn 13673
Thanks stahta01
Pages: 1 [2] 3 4 5 6 7 ... 10