Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/renderer/src/components/pro/proCatalog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,11 @@ export const PRO_FEATURES: ProFeature[] = [
'Focus vs. distraction trends',
'All computed locally — never uploaded'
],
platforms: ['darwin']
// Ported to Windows: Reflect adds no capture of its own — it is pure aggregation
// over observations the capture pipeline already writes, which Replay's port put
// on Windows. The whole path (crm/reflect.ts, its IPC, ReflectScreen) carries no
// platform-native code and reaches SQLite through the same getDB core uses.
platforms: ['darwin', 'win32']
},
{
route: 'replay',
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/lib/__tests__/proCatalog.lookup.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const winPorted = (route: string): ProFeature => ({
// asserted against the catalog so a flipped `platforms` and this list can't drift.
// Module-scoped because both the featureSupportsPlatform and proFeatureComingSoon
// describes read it — the gate and the capability check must agree on one list.
const WIN_PORTED = new Set(['vault', 'clipboard', 'replay'])
const WIN_PORTED = new Set(['vault', 'clipboard', 'replay', 'reflect'])

describe('getProFeature', () => {
it('returns the matching feature for a known route', () => {
Expand Down
Loading