You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Edit: After #94 the format has changed again. The rest of comment has been updated to address this.
There are two new changes regarding the format of configurations for the file module. One is that all keys in configFile, dataFile and file require the value property, meaning, for example. what before was:
This also means that if you don't have to escape periods anymore, they can just be left as is, but if you for some reason need / in your groups, you can escape this by part1\\/part2\\/part3, which will translate to a group named part1/part2/part3 (not that there should be any reason to have / in your groups for kde plasma config-files anyway).
The text was updated successfully, but these errors were encountered:
Thanks to #144 by @quentinmit you now can skip the .value part of the key if you don't want to tweak immutability or persistence or other attributes. In other words
I also said in another issue that I would step aside from the project due to switching distros, but that probably won't happen anyway as I did find out:
An OK solution to my software needs (for development)
Other distros are hardly good options for my needs as well
In other words I'll continue to be involved in the project in the future :)
I'll close this now since this isn't all that relevant anymore with the latest addition.
Edit: After #94 the format has changed again. The rest of comment has been updated to address this.
There are two new changes regarding the format of configurations for the
file
module. One is that all keys inconfigFile
,dataFile
andfile
require thevalue
property, meaning, for example. what before was:now must be:
We also had to remove the recursive attribute config format (even though it was newly introduced), because it had some limitations with extensibility.
The other difference is that the new delimiter for nested groups is
/
, which was changed from.
. This means that where you before had:you now will have to use:
This also means that if you don't have to escape periods anymore, they can just be left as is, but if you for some reason need
/
in your groups, you can escape this bypart1\\/part2\\/part3
, which will translate to a group namedpart1/part2/part3
(not that there should be any reason to have/
in your groups for kde plasma config-files anyway).The text was updated successfully, but these errors were encountered: