Replies: 6 comments 16 replies
-
Extra info: There is only one reference to this file in the .jucer file
In VS2019, I checked the Properties. Maybe that the question is thus: how is this file taken into account? how come the changes are not taken? I thought it was due to the Ctrlr app temp folder. |
Beta Was this translation helpful? Give feedback.
-
It won't help you a lot Goodweather but I can't reproduce the problem in my repository of version 5.6.23. The typo was there and I changed it to what it should be. Just to be sure, I saved it all, closed Visual Studio, saved the project in the Projucer, and reopened the project. Did a rebuild. The typo didn't come back. That's on Windows, Visual Studio 2019, Ctrlr version 5.6.23 from April, 8th, 2021. |
Beta Was this translation helpful? Give feedback.
-
Amazing... Saving in Projucer then opening VS from Projucer made the trick. |
Beta Was this translation helpful? Give feedback.
-
@dobo365 @bijlevel @Ted-juh I'm really curious about how long does it take to buid Ctrlr with your computer? |
Beta Was this translation helpful? Give feedback.
-
Edit: I forgot to add the specs of my PC: Building the Ctrlr_SharedCode after cleaning takes about 42 seconds. Depending on the changes I made in several files, without cleaning, building the SharedCode takes about 10 to 20 seconds. From Stackoverflow: [Rebuild solution] Will clean and then build the solution from scratch, ignoring anything it's done before. The difference between this and "Clean, followed by Build" is that Rebuild will clean-then-build each project, one at a time, rather than cleaning all and then building all. [Clean solution] Will remove the build artifacts from the previous build. If there are any other files in the build target directories (bin and obj) they may not be removed, but actual build artifacts are. I've seen behavior for this vary - sometimes deleting fairly thoroughly and sometimes not - but I'll give VS the benefit of the doubt for the moment :) Back to me. Question to you guys... |
Beta Was this translation helpful? Give feedback.
-
Yes, exactly! https://docs.juce.com/master/classLookAndFeel__V4.html EDIT: currently, ctrlr has a mix of LookAndFeel_V3 with a rest of LookAndFeel_V2. All modulator components' styling is hardcoded as overrides. the best would be to unify the styling for every component and allow other default color scheme. |
Beta Was this translation helpful? Give feedback.
-
Hi, as others, I'm also looking and digging into the Ctrlr code.
I'm on Windows with VS2019.
I have the issue that the changes I'm making in the CtrlrIDs.xml file are not taken into account in my builds.
This file is in Source/Resources.
You can make a simple test to correct a typo which is there since long ;-)
The text of uiPanelBackgroundColour2 is indicating Background colour [1]
It should thus be [2]
<id name="uiPanelBackgroundColour2" text="Background colour [2]" type="Colour" />
I have done previous builds successfully.
I change the file.
To be sure, I'm doing a Clean build which is suppressing the temporary VS build files.
Then, as indicated by Sjoerd, I'm building the SharedCode then the Standalone
Starting a new panel and looking at the properties is still showing Background colour [1].
I discussed this with Damien and he told me to restart from Juce and even to restart my PC between builds.
I cannot believe this is needed (I don't want to). Would be a crazy way to do develop.
Maybe that one of you has a suggestion/idea?
You can easily reproduce this issue by just changing the text of any property and check if you see the change.
Thx in advance!
Beta Was this translation helpful? Give feedback.
All reactions