Recent Posts

Pages: [1] 2 3 4 5 6 ... 10
1
Using Code::Blocks / Re: Hiccups while typing (continuation)
« Last post by Pecan on Today at 07:22:16 pm »
OK, thanks, I have fixed an issue mentioned here: Re: The 14 June 2024 build (13529) is out.

BTW: why do you have so many custom comments in the source code, do you added manually or by some tools?
Code
// ----------------------------------------------------------------------------
void ClassBrowser::SetParser(ParserBase* parser)
// ----------------------------------------------------------------------------

They're applied by a key macro I have on my local system.
Once I can see where I'm supposed to be working, I mark it so it doesn't take so long to find it again.

Sometimes, I forget to remove the taggings.

I do it because of my eye sight. I have a terrible time seeing/differentiating code where I'm working without marking where I'm coding or debugging.

If it bothers someone, they can remove the comments or debugging tags. I'll try to do better at remembering it myself before a commit.

I forgot to do it this time because I'm working on 'stage two' of the suggested changes.
2
Using Code::Blocks / Re: Hiccups while typing (continuation)
« Last post by ollydbg on Today at 03:26:54 pm »
OK, thanks, I have fixed an issue mentioned here: Re: The 14 June 2024 build (13529) is out.

BTW: why do you have so many custom comments in the source code, do you added manually or by some tools?
Code
// ----------------------------------------------------------------------------
void ClassBrowser::SetParser(ParserBase* parser)
// ----------------------------------------------------------------------------
3
Nightly builds / Re: The 14 June 2024 build (13529) is out.
« Last post by ollydbg on Today at 01:51:04 pm »
The text in Parser::ShowGlobalChangeAnnoyingMsg() should allow translation, something like this:
Code
warningMsg = _("The global settings change does not take effect\n"
               "until the projects are either reloaded or reparsed.\n\n"
               "You can selectively reparse projects by right clicking\n"
               "on the project title in the Workspace tree and selecting\n"
               "'Reparse current project'.");

I have fixed that in the SVN now, thanks.
4
FWIW, the NassiShneiderman plugin has a dependency on the Boost library. At least in the MSYS2 environment that I use on Microsoft Windows 10  to build Code::Blocks with the NassiShneiderman plugin, the Boost library (acquired via "pacman -S --noconfirm --needed mingw-w64-ucrt-x86_64-boost-libs") will have already pulled in the ICU library (otherwise acquired via "pacman -S --noconfirm --needed mingw-w64-ucrt-x86_64-icu") as it is a dependency. Note: only use the --needed option if you know you MSYS2 environment is already otherwise up to date.
5
Nightly builds / Re: The 14 June 2024 build (13529) is out.
« Last post by Miguel Gimenez on Yesterday at 11:35:39 am »
The text in Parser::ShowGlobalChangeAnnoyingMsg() should allow translation, something like this:
Code
warningMsg = _("The global settings change does not take effect\n"
               "until the projects are either reloaded or reparsed.\n\n"
               "You can selectively reparse projects by right clicking\n"
               "on the project title in the Workspace tree and selecting\n"
               "'Reparse current project'.");
6
Nightly builds / Re: The 14 June 2024 build (13529) is out.
« Last post by Elena on February 15, 2025, 11:10:15 pm »
Hi, thanks for your support. Since at present I am not equipped to compile C::B I will surely test once the new NB binary is ready (it seems there haven't been any new NB since December btw)
7
Nightly builds / Re: The 14 June 2024 build (13529) is out.
« Last post by Pecan on February 15, 2025, 10:57:57 pm »
Hi, I hope this message will be noticed. I did not open a new topic because it is definitely related to build 13529 and over.

I also have experienced major slowdowns since b13529.
What I wanted to point out is that the culprit was indeed Browse Tracker, I disabled it and now everything is fine as before.
At the moment of writing this, current NB is 13600 and the problem is *still present*. Therefore, I simply have to keep the plugin disabled. Hope this helps.
Therefore, please consider fixing the plugin, which is causing major slowdowns since b13529

Thx

Fixed svn 13612.

The actual slowdown culprit was CodeCompletion  (CC) "Parse while typing" setting. However when the user disabled settings while a project was loaded, CC clobbered the settings back to the older condition as the project was closed.

Although the fix preserves the users settings in the .conf (global settings) the user will still have to re-parse the projects/files in order to apply the changed CodeCompletion global settings to the projects or files.

The easiest way to do that is to close and reopen the workspace or right-click on a project in the workspace tree and select 'Reparse this project'.
8
Using Code::Blocks / Re: Hiccups while typing (continuation)
« Last post by Pecan on February 15, 2025, 10:48:36 pm »
@ ollydbg

Thanks for all your help and excellent guidance.
I decided to break the changes up into two tasks.

I've committed what we have. (svn 13612) and will continue with your further suggestions.
But after I study CC some more and get more confident about your suggestions.



Thanks,
9
Using Code::Blocks / Re: Strange behavior in xterm
« Last post by perosoft on February 15, 2025, 03:56:28 pm »
Prior to archlinux, i have kubuntu.
All work with no problems.
This problem apear on arch linux
And yes, system("/usr/local/texlive/2024/bin/x86_64-linux/latex");, working.
Thank you !
10
Using Code::Blocks / Re: Strange behavior in xterm
« Last post by Михаил Агарков on February 15, 2025, 10:28:14 am »
You need to do system("/usr/local/texlive/2024/bin/x86_64-linux/latex");
instead or install latex in /usr/bin/ for it to work AFAIK.
Pages: [1] 2 3 4 5 6 ... 10