Author Topic: HELP...nightly build configuration settings  (Read 3817 times)

Offline C_Lou_Month

  • Single posting newcomer
  • *
  • Posts: 3
HELP...nightly build configuration settings
« on: October 18, 2017, 02:47:44 am »
i am actually trying to have dark theme IDE similar to somehow sublime look and feel. the thing is, i really dont know how to set it up. i thought nightly build version has provide it with all sets up. so my question is
1. where can i find the guide tutorial on setting up sublime look and feel IDE?
2. is there any nightly editor settings configuration that i can use for my codeblocks IDE? i am too lazy to figure it out myself...please apologize.
3. does codeblocks v 16.01 is the final release, is it under development or codeblocks is not planning for any release anymore??if it does, will codeblocks release any newer version in this near future??

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7588
    • My Best Post
Re: HELP...nightly build configuration settings
« Reply #1 on: October 18, 2017, 02:59:00 am »
3. does codeblocks v 16.01 is the final release, is it under development or codeblocks is not planning for any release anymore??if it does, will codeblocks release any newer version in this near future??

The are "nightly" releases about every other month.

The is a major release about every 2 to 3 years.

Tim S.

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 C_Lou_Month

  • Single posting newcomer
  • *
  • Posts: 3
Re: HELP...nightly build configuration settings
« Reply #2 on: October 18, 2017, 03:06:12 am »
Quote
The are "nightly" releases about every other month.

The is a major release about every 2 to 3 years.

ok..
so how should i work on the editor IDE??is there any dark themes for codeblocks IDE that i can use??i cannot understand the point of nightly build....
« Last Edit: October 18, 2017, 03:07:45 am by siluman balita »

Offline sodev

  • Regular
  • ***
  • Posts: 497
Re: HELP...nightly build configuration settings
« Reply #3 on: October 18, 2017, 04:00:43 am »
Lol 8). A nightly has nothing to do with the visual appearance of the program, nightlies are binaries that are build automatically and regular from the current source code, usually during the night to grab a more stable snapshot because people usually dont work then :).

I cannot fully remember the steps, but at least under linux, if you set a dark system scheme CodeBlocks should grab the system colors automatically. Probably the editor wouldnt pick them up, not sure if there is a dark scheme setting somewhere in the color or editor settings. I remember i had to adjust some colors because they didnt work great, maybe i also switched the main background and text color :).

Offline C_Lou_Month

  • Single posting newcomer
  • *
  • Posts: 3
Re: HELP...nightly build configuration settings
« Reply #4 on: October 18, 2017, 04:44:07 am »
Quote
Lol 8). A nightly has nothing to do with the visual appearance of the program, nightlies are binaries that are build automatically and regular from the current source code, usually during the night to grab a more stable snapshot because people usually dont work then :).

 ;D lol...how funny it is...i thought it was the customize build version of codeblocks, because i had preview the latest build and i dont find what i looking for...lol

i hope this feature would be available for the future release..

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7588
    • My Best Post
Re: HELP...nightly build configuration settings
« Reply #5 on: October 18, 2017, 06:51:44 am »
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 oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: HELP...nightly build configuration settings
« Reply #6 on: October 18, 2017, 08:56:58 am »
if it does, will codeblocks release any newer version in this near future??
Yes it will, but it still won't include a dark theme.
To make one go to settings -> editor -> syntax highlight and make one.
(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 BlueHazzard

  • Developer
  • Lives here!
  • *****
  • Posts: 3353
Re: HELP...nightly build configuration settings
« Reply #7 on: October 18, 2017, 12:57:38 pm »
Quote
Yes it will, but it still won't include a dark theme.
why not? There are plenty on the wiki page and they are quite hard to import for the user. Why not ship them witch codeblocks?

Offline sodev

  • Regular
  • ***
  • Posts: 497
Re: HELP...nightly build configuration settings
« Reply #8 on: October 18, 2017, 08:30:04 pm »
Well, i made the following changes to get a nice dark scheme for CodeBlocks under CentOS with Mate and the BlackMATE system scheme:
Code
Settings -> Environment -> Colours:
- Editor : Caret -> #FFFFFF
- Editor : Margin chrome colour -> #A6A6A6
- Editor : Margin chrome highlight colour -> #A6A6A6
- Logs : Success text -> #004CFF
- Logs : Warning text -> #004CFF
- Project Tree : Not-compiled files (headers/resources) -> #000000
- Start here page : Link colour -> #004CFF

Settings -> Editor -> Syntax highlighting
- New scheme based on default: invert
- Default:
  - Foreground: #FFFFFF
  - Background: #171717
- Keyword:
  - Foreground: #004CFF
- String:
  - Foreground: #00AAFF
- String (inactive):
  - Foreground: #BEEAFF
- UUID:
  - Foreground: #FFFFFF
- Selection:
  - Background: #666666
- Active line:
  - Background: #54ACFF

Settings -> Editor -> Margins and Caret
- Caret Width: 2

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: HELP...nightly build configuration settings
« Reply #9 on: October 18, 2017, 09:04:53 pm »
why not? There are plenty on the wiki page and they are quite hard to import for the user. Why not ship them witch codeblocks?
Because the license for these is not clear. The wiki page has been delete once because the first contributor didn't like something (don't remember what now).
And more importantly they are not full. Someone has to go through all languages and make the theme work for them.
I see no one doing the work, so the themes are not included.

I have a plan to add support for importing notepad++, geany, codelite, eclipse and so on themes to cb_share_config, but this is very low priority at the moment.
If someone is willing to do the work, I'll be happy to review it...
(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!]