Add "Tools" tab with chart issue scanner

This commit is contained in:
Geomitron
2024-12-22 18:35:43 -06:00
parent d2e40b7c24
commit a7113384e8
15 changed files with 866 additions and 13 deletions

View File

@@ -61,6 +61,20 @@ export class SettingsService {
this.settings.libraryPath = value
this.saveSettings()
}
get issueScanDirectory() {
return this.settings.issueScanPath
}
set issueScanDirectory(value: string | undefined) {
this.settings.issueScanPath = value
this.saveSettings()
}
get spreadsheetOutputDirectory() {
return this.settings.spreadsheetOutputPath
}
set spreadsheetOutputDirectory(value: string | undefined) {
this.settings.spreadsheetOutputPath = value
this.saveSettings()
}
get chartFolderName() {
return this.settings.chartFolderName
}