I’ve solved it!!! The system presets are stored in the PL8 app bundle…
If you go into one of the system RGB presets, you will get something like this…
Preset = {
Version = "12.0",
IsRAWOnly = false,
LocalizedInfo = {
en = {
DisplayName = "Light Contrast (RGB)",
},
fr = {
DisplayName = "Contraste léger (RVB)",
},
ja = {
DisplayName = "弱コントラスト (RGB)",
},
de = {
DisplayName = "Schwacher Kontrast (RGB)",
},
zh = {
DisplayName = "轻微对比度 (RGB)",
},
},
Settings = {
Version = "19.5",
Base = {
ToneCurveActive = true,
ToneCurveRedGamma = 1,
ToneCurveRedPoints = {
0,
0,
1,
1,
},
ToneCurveGreenGamma = 1,
ToneCurveGreenPoints = {
0,
0,
1,
1,
},
ToneCurveBlueGamma = 1,
ToneCurveBluePoints = {
0,
0,
1,
1,
},
ToneCurveMasterGamma = 1,
ToneCurveMasterPoints = {
0,
0,
0.255,
0.19499999999999998,
0.625,
0.635,
1,
1,
},
},
},
}
The important thing is the Settings version number, which is 19.5
Now, if you go into one of the Luma presets, you will get something like this…
Preset = {
Version = "12.0",
IsRAWOnly = false,
IsSystem = true,
LocalizedInfo = {
en = {
DisplayName = "Light Contrast (Luma)",
},
fr = {
DisplayName = "Contraste léger (Luma)",
},
ja = {
DisplayName = "弱コントラスト(Luma)",
},
de = {
DisplayName = "Schwacher Kontrast (Luma)",
},
zh = {
DisplayName = "轻微对比度 (Luma)",
},
},
Settings = {
Version = "19.0",
Base = {
ToneCurveActive = true,
ToneCurveLuminancePoints = {
0,
0,
0.24000000000000002,
0.21499999999999997,
0.74,
0.78,
1,
1,
},
ToneCurveLuminanceGamma = 1,
},
},
}
Note that, in the Luma version, the Settings version number is only 19.0.
If you change this to 19.5, all should be well.
After further inspection, you might like to check the version number on all the system presets. I found some of the RGB also had 19.0. So, I changed them all, just in case.