diff --git a/src/console/progressBar.ts b/src/console/progressBar.ts index 0ffd00f5a..2274cd5c6 100644 --- a/src/console/progressBar.ts +++ b/src/console/progressBar.ts @@ -16,11 +16,14 @@ export const ProgressBarSymbol = { SEARCHING: chalk.magenta(process.platform === 'win32' ? '○' : '↻'), HASHING: chalk.magenta('#'), INDEXING: chalk.magenta('#'), - // DATs & candidates + // DATs + GROUPING_SIMILAR: chalk.cyan('∩'), MERGE_SPLIT: chalk.cyan('↔'), + // Candidates GENERATING: chalk.cyan('Σ'), FILTERING: chalk.cyan('∆'), VALIDATING: chalk.cyan(process.platform === 'win32' ? '?' : '≟'), + COMBINING_ALL: chalk.cyan(process.platform === 'win32' ? 'U' : '∪'), WRITING: chalk.yellow(process.platform === 'win32' ? '»' : '✎'), RECYCLING: chalk.blue(process.platform === 'win32' ? '≠' : '♻'), DELETING: chalk.red(process.platform === 'win32' ? 'X' : '✕'), diff --git a/src/modules/candidateCombiner.ts b/src/modules/candidateCombiner.ts index 919748d5c..7bc8af0a6 100644 --- a/src/modules/candidateCombiner.ts +++ b/src/modules/candidateCombiner.ts @@ -43,7 +43,7 @@ export default class CandidateCombiner extends Module { return parentsToCandidates; } - await this.progressBar.setSymbol(ProgressBarSymbol.GENERATING); + await this.progressBar.setSymbol(ProgressBarSymbol.COMBINING_ALL); await this.progressBar.reset(parentsToCandidates.size); const game = CandidateCombiner.buildGame(dat, parentsToCandidates); diff --git a/src/modules/datParentInferrer.ts b/src/modules/datParentInferrer.ts index 8295c0bca..fbf8359d2 100644 --- a/src/modules/datParentInferrer.ts +++ b/src/modules/datParentInferrer.ts @@ -31,7 +31,7 @@ export default class DATParentInferrer extends Module { return dat; } - await this.progressBar.setSymbol(ProgressBarSymbol.GENERATING); + await this.progressBar.setSymbol(ProgressBarSymbol.GROUPING_SIMILAR); await this.progressBar.reset(dat.getGames().length); // Group games by their stripped names