- Updated package.json to include the UCS.csv file under the 'data' directory instead of the root.

- Modified MainApp.ts to resolve the path for UCS.csv from the 'data' directory.
- Deleted the unused test.wav file to clean up the repository.
This commit is contained in:
2025-11-11 11:01:43 +11:00
parent d0f7b0fe18
commit e9c679dfaf
5 changed files with 12 additions and 22 deletions

View File

@@ -41,7 +41,7 @@ export class MainApp {
this.searchService
);
const catalogPath = this.resolveResourcePath('UCS.csv');
const catalogPath = this.resolveResourcePath(path.join('data', 'UCS.csv'));
await this.libraryService.ensureCategoriesLoaded(catalogPath);
await this.libraryService.scanLibrary();