Skip to content

Commit ea89668

Browse files
Hide Brain Quest and segment popup, clarify streak includes completions
- Remove Brain Quest from default toolbar (still available in settings) - Hide AnnotationPanel (segment popup) — users pick cells from Cell Library - Streak already counts all activity (edits + completions); fix comments Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent a950f18 commit ea89668

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/ExtensionBar.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ const toolbarDefs = computed<ToolbarIcon[]>(() => [
116116
{ id: 'settings', emoji: '⚙️', label: 'Profile Settings', action: () => { showSettings.value = true; } },
117117
]);
118118
119-
const DEFAULT_TOOLBAR_ORDER = ['split', 'merge', 'recap', 'leaderboard', 'quest', 'cells', 'batch', 'help', 'feed', 'chat', 'settings'];
119+
const DEFAULT_TOOLBAR_ORDER = ['split', 'merge', 'recap', 'leaderboard', 'cells', 'batch', 'help', 'feed', 'chat', 'settings'];
120120
121121
const visibleToolbar = computed(() => {
122122
const prefs = useUserPreferencesStore().prefs;
@@ -161,7 +161,7 @@ function activateTool(toolType: 'multicut' | 'merge') {
161161

162162
<template>
163163
<login-modal />
164-
<annotation-panel />
164+
<!-- <annotation-panel /> --> <!-- Hidden: users pick cells from Cell Library instead -->
165165
<achievement-toast />
166166
<command-palette
167167
ref="cmdPalette"

src/store.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ export interface UserStats {
406406
editsThisMonth: number;
407407
mergesThisMonth: number;
408408
splitsThisMonth: number;
409-
// Streak — consecutive calendar days with ≥1 edit (merge OR split counts)
409+
// Streak — consecutive calendar days with ≥1 activity (edits or cell completions)
410410
currentStreak: number;
411411
longestStreak: number;
412412
lastEditDate: string; // ISO date string e.g. "2026-03-01"
@@ -1821,7 +1821,7 @@ export const useProofreadingBackendStore = defineStore('proofreadingBackend', ()
18211821
updates.cells_completed = (row.cells_completed || 0) + 1;
18221822
}
18231823

1824-
// Calculate streak: consecutive calendar days with edits
1824+
// Calculate streak: consecutive calendar days with any activity (edits or completions)
18251825
const lastDate = row.last_edit_date;
18261826
let streak = row.current_streak || 0;
18271827
let longest = row.longest_streak || 0;

0 commit comments

Comments
 (0)