Re: PureBasic 5.72 LTS is out !
Posted: Thu Apr 02, 2020 6:19 am
@PB-Team: thanks a lot!
http://www.purebasic.com
https://www.purebasic.fr/english/
I just updated the PureBasic.com News page (english + german) regarding PB5.72purenet wrote:It could help to get new users if update the website about the new version:
https://www.purebasic.com/news.php
NicePure Programming wrote:I've made a video on the new features of the PB editor. Check it out at https://www.youtube.com/watch?v=v7-ax5sjB_s
Thanks , your YouTube Channel/Videos will help increase PureBasic sales + popularityPure Programming wrote:I've made a video on the new features of the PB editor.
Check it out at https://www.youtube.com/watch?v=v7-ax5sjB_s
Very nice! Thank you Pure Programming!Pure Programming wrote:I've made a video on the new features of the PB editor. Check it out at https://www.youtube.com/watch?v=v7-ax5sjB_s
I've finally started using 5.72 on MacOS and this color change surprised me toowayne-c wrote:The document tabs that belong to a project are now in a very aggressive blue - can this be disabled somewhere? or at least set the tab's text color to white? (PB 5.72 LTS Beta 1 (x64) macOS)
That's because of me and this pull request. Tabs background follows "Accent color" from system settings, but since it's a totally custom control, it's not 100% similar to native macOS tabs. I'll try to soften it up a bit.kenmo wrote:I've finally started using 5.72 on MacOS and this color change surprised me toowayne-c wrote:The document tabs that belong to a project are now in a very aggressive blue - can this be disabled somewhere? or at least set the tab's text color to white? (PB 5.72 LTS Beta 1 (x64) macOS)
I should say, I don't mind the colorTabs background follows "Accent color" from system settings, but since it's a totally custom control, it's not 100% similar to native macOS tabs. I'll try to soften it up a bit.
Code: Select all
Brightness = (Red + Green + Blue) / 3
Code: Select all
Brightness = (Red * 0.3 + Green * 0.59 + Blue * 0.11)
Unfortunately, nokenmo wrote:Does MacOS provide an "AccentTextColor" or similar to complement the AccentColor background?
macOS actually just uses white color for accented controls, it doesn't even depend on dark mode, i wonder if we can just use selectedMenuItemTextColor which is available on all versions and always (?) defaults to pure white.kenmo wrote:If not, maybe the IDE could select Black or White text depending on the brightness of AccentColor?