@caupulican/pi-adaptative 0.80.67 → 0.80.68

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1217,6 +1217,20 @@ export class SettingsManager {
1217
1217
  this.markModified("theme");
1218
1218
  this.save();
1219
1219
  }
1220
+ /** The configured resource catalog directory, if any (round resource management). */
1221
+ getCatalogDir() {
1222
+ return this.settings.catalogDir;
1223
+ }
1224
+ setCatalogDir(dir) {
1225
+ if (dir) {
1226
+ this.globalSettings.catalogDir = dir;
1227
+ }
1228
+ else {
1229
+ delete this.globalSettings.catalogDir;
1230
+ }
1231
+ this.markModified("catalogDir");
1232
+ this.save();
1233
+ }
1220
1234
  getDefaultThinkingLevel() {
1221
1235
  return this.settings.defaultThinkingLevel;
1222
1236
  }