Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workspace Trust API to support newer VS Code Git plugins #10472

Closed
martin-fleck-at opened this issue Nov 26, 2021 · 1 comment
Closed

Workspace Trust API to support newer VS Code Git plugins #10472

martin-fleck-at opened this issue Nov 26, 2021 · 1 comment
Labels
vscode issues related to VSCode compatibility

Comments

@martin-fleck-at
Copy link
Contributor

When creating an electron application with the latest VS Code built-in Git plugins:

  "theiaPlugins": {
    "vscode-builtin-git": "https://open-vsx.org/api/vscode/git/1.62.3/file/vscode.git-1.62.3.vsix",
    "vscode-builtin-github": "https://open-vsx.org/api/vscode/github/1.62.3/file/vscode.github-1.62.3.vsix",
    "vscode-builtin-github-authentication": "https://open-vsx.org/api/vscode/github-authentication/1.62.3/file/vscode.github-authentication-1.62.3.vsix",
    ...
  }

I get the following error while trying to add a remote repository with Source Control View > Remote > Add Remote...:

git_repositories

I believe the reason for that is that the Git plugin uses some API that Theia does not provide: Trusted workspace API:

// Don't allow auto-fetch in untrusted workspaces
if (workspace.isTrusted) {
   this.disposables.push(new AutoFetcher(this, globalState));
} else {
   const trustDisposable = workspace.onDidGrantWorkspaceTrust(() => {
      trustDisposable.dispose();
      this.disposables.push(new AutoFetcher(this, globalState));
   });
   this.disposables.push(trustDisposable);
}

https://github.com/microsoft/vscode/blob/bfad20be9d75fa83c1d3e31fb6aefbca71aeaddc/extensions/git/src/repository.ts#L942

From what I can see, the isTrusted is false and the onDidGrantWorkspaceTrust does not exist causing the error.

Feature Description:

Implement (a very light-weight version of) the Workspace Trust API:

  • At least provide the isTrusted flag to plugins
  • Support the onDidGrantWorkspaceTrust event to which plugins might be registered
  • Add a dialog to query the user about workspace trust to fire the event based on the users answer

The full functionality is described in https://code.visualstudio.com/docs/editor/workspace-trust

@vince-fugnitto vince-fugnitto added the vscode issues related to VSCode compatibility label Nov 26, 2021
@marcdumais-work
Copy link
Contributor

This should work now, thanks to #10473

ryderwishart added a commit to genesis-ai-dev/codex-editor that referenced this issue Nov 22, 2024
ryderwishart added a commit to genesis-ai-dev/codex-editor that referenced this issue Dec 18, 2024
commit 73fec2732f345a7e554a77de4843cf23c52b1033
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:15:03 2024 -0700

    Bump to 0.1.2

commit 149ae03acd66cbb5c44dd4b677a1008449a08b19
Merge: a100f37 cc3ca77
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:14:14 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit a100f3721244b496920a4feb76219d654441b421
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:03:35 2024 -0700

    Update version to 0.1.2 and enhance API key description; comment out unused state store update logic in inlineCompletionsProvider.ts

commit 2d418dd4fdadc2d9f2f0a4787f330d5b925fbfc0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 16:52:18 2024 -0700

    Use custom auth-defined llm endpoint if available

commit cc3ca7790434775194d427eb8e4084a4c0b1376b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 16:43:52 2024 -0500

    Refactor llmCompletion function: Remove early return for no similar source cells and fix comment formatting for clarity.

commit a24e2662a40ca48dba22781b64ef92b9b27bf73a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 15:57:04 2024 -0500

    Ensure chat threads file check only occurs if workspace folders are present in CustomWebviewProvider constructor

commit 0b06069d3fb234b41d72bdc89acd1e4d630f815b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:44 2024 -0500

    Update version to 0.1.1 in package.json for release

commit 84a6dd188903220a4b5c7023dd45870074479dca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:18 2024 -0500

    Enhance password validation logic in LoginRegisterStep component to ensure confirmation check only occurs during registration.

commit b5eedbb49a97af2d8eb7bc54d3ddc991faa0195a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:26:59 2024 -0500

    Update version to 0.1.0 in package.json for release preparation

commit 02fcdcdcfb599d6e2daee93ea270240110d81b74
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:18:20 2024 -0500

    fix absolute path. Use generated local path instead

commit f5bce323d14af0aa2b4c3618f990e386952be6aa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:45:59 2024 -0500

    Refactor LoginRegisterStep component: Remove password validation during registration and adjust password strength color logic for improved clarity.

commit 5900b8f2e53322f664b6e0ceae5c3066755c1e76
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:30:42 2024 -0500

    Refactor LoginRegisterStep component: Introduce centerBumpValue for margin adjustments, update confirm password validation display, and change onChange to onInput for confirm password field.

commit cc3e453a65e7608ae269efb89a3ae1ce68518c27
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 12:12:27 2024 -0500

    pasword strength shown as popover

commit 331f1b7fddadd325510992e15d8440127731b9cc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 11:37:13 2024 -0500

    add show pasword button to login and register

commit 4c11e2a22ba183c9f4f580937aa6fb807fa1a0ca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 17:02:50 2024 -0500

    Refactor stageAndCommitAllAndSync function to remove workspaceFolder parameter and improve error handling; add syncProject command to project manager and UI for syncing projects.

commit 5cad490f820961405fe3a7cbe556a8ac5c1f695e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 15:07:51 2024 -0500

    fix compile errors

commit 22c498735eb6748fcdfcf1920762676fc2e11a6a
Merge: 3bdf889 64505b6
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:17 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 3bdf8899275bdc3cffaeed636867d5b8dc13b5fa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:05 2024 -0700

    Hide new chat in parallel passages for now

commit 64505b61cf95649130e1910e74e76b7b9bb255f1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 14:46:22 2024 -0500

    resurrect chat

commit ad7c6e99b47f43bc67f9994dda57adb6f8655784
Merge: eb50c13 4071c43
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:56:25 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit eb50c13eb645d217bc1f21df2fc0cf2b9731cdb7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:53:25 2024 -0700

    Add fixme

commit 1243bc80008f3150b4b88d75509b605db8b618c4
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:44:32 2024 -0700

    Enhance llmCompletion function to filter out current cell ID from similar source cells. This prevents re-predicting and generating duplicate content from previous edits.

commit 957f0eac8713adba44b9dc376e33591b8924cbec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:42:26 2024 -0700

    Remove commented-out source control provider registration from registerProviders.ts

commit 4071c43811fdd8cbce63bf227dc0aaa95db89c10
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 12:41:55 2024 -0500

    rerevert source blocking changes

commit e35d394e564bc810d394d6bffa41b37b3e4714a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 12 21:04:35 2024 -0600

    fixed merge

commit 7c0af25c008342d1993a9d3185e0c56034e02836
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 15:54:52 2024 -0500

    remove place holder name

commit 5ca1f27fb50da35a35484c5d905ba41383ec3a87
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 10:30:25 2024 -0500

    user name and email now come from auth

commit 0e3191126183eb2a9e4c3ee28c0f2412c42338c3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 11 11:55:49 2024 -0500

    Revert "Ensure source doesn't listen to matching codex updates"

    This reverts commit 182251e018b9022174b3917e75d99770c94f357b.

commit 182251e018b9022174b3917e75d99770c94f357b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 10 10:47:18 2024 -0700

    Ensure source doesn't listen to matching codex updates

commit f09441055ed8f33706368286fbcd267cde3c29b0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:13:29 2024 -0500

    properly dispose of webview in startup flow

commit 5521a408669445575fb6fb786734c1e8e09c2173
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:12:56 2024 -0500

    If a file does not exist ignore it in the commit

commit 6a1c1c599118709ac28d795ead6eb904386a8dee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 9 11:09:01 2024 -0600

    updated global message type

commit f4bd30a4c332db347e10ac388df018565a11238b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 17:13:44 2024 -0500

    Refactor startup flow and metadata handling

    - Updated the extension initialization to conditionally show project overview based on authentication status.
    - Removed redundant checks for codex notebooks in the initialization phase.
    - Enhanced the startup flow to check for authentication before sending metadata responses.
    - Adjusted state transitions in the startup flow machine to prompt user for project initialization when creating an empty project.

commit 61e97621dceccaf2fd4fb5954eeeb7515c4626dc
Merge: 4dfe25c 639aef8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:33 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4dfe25cbc7937b9248c69de573232a97feb1a555
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:26 2024 -0700

    avoid unnecessary ENOENT errors

commit 639aef8ae327052b132df8123609a76960d55f9b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:31:40 2024 -0500

    close startupflow if state reaches already working

commit 3089ba28180de3687df8ad979ea89adbb5fa22e1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:14:49 2024 -0500

    show init screen in startup flow

commit 79e20914d92e127a6d66bc59da053b02d00a5fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 23:36:29 2024 -0500

    feat: block git commiting if no remote

commit 3e1f76f89e0b4f0c3ca4ea7c7fe37172d5eb8fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 22:10:29 2024 -0500

    Use top level refrence for auth store and add password validation

commit af19c3f511bb06a6dbb5068659e547e621869f43
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 17:13:38 2024 -0600

    hide empty messages

commit 55b294b542ea7b964c39dd9f520a15e479405de4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 13:06:45 2024 -0600

    Chat can coninue after pinning verses

commit a8400180b74dd007cbe3b13d44df68702d219b6d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:23:07 2024 -0600

    better spacing

commit d8408d323435b17f86365ff1332eec997ffafbc9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:22:34 2024 -0600

    file save fix

commit e1c00822833a558b5dcf1dcbb5039c95051c5908
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:16:53 2024 -0600

    Chat can now pin on it's own

commit 8cabc60df9509872ab28fbaf363dcf7086f2e9eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:37:42 2024 -0600

    Global message with destination

commit 75400a7635e125f5de8b639f7181b47183d870b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:51:33 2024 -0600

    merge

commit ff7be46cf41c354f774835b4b22b9c9e04c69dc2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Dec 4 15:02:03 2024 -0600

    global provider

commit 65e73b467fe92c675d32c3d09be63c74d7b24905
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 22:27:47 2024 -0500

    add email to project management so we can commit

commit 0fe9ce94e88e57cc48cb19765a42d6fc654786b5
Merge: 326582b 6ef8072
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 13:27:32 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 326582bf83ba81f74048817020b4a9fd70135c75
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:58 2024 -0700

    Add mock classes and context creation for testing NotebookMetadataManager and TranslationTextImporter

    This commit introduces mock implementations of Memento, SecretStorage, and EnvironmentVariableCollection to facilitate testing of the NotebookMetadataManager and TranslationTextImporter. The changes include the creation of a `createMockContext` function to provide a consistent testing environment. Additionally, the usage of the singleton pattern for NotebookMetadataManager is reinforced in the test suites, ensuring proper initialization and state management during tests.

commit bb2d4a8bedba29eb95b64b09921e324eec2693c9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:52 2024 -0700

    Refactor NotebookMetadataManager usage across multiple files to utilize the new getNotebookMetadataManager function, replacing direct instantiation with a singleton pattern. This change enhances consistency and reduces redundancy in metadata management. Additionally, minor adjustments made to comments for clarity.

commit 6ef807269412305d38e6bea782467c87111ab70e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:59:24 2024 -0500

    fix type errors and make git commit command

commit df5630a9730347b0fedb0c4453805a31e7166529
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:05:46 2024 -0500

    renamve test file

commit 3d5406dc33beaa77accc4af98ae5d13b6dee50c9
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 08:49:54 2024 -0500

    fix message posting and add stage and commit util

commit aa0bde14d989e5c8438e0b6f1954e59442e24586
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 3 16:48:51 2024 -0500

    init git when initing project

commit 4409656a4bc2b80b60c10fda723206f070e3bfec
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 14:20:07 2024 -0500

    show publication button only if repo has remote

commit 478917e456b6e5d72805be536d0c221742d39606
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:16:36 2024 -0700

    Fix import path

commit 5bf45734c192405f39e70b567ea1bb6b325d598d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:15:58 2024 -0700

    Use singleton pattern for NotebookMetadataManager

commit da95948c7353977768fa443a819f1ea3258c02e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:07:10 2024 -0700

    Ensure uppercase format for consistency

commit 56930abb92f4430bb1b40b89dc34843eb51f14bd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:04:01 2024 -0700

    Enhance error handling in UsfmSourceImportTransaction for file reading, decoding, and parsing. Added validation for book code format and chapter content, ensuring robust processing of USFM files. Improved error messages for better debugging and user feedback.

commit 1a7812e26c296fb203b029563930106783690287
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:48:53 2024 -0700

    Improve error handling and transaction processing in SourceUploadProvider

commit 8ab3a139be7393345c699ae101b0ed795ede87b5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:36:43 2024 -0700

    Refactor SourceUploadProvider to support USFM file types

commit 6fb31b3d3242adc26d1baebbb8e53d87367434e3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:31:00 2024 -0700

    Add UsfmTranslationImportTransaction class for importing and processing USFM translation files

commit 2b2d15445bf0a0c6d99490052c5e503b87be25ec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:53 2024 -0700

    Add UsfmSourceImportTransaction class for USFM file import and processing

commit e109dfc727cf1ab9f1ae180e24c10956afbeca74
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:31 2024 -0700

    Enhance LLM completion by filtering similar source cells for overlap. Added tokenization to improve example selection and log dropped examples for better debugging.

commit 23adf482a52fcc6d7278a08dade445daa9c1a868
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:51:47 2024 -0500

    Reindex after importing a file

commit 22c2846a5be5787c2dd23e45c33666f88b916a47
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:45:24 2024 -0500

    Hide all projects from project overview

    This functionality is now handled in the startup flow webview

commit d985070dd9fd7b1fce52de0ca3d66ec6806e4462
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:21:20 2024 -0600

    Revert "Chat enabled autocomplete (work in progress)"

    This reverts commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b.

commit 029c4c1af7165946971e8850d14879fb66254f99
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:48 2024 -0600

    Revert "some progress towards chatbot entry"

    This reverts commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd.

commit 0c361f1c000bab0dc07dc994242f27446ba22d8b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:45 2024 -0600

    Revert "chat tab as default"

    This reverts commit 13b62d2a54a4859a862a8b56d923850f8170e463.

commit 52f542ec2d4d0c00beca8a75d308db39f9ed03a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:38 2024 -0600

    Revert "fixed editing"

    This reverts commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9.

commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 16:04:22 2024 -0600

    fixed editing

commit 13b62d2a54a4859a862a8b56d923850f8170e463
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:46:00 2024 -0600

    chat tab as default

commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:17:08 2024 -0600

    some progress towards chatbot entry

commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 16:45:35 2024 -0600

    Chat enabled autocomplete (work in progress)

commit 1bdf4f2b7dbd100212668191c44987178937e81f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 10:40:25 2024 -0500

    move project create to a util and skip setup if project is already setup

commit a9288611a03a8e48fb1965290842cb355848409c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 29 10:32:30 2024 -0500

    fix types and styling

commit f8fcfedfc169543559adbc727b522673047b4a5b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:16:16 2024 -0500

    load local files if there is no auth

commit 95b33d747491b3e5543f0594934af2117632b884
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:07:07 2024 -0500

    users can now open a existing project from the start up flow

commit 308d669aaffa60c2b8980e3f9d967d8d88a9d39d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 11:47:16 2024 -0500

    finish clone process in startup flow

commit 0c95b8e8ac2fd6da3b002b2f6d26b1984231ffaa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 27 00:00:15 2024 -0500

    fix content security policy in startup flow provider

commit 82bba59aa29d3c2a0b46546c95cc40adbc6ea963
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 22:46:43 2024 -0500

    fetch list of projects in startup flow

commit 33fd4b0e7be17780bd13d4b13dcdba5ccf11f139
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 14:15:48 2024 -0500

    render project list

commit 6336ba6dd6cedac70f3a378cf7a0e18aafdf8703
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:46:16 2024 -0500

    list projects in project view

commit 1f81adb23b9d5cf46713a245b7fac7fb99e504f7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:43:59 2024 -0600

    much better apply button

commit 4ffaaea21bf6692d3ff4da55856b2ce9a45b352b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:42:09 2024 -0600

    fixed bug with old prompting

commit afc6b00175ecd12c7d539392d5c73fe01c2a07eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:07:36 2024 -0600

    chat menu opens by defualt

commit 3683b067ec14759b98426959892caaa834fa42ea
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:04:12 2024 -0600

    fixed blank message bug

commit 107b401502dc644988312226db179fe4f220b8a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:51:58 2024 -0600

    fixed some streaming problems

commit b2563854f5902bc9c0da7677edadf19bedd3b994
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:34:23 2024 -0600

    less radius

commit 8b5fb8c871f276c0f332250eb591e112be15e573
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:30:35 2024 -0600

    fixed styl

commit 722e43ca30e5b1b66119667b959e6676763020bf
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:25:19 2024 -0600

    feedback on suggested translations

commit 902a94680bd4a1e20d7bb69b4735af891b2d4498
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:01:44 2024 -0500

    fix preflight command names

commit ee77a7c61635dd2f66fe53321663bf26d6c8e6ad
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 12:20:45 2024 -0500

    skip workspace setup if one is open

commit d4a08c2448ace427b56f8e5aada5fd25454f1c4d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 26 08:45:53 2024 -0700

    Change default llm model; increment version

commit 5636e480085d498e4a8104a3f45cd3a1f53f5619
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:38:10 2024 -0600

    removed chat webview

commit 4f8b697893ae0641e12bd3b183e1d6d67d18ab50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:26:15 2024 -0600

    removed prompting

commit c71025165a082208f08c47044d8c515fbd8bc399
Merge: 40db83d 000c084
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:39 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 40db83d820b46563cd359d159ee37e1e058b181e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:26 2024 -0700

    Clean up state sharing across activation, provider, webview

commit 78745f0567d5f14f4236f8093aa35d08fba7cbf2
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:04:39 2024 -0700

    Overhaul of startup webview

commit 000c0840408730cd61e8eafa223cb28cda5168a2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 21:43:03 2024 -0600

    delete old chats

commit 5ebe8a519df84c22ca849a1cccbffa322d839cb5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:49:06 2024 -0600

    better alignment

commit 50a3c1c59294c626ca722ff39bcb864e7be57e87
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:45:45 2024 -0600

    slightly improved session management

commit 940b16dd180b92751c2fca7184c158016456ae7f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:21:08 2024 -0600

    loading and saving chat history

commit a75b59189c9b8476ca03ee5d45fdbbcc3645845f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:27:06 2024 -0600

    merge

commit aa692ce62642e451ae28257602e485fd717d5d8f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 16:56:06 2024 -0600

    removed ChatView

commit 6f0bafc636c33bd1c97ca8afbfbdf847e8739faa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:44:54 2024 -0700

    Align preflight with startup state machine

commit 411ae7cda7867d0dcd536cdae10a449002c56f1d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:40:54 2024 -0700

    open startup flow using state machine logic

commit 084234398485b63791a66c6a89e6ba80a8120cdf
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:54:57 2024 -0700

    Handle test suite compile errors

commit 09463e61c522d49a9fa7170fdf680f9d99621b38
Merge: 4b22e1c 1d9d551
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:21 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4b22e1c4d09027034f89ab8dfb4e610ac5696adb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:18 2024 -0700

    fix build webviews command

commit 1d9d551db3424d0a80cf5ed93de414dc8aff0474
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 15:53:31 2024 -0500

    add startup flow

commit c0c15f1d87d9646fcfe8e4ded84b2a4f8396de25
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:22:17 2024 -0500

    revert type changes

commit d6a1b804625bc16398bad23e1c28f0609bdfb521
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:19:21 2024 -0500

    revert changes to source uploader webview

commit dfb56143ed169876fa9de312a66b1849005a5aa0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:46 2024 -0500

    move logic to startup flow provider

commit 9749771a23422074b6447ec62183ccb353820450
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:28 2024 -0500

    revert SourceUploadProvider.ts

commit 2a7b9da01dd60a1489d09c1c81bd1dfa3b51ea30
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:32 2024 -0500

    add startup flow to build

commit bcfd8822b01b9f20a0b9cfa7313241e5ab8fbbdd
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:13 2024 -0500

    register startup flow

commit 27f48552ca561e026a7b32460001dfcd1c93bd5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:00 2024 -0500

    add start startup flow

commit 791cab17674f8a9adaeb4594e5dece9129bfd80b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 13:39:01 2024 -0500

    add password confirmation and fix ui

commit 1f418fdc79d044180e0cba92884292711ce0deae
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:38:03 2024 -0500

    setup signup

commit aca437967f8201c2bb320fcb1bf69a667b4eef40
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:01:58 2024 -0500

    fixes to show auth step

commit 2be23ac631d86d965214e5a9d1c0aff3683b7534
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 15:55:49 2024 -0500

    work on showing auth in setup flow

commit d615679856af1cbbc760e28741b1ea3e2b74736c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 12:10:31 2024 -0500

    add check and change command names

commit 036f5f4f7cc9d733cbbdaa9152afea94e5c1ce9c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 11:20:40 2024 -0500

    start auth flow in upload provider

commit 3e8b8bb943fe583ad3d74b9c8deaa5391691e0c1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:27:35 2024 -0600

    better video ui

commit 15695ec8253af9e5260033906e4f40ef7ff8b16d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:16:22 2024 -0600

    working video player

commit d3567a051800ad9d0a8b530d325d58085738f6c9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:15:50 2024 -0600

    bible project urls

commit 10efef06a54590908a2e64c41e9ec55e2c539e82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 18:33:27 2024 -0600

    removed old tab

commit e87922df4ca39da7dd1b675dd7d4408c6bb573e4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 16:25:15 2024 -0500

    Added CodexCellDocument webview only update event _onDidChangeForWebview for proper revert functionality.

commit 99b9d69babcde4ba0c6f17014c31c2ae6e007e2f
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 15:18:28 2024 -0500

    Added watch for file change to reload.

commit 6d6b236bac0bbc5a30e3bd20dc8cffeba0afc9f1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 15:26:31 2024 -0600

    edited user prompt

commit b887039bb2de370bda8b1e303e401cb0a39c8285
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 14:10:58 2024 -0600

    uses language config

commit 57f4ae1f33333043996f0c054a8447c963ed8dc8
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 13:57:39 2024 -0600

    better prompts

commit a5439914f6164a43c14ba47ceefb36510891acca
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 22 11:49:14 2024 -0700

    Disable workspace trust call for theia trust compatibility

    Cf. https://github.com/eclipse-theia/theia/issues/10472

commit b90b464ff386e4c6723a98571d58cc959d7a8ea4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 10:27:30 2024 -0500

    Resolved compile errors in the test config target.

commit ca78a7bade0fe1571b48fb046fe6555a24a92a50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 01:55:14 2024 -0600

    better prompts, ui, searching, and saving (but that part is still a bit buggy

commit 09eec8a33bb6bcba66a60da7a61011bdb3833210
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:47:13 2024 -0600

    Chat now predicts the next prompts

commit 9e7a747690250bc2da560bccdcd737e21ee1db06
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:34:04 2024 -0600

    Removed Teach tab, more combined into the chat tab

commit 0fc51a04d068330efb570c9dd70b410075c3606a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 22:04:59 2024 -0600

    apply

commit 3cdd5adfc3ea9be486335bb3469a757a90b96832
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:45:29 2024 -0600

    more than one TranslationResponse cell, and more extensive regex

commit 037bad6fbe76d6198251048b67a76174978c6bf0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:20:43 2024 -0600

    toward a unified chat

commit 84f65c09b5dcf4dd04dcf9d7eb000e8c291a459f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 15:17:06 2024 -0600

    hide navigate button

commit a02439aedaeec9f717bad6763f85ef858df3bbde
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 15:11:24 2024 -0700

    Some copy updates

commit 57388274f8a471b217621be2e7f53f0b59962a7a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:45:05 2024 -0700

    Ensure navigation treeview is not mutating data

commit 3e152ab251d5b4f617befdc50b6c6741fa827ada
Merge: d2c0551 a6892ab
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:16 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit d2c0551bb41185ca0a7c170b5eb625ce13fc3184
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:12 2024 -0700

    Move command from top level

commit 1c7f9eaf0e7f842999e5b0e2e107d54c2a53f3df
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:04 2024 -0700

    Handle fatal error for missing file

commit a6892abecfce5852a9644c70a30eded5c6ba2d3d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 14:02:03 2024 -0600

    some progress towards a working apply button

commit 6449addebc74863b2508a407f99a6ed8b136642e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:04:28 2024 -0600

    less word breaking

commit 1c0e2ea351e8274b435e067e4f612264a71fd13a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:01:21 2024 -0600

    backtranslation word wrap

commit 4a54baed95d7ac8e528d22c65ad6cb4cdc9a01b6
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:49:12 2024 -0600

    smart edits now get memory context

commit f332f802baf70b88f7ba10fbbf8d118a25b5d065
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:17:51 2024 -0600

    fixed prompt

commit 54b0984d41f1029f84e79815782fe20c104b5984
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:13:25 2024 -0600

    rename to be more clear

commit 4dc337ee20db9a7ae49e8f0ff2da6b5c91ebbbee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:14:53 2024 -0600

    search settings and pin all

commit ddab14a8b4d919d51f958ce18e327c313876db50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:04:59 2024 -0600

    more padding for checkbox

commit ec7987dc3914e61cbe3e7c850703081af9175a36
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:02:51 2024 -0600

    better index for searching

commit 5462ad730e7167ab7e6dd5b49b53aace519c7b92
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:08:24 2024 -0600

    clearer UI for context

commit aa34cbe48e4857c1d71cfce881ae9281654520d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:07:38 2024 -0600

    updated assistant about the new tab

commit d43794975fd0e4da39f8b7a4805e1eff2caf3018
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:01:41 2024 -0600

    some bug fixes

commit 3a7fbe424bd1b3a75085dc17c077e4a2c3deb303
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 21:32:50 2024 -0600

    much better memory management

commit f414808c4b837ba9353b2b27699202f6c6f14b57
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 20:23:51 2024 -0600

    unified styles for both tabs, better chat etc...

commit 49b5f88d445ee79b3b41e4cfb78200a1957bba75
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 18:34:50 2024 -0500

    remove builds with nothing to build

commit cf5da90733be6f738f48bf9b9aa7fbbf22f88e64
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:40:16 2024 -0600

    navigate to next cell

commit 91e25eeea2e0a833c4d71a5e051874463fb684a9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:45 2024 -0600

    somewhat more stable

commit 69acedff6572d624228fff761282793f44ceff7d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:05 2024 -0600

    new command for finding the next untranslated source text

commit 92bfaf3d1ac41033b5066cbbada9529de2014ba4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 15:01:25 2024 -0600

    skeleton loader and clearer UI

commit 3ab2112b2756a423e80d7a9dd61ddc72dc8cb94a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:56:23 2024 -0600

    UI a bit better

commit 8529a05814fe234db4a171ff4d1ff7433f2869ab
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:47:18 2024 -0600

    working with untranslated verses

commit e0accd726d7c5cd21d0875c9c26c4e4f7bae7180
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:50:02 2024 -0600

    pickable target passage

commit 5c3ee120d25cbfb703fb1dbb8d7113c95524df1c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:25:06 2024 -0600

    better UI for silver tab

commit b8bf1ee040aa66871840865eab91bc87563c5fb5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:43:43 2024 -0500

    remove build commands that don’t have folders any more

commit 0a8589ceadc07212d78f64c06fed31c5b52c2f5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:14:49 2024 -0500

    remove unused code

commit cba5ce42dc900c3b8b664daff3ab6c33a3bfdd04
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 10:44:21 2024 -0500

    rename vars for calrity and return indecis to extesion for use

commit 6020e97fed9d61c19f7ab2d4d559d2d7b42fb9ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 17:05:04 2024 -0500

    index tsvs

commit ec3d1c8cf417e2701d1a7a0683a202c506c90472
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 16:17:36 2024 -0500

    init add logic for indexing tsvs

commit adc76961d82f085ff9727eb8db03135a523b0715
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:17:21 2024 -0600

    new tab and css file for chat input

commit f1f83f911262f0ecc8c7ddf2f76dd6fe2bf9132b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:16:43 2024 -0600

    start on silver path

commit 50da7998b13d1b8d07a1f0544fe9b0fdbf0a70f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 16:26:49 2024 -0600

    better organization for codexCellProvider

commit 0b5943eb8a1784edd799a11422b11f8d5746da9b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 15:55:41 2024 -0600

    better memory management

commit 982c26d0122ed3a0bba88bc11344334dac041856
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:47:35 2024 -0600

    silver path start

commit e6f7538c95d60113c05c2b3bb18c93151641e207
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:20:07 2024 -0600

    improved system prompt

commit 80fee48c36827af4c77e92db6360df6dbd73d8d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 13:04:53 2024 -0600

    better look for quoted text

commit 24f86b857236061eeef7679e5dd6f75b728db4cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:52:52 2024 -0600

    fixed json bug

commit 306ffb68a072e7c1723bcd1504fa09780e5c70a5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:42:06 2024 -0600

    better prompts

commit c9f8a861b2152075961c7cf716de0b5d98d43bf4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 23:27:32 2024 -0600

    better backtranslations

commit 7f7d07d8d2d2f659928a9dfd9dfc0312f7946eaa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 20:29:16 2024 -0600

    better ui for backtranslation

commit 55979af809e57b82745c6eff4ea4a1ec3b0739e0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 19:12:54 2024 -0600

    working backtranslation

commit 24cfc273edffef93efaf198651b4f10e77aae9a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 17:14:11 2024 -0600

    new command

commit 07101d5fb50d500f2a6034c258105248f4306ae5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 16:27:48 2024 -0600

    backtranslation

commit f6401b245f3b0c2a8820624e1a6c96df3965fc50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 15:15:39 2024 -0600

    token saving context

commit 5e116e9453edb8770524886235e80f0f921aa773
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:33:27 2024 -0700

    better cellID display in chat

commit c9ec863cec12a683d35b60601cd719f376cc4a42
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:04:44 2024 -0700

    better system prompt

commit ee7588f5e932ba3aea70789e5c17978a844037b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:57:09 2024 -0700

    working reload button

commit b5fd44734b5c2a2eb7eb443261728de4043373c5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:30:42 2024 -0700

    fixed bug where dictionary didn't update until a refresh of the app

commit 95071c292f8a45c6b0e1cbaed4c047e427c13d53
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 11:54:58 2024 -0700

    some improvements to tabs

commit 05ded57fe0ab6042f1ab56b34023b2c78beb5694
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:14:16 2024 -0700

    small style change

commit 5d56a69b2a7aeab4c61f047b14d1aa400a0a3d09
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:07:08 2024 -0700

    better organization of parallel view components

commit fd2980a8148b338f02a08f452bffc6b8ac4b8fdc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:28:28 2024 -0700

    better styling

commit 1b8d2551876d3baaefc6a75e1259135d3c5bfc0f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:22:17 2024 -0700

    codex help

commit cb4de766b77155a6c993f98ccebc43632be4eddd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 15:48:50 2024 -0700

    universal pinned prompts

commit e902bad3323b50e55e23c8da920ba3cc9c4df52d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 14:22:25 2024 -0700

    save generated prompts

commit 74aac37fc2d7f436eff14f24d93f436811dc9318
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 15:16:37 2024 -0500

    restore needed css file and reduce button height

commit a502d88bbe3000507112c8b2a408f1c1492690d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 13:05:07 2024 -0700

    better organization

commit fc11fd8774a94c37006e4c66119aee44219b7fb5
Merge: 1f470ad 0c9e677
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:18 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 1f470ad012d02f48b2bfdeb253bc377106cde5cd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:01 2024 -0700

    A bit more comments style cleanup

commit 0c9e6775a4ba5e3dea4136992223420289cc4488
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 14:40:57 2024 -0500

    allow user to change video player height

commit ee44a7248ab3753e300f80cca1697ceb5f2b3b4d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 12:08:34 2024 -0700

    components for prompts

commit 6f09e260fc48120116193e34cbe001a55b4255b4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 11:53:55 2024 -0700

    New component file

commit 719408684c760d8cacf947bf14ffb7571dcfe309
Merge: dc17e7a c75b57d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 11:47:59 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit dc17e7acb4830e0206a27494a0110bf605a8440a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 23:35:57 2024 -0500

    WIP: Add expandable comment threads

commit a09af37a12c018218327c7b9771075ec44e57ee8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:29:28 2024 -0500

    Tighten up some styles

commit ed39dbbf1adaff4d3c7af1628ec6af37a5f6d622
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:22:16 2024 -0500

    Add icons to comment tabs

commit ea0cc154f48d808a8e309f050e3e03a5a7113360
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:05:56 2024 -0500

    Add tabs to comments view

commit 12303ddbffee26a2e55cf0e4e0ff46bc826e4817
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 21:51:30 2024 -0500

    Update comments view styles

commit c75b57df8eb77feb1d4aa83666a4b7c61ebe6465
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 21:45:06 2024 -0500

    fix unsaved changes prompts

commit f0685d10004a53294361eafe82b3623fb9eaea9e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 19:35:33 2024 -0700

    pin verses from editor to parallel view

commit 7c53dc19b186a319eb61e73f4178b0d3b2d14c41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:59:16 2024 -0700

    force activity bar open

commit adbb6ee1eae3a6432b0ed02651d3126a29196bd4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:03:14 2024 -0700

    better source text

commit 025c0366be1eff44835c54ed1ca07fd9c39a85cc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 17:18:17 2024 -0700

    show source text in editor

commit 4b745f827c5bad1ebd8e2a36f6047a47c0765eb9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:57:00 2024 -0700

    don't show needless revisions

commit d0b3c7e270ca839b5b3fd919e450e86f873f1969
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:39:34 2024 -0700

    return void

commit 4ee7f30f58bd44a26fb153aa7125760ad5cffd5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:35:54 2024 -0700

    third person was weird

commit 1bbb4a72fc2aa6f12a8f8bd07d03336f0424ba0d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:23:33 2024 -0700

    better UI, and prompts

commit bf60e4b572ca667e6d795689fbf7b4d5a77aff33
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 15:43:21 2024 -0700

    much better chat in parallel view

commit 9647f6c16c0649d21aff00c47e292d4d44fb291b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:59:36 2024 -0700

    better buffering (aka no buffering)

commit f95c348fc0240548610fb3f1643df0ce9e30fb19
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:50:37 2024 -0700

    Way more consistent smart edits that don't magically vanish

commit bd157a18e8608673a0ab1870bff9a39ae3d157cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:37:22 2024 -0700

    removed buggy cellChanged toggle

commit f83aa5633c2a604e3f6229751c265e4ad0d9b469
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:06:56 2024 -0700

    less padding

commit 72e758384d70b79561c1ff46f370e8c118cef8da
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 16:03:12 2024 -0500

    webvtt filter out cells with no timestamps

commit 35dd7ad581b10639fecbd1919a465fead84a4153
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:52:59 2024 -0700

    save button

commit 95150e9589a0fb61b117eade6a26852f4a5bc0a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:28:27 2024 -0700

    Revert "fixed(ish) save button"

    This reverts commit 2dc417830df86959d77057ef9740d93dd68f9216.

commit a9169253cbc0efbdf2e0278db839e27dd6c7d933
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:27:09 2024 -0700

    Revert "Revert "allow user to add paratext cells above or below""

    This reverts commit c2f96bc60aad976c22d7ef2679f615c35916ad30.

commit c2f96bc60aad976c22d7ef2679f615c35916ad30
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:21:42 2024 -0700

    Revert "allow user to add paratext cells above or below"

    This reverts commit 459beea4c93788af0ecd5f361258630a7764455f.

commit 2dc417830df86959d77057ef9740d93dd68f9216
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:10:27 2024 -0700

    fixed(ish) save button

commit 459beea4c93788af0ecd5f361258630a7764455f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 14:42:17 2024 -0500

    allow user to add paratext cells above or below

commit 0d8fdec3b385581ce124cf00a665d03994d4cc5e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 12:03:28 2024 -0700

    hamburger menu

commit 654918290c8965b4de34a4258a913c8b56105868
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 11:39:27 2024 -0500

    fetch more spell check responces for better spell check results

commit ac17de15b031e9e4857bc704b5c1bc8593436e73
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 19:17:26 2024 -0700

    more search results

commit 9d3bf671a95754b5689fa022eae6f71b6754fa15
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 18:33:14 2024 -0700

    fixed autocomplete and dictionary buttons

commit 7c9c6483afdde181762d3c70069c1ef770cca22a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 18:29:15 2024 -0500

    speed up spell checking by slowing it down

commit c0eca8af77c73d7251a38e69c685fa9f5b272c89
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:22:27 2024 -0700

    new UI for suggested prompts

commit ea9313eab138a8ac3df217f51f0b4e2c7aa6eebd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:58 2024 -0700

    removed old style

commit 48fc1960fda56c08a007a0fd5ff1cde811d32c82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:44 2024 -0700

    fixed the way smartEdits reads paths (i hope)

commit 04377ec8c99e4a51f1684cabb05e890697528e59
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 15:59:00 2024 -0700

    much better toolbar text slider

commit d15e38b23769e9d8feaecfcfad2b69ab41f4059a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:31:15 2024 -0700

    fixed width of textarea

commit 09f4dc87316078ecb8f10a1c38a755133cdd1dd7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:18:35 2024 -0700

    removes html using the util

commit c0cf03d70a03b7a70fc9a6410af5a87b15d5a302
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:09:10 2024 -0700

    fixed bug where words are removed

commit e438d5636d85aadf1d7ddd7d785ab7e252b9ec76
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:01:18 2024 -0700

    some better more compact styles

commit 524954358cab2f9a0b101885a9520ee832944a5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:42:51 2024 -0700

    removed debounce

commit a49134842e07c5490c3d9278415d627e671d5971
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:39:50 2024 -0700

    fixed cell wrapping problems

commit 48426bae8ee9ebfa1bf98721061b0d2d0ddeeae0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:54:38 2024 -0700

    hide alert bubbles in inline

commit cf48eea9754c670886415e05a395e6d939e7b1e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:33:41 2024 -0700

    filter html before saving

commit 7eb2f79f1c5b7b55da4fe26da2b3ca5eb0596976
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:35:22 2024 -0500

    turn off debug logs

commit 6d76ccbcad2ed06cb76b76de209d80c6e0c928d7
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:33:58 2024 -0500

    remove unused logs

commit 0dc340318067fc33487686d8897852c32a07237c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:56:45 2024 -0500

    fix logic blocking spellcheck

commit 6bf27ffff9e047ee264e85c4d6c556b6d03aa80f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:55:21 2024 -0500

    fix error caused by missing import

commit ef8f47e2da45dc54d0c72f243c004bf4f6a64f62
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:40:51 2024 -0500

    remove log

commit 001a608cdb7970009a785ee813c0a85b3f61b739
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:37:16 2024 -0500

    save dictionary query state

commit 9483e0b9bdbe30676d95331b2a9be600f6ce8e41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 23:22:00 2024 -0700

    slightly more condensed UI

commit 37dc81f43b77bf70fb20e791dc3a47b8bf4eda5c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 22:40:57 2024 -0700

    added back removed listener in quill

commit 69489bdd3b948121e77487479f55d65bfedd8f9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 23:04:56 2024 -0500

    allow user to edit dict entries

commit 7935b5a7a304e5ecce46f61d443b97c7878ac4a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 15:27:13 2024 -0700

    more concise editor

commit af2465658e6d017a39ea591a5dc3ebdca76ec9a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:27:23 2024 -0700

    pins instead of locks, better scrolling

commit 20faf1e5d493fc1a298493202250520eb3918e44
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:26:23 2024 -0700

    fixed bug in autocomplet

commit 26d862dd120666771ca6ae168f8264370c27cb2e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 12:17:30 2024 -0700

    streamed responses

commit 9828768f3403281f104d6992cfa13f74cc208dbc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 10:01:37 2024 -0500

    export user entries to project dictionary when updating and adding new

commit a9e65d1a2c6a6ed8b803838d112eaa97fa31390f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 09:17:32 2024 -0500

    fix type error

commit 9176c970f2c4e00008b1cfd2e5329cdcc50dab48
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 22:39:49 2024 -0700

    better UI for input

commit d5006b198e64b9bc1914efd04ddba6ed46c15929
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 23:35:49 2024 -0500

    fix issues with dictionary including crashing with large db

commit 51f503543ffa878f538f2d50fbd56f340d4d053b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:46:43 2024 -0700

    potentially interesting parallel passages chat

commit 819b000c55b24bdc7d2470ab79cad2c5c10920b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:20 2024 -0700

    added missing return

commit 3363666eb0111987409225fa1af6644556fca537
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:08 2024 -0700

    added react markdown

commit 2e82a47b193fac3335d6990a5f35764112c424f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:25:12 2024 -0700

    improved UI for parallel passages

commit af7b94bf58ce939abc3e91b31b8175fbccdfeece
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:10:04 2024 -0700

    locked results in search

commit 6b1857985a454d09ee37fe677f3f4435a99746c7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:54 2024 -0700

    fixed typo

commit 51312fd62274dd24fe7abe82082e1511caed7e3f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:14 2024 -0700

    some fixes in webview

commit b41be08ac2b0917c68f55eceba3a6dc9b7620caa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 13:34:06 2024 -0700

    some better UI

commit 0412df643c80a6c860d5061b18c8630283d0c4d5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 12:08:07 2024 -0700

    removed some logs

commit 5006f6dfa44ec2d744e94012c8f3c7bf4aa3b787
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 12:29:19 2024 -0500

    fix height issues in dictionary editor

commit e2417cc5dcd2f875f7f6cb8f0312b54d4f7bc0b2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 10:12:42 2024 -0500

    remove all undused code related to resource in bible translation

commit b984400380ac8d58645faa7e44419c18685c632a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:57:57 2024 -0500

    remove unused video player provider

commit 777f6c07afa48a277b9ef6102c578b86c10ad731
Merge: 4b1808c 0ed9696
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 8 12:55:10 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 0ed96966ccdf6cf1d47b046488abeb270f03af5d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:54:31 2024 -0500

    remove dict side panel

commit 11f7e997a0585bfeacb0d6a6d41ccc9cd06680e2
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 10:53:36 2024 -0500

    Added ability to add a perspective to the Reflection.

commit 5bb551e6040efc1f07c54977097ef09f7718420e
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 09:14:56 2024 -0500

    Added a reflection spinner.

commit 45f50e96734da913118f1a8fd20c299c0d4de34d
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 16:19:05 2024 -0500

    Added logging output.

commit f0c1b8399b5234217aa9b7c2b821066cf73f97ba
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:34:52 2024 -0500

    Added setting to turn on and off the reflection.

commit a2c8eed25bf66796c3bc2b977de8a1b52c8907fa
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:11:31 2024 -0500

    Fixed the problem of it embellishing with "personal" stories.

commit 1a1153f92e8dc144e0c97fbcefebd8c9ae70b750
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 09:27:23 2024 -0500

    Attempted with bullet points that didn't work.

commit cc7febbb4a6c7ee4fa0868f1bcb7078aa2856ce3
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Nov 5 16:38:14 2024 -0500

    Reflection works but greatly expands the generated result.

commit 5ceb7360eb42ab0ecde971ba4bed65b03f72c59a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:58:58 2024 -0400

    Adding missing events package.

commit 49d6d557aa3b820b1a04e99b1c2d16e2ffcd7b8a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:29:07 2024 -0400

    Adding enableGrading to missed useEffect.

commit b89ddc882ab8e1add2fd3d3cbac440195a3e84a8
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 7 15:24:47 2024 -0500

    Ignore casing in spell check

commit a57ddb5bb1155e66e95bc6a2f01f6acff1d4820f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:57:12 2024 -0500

    add pagination to dictionary

commit 8ce8022e11835e3a31e3a30985ffb8d021e9e6c5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:47:36 2024 -0500

    change dictionary ui to use database

commit 4b1808cc54c863d0b5dd85e8af1f5c2f1f89c547
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:15 2024 -0700

    Bump to 0.0.67

commit 6d8a99744016bd46f56dd1dcab956ee4c5ad587d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:14 2024 -0700

    Remove some messages

commit 94c9fe22da119c0aa79f1ecdd74648ca3dc658e3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 09:10:52 2024 -0500

    speed up spell check with sql call

commit e1deda80ffa2a40ea1415c7f77fbf1f76eceda7e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:57:55 2024 -0500

    user now selects where to export to

commit e54e7de22e425c8ad449b4d3cc9666c35cabb693
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:55:07 2024 -0500

    export web vtt file

commit c7160673c3e14dd872390161664dfce01924a3b4
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 10:53:56 2024 -0500

    multi line system prompt

commit 575e6d86c36ea69bcc490419e2025417560da2dd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:29:17 2024 -0700

    Bump to 0.0.67

commit e4157001da61eb51ab8fb39cc276e0a3d4d116e5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:28 2024 -0700

    Remove some messages

commit 596fe4aa8911057930487f0c64e4ae9f68ad2702
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:17 2024 -0700

    Clean up project manager view logic further

commit 8b7b662203d20982d6e337ae414fca4bff180d95
Merge: 08c4985 255b39b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:46 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 08c4985e5c4209ac6beaf50f4aaf2881aa39d16d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:40 2024 -0700

    Fix project overview display logic

commit 1a64bcbb361b1f614138611a8f8f0e4f26288dd0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:37 2024 -0700

    Silence logs

commit 255b39b21375e928cd8cd3d4c25970c015b209ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 00:36:20 2024 -0500

    save dictionary to sqlite db when upload is done and prompt user to save after accepting spell check

commit c8f8acc73410016ef428d0cd46c7a03bf9057900
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 22:01:16 2024 -0700

    Fix types, quiet logs, bump version

commit 5d3be097fde748645f00361ebf9cdf6f0ec7d8d0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 23:10:05 2024 -0500

    fix webpack issue that crashed server

commit a03c777ea286c13addb22770d56b1d7e1fa908a9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:54 2024 -0700

    Bump version

commit 1a1904c70dbac87453bb2ad06962aaebada370b0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:12 2024 -0700

    Better null checking

commit 856987e5acec36a6d66e5cc6d94e462df55caee0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 13:37:11 2024 -0700

    Clean up ChatView buttons

commit 485ed93666e2d746d83ca493ac2c21358385b51c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:44 2024 -0700

    Don’t use ‘video’ corpus tag by default

commit b71ab2a72b88faded9c06892e59768b42b4bfb2e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:08 2024 -0700

    Add force reindex command to status bar

commit 0c6fa0de7d1863436564603cee50be57d73edf9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 11:55:02 2024 -0500

    get alerts all at once and update them when appropriate

commit b85649517bbf9cfd88d47234a9d673bd4c3b0047
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 09:00:57 2024 -0700

    Fix importing sql.js and bump to .63

commit e22fbf5f534bdc55565f4d9a599e358ef7e13d8a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:38 2024 -0600

    Ensure chat threads file exists

commit 2a69ccc14586bf42f84862a91c8b877c24277b82
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:19 2024 -0600

    Handle project manager empty workspace state better

commit 5e14add1f2b1b78cda8531d81f766a7572564f5b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:22:04 2024 -0600

    Bump to 0.0.62

commit 1e60f8e1813beac11e0814ff9e68020d54f7cf6e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:21:36 2024 -0600

    Include sqldb in build

commit cd06948270a0b9d2fcd9b3af06835e3d407435cc
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:54:57 2024 -0600

    Resolve some type issues and bump version

commit 1fa18bbd1375446e8f12cb836e6973c43e3027b7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:48:46 2024 -0600

    Improve initial data population in project manager

commit 87d835fb7c8eaba263f1b76bbc5a5d49293a93da
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 15:46:37 2024 -0600

    Include sql.js wasm in build

commit f4e7e30613b7c2e8b22a10e6f80e486c61f9c52d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 14:53:38 2024 -0600

    Support project-level commands

commit 1a4259e86a0ff2f292e55a698198214c3922dbfb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:41:04 2024 -0600

    Add fixme for preview confirm/cancel step

commit c18cb5ed09d75dffa8980232eebd6b41d8b37565
Merge: 8caa5dc 49f4d80
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:37:14 2024 -0600

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 8caa5dc43ee3e6aefb6ac647aeef649fc7afb82c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:37:08 2024 -0600

    Handle multiple previews properly

commit 2f97bba609d841e0b083f2c4112e56fc035a1492
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 07:30:23 2024 -0600

    Bump version

commit 1e4c0d1c1af3ff75c665b536bbd73b443bcab1d3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 07:30:18 2024 -0600

    Restore previews

commit 49f4d80008d4f17646ffd2140546f4af9ddea7b0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 17:18:08 2024 -0500

    UI for suggested prompts

commit 7f2bb61e7a038ab630b1af51702c8d38c0a303e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 17:17:15 2024 -0500

    new styles

commit b34e785cc0acfcd0e49d1c257631befa67b75473
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 15:19:23 2024 -0500

    fixed styling where buttons are invisible durring lightmode

commit aca2f64a7b2109348801548a3f7ec47d4c4c81f5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Oct 31 15:31:20 2024 -0400

    use db for spell check

commit fd7aca7fdf600a1e4f771a4ff6b7ed54db82607b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 12:42:37 2024 -0600

    Upload multiple sources or translations at once

commit 0ba71957acb9f03253990876ec499806e947342b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:27:47 2024 -0600

    Clean up logs

commit 6c6ca243efba790b70cd18608dfe163298250ceb
Merge: 9e70bc8 90135d9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:23:25 2024 -0600

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 9e70bc800550c846802803b58efb0b19e1eef1ac
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:23:22 2024 -0600

    Add debugging flags

commit 9eebd2fb4acd727df36f2d52437fc8ac534f03ee
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:23:15 2024 -0600

    Make translation importer more performant

commit 90135d9c2c56896318098d1ceaebb35ae7f24b21
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Oct 31 11:21:23 2024 -0400

    fix type errors

commit 7c6c733f909af2ee123aca04a9335cb12cb95ca1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Oct 31 11:15:17 2024 -0400

    update dictionary import to import pre parsed data

commit 1f4c7736abe224b971750eb7c6e34a6ed98efa21
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Oct 30 10:15:52 2024 -0400

    add wiktionary import

commit e127c4ff258b279bc31c40575d0afc727b970f17
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Oct 29 17:05:42 2024 -0400

    add sql.js database

commit 6298b7c3119437f584a80098ca043731ffca9dd7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:05:55 2024 -0600

    Fix some types

commit c0824ab97240ae6d33d7b38784114953071e434c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:05:38 2024 -0600

    Don’t use a dummy source when importing a translation

commit 5e0787358bbd5f216dd1d7fbdcc25ad5e1b8e638
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 20:33:06 2024 -0600

    Enable translation-only insertion of downloaded Bibles

commit c2532417babc62c7d6457b8a51659686933bb79b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 16:38:38 2024 -0500

    handle the new prompt format

commit 3380877c585781da23022cbbf3e810626eb4df15
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 16:33:46 2024 -0500

    search cells UI

commit de661ad30ec0ea0600e45f0845a0ce990e0d192d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 14:07:34 2024 -0500

    better k setting

commit 86f652726d654054fa6100f351910077bf38e746
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 14:04:15 2024 -0500

    hasApplicablePrompts

commit 405a449d66ed2cb908ffaea120f701ce7c921303
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 13:57:23 2024 -0500

    removed smart edit alerts for now

commit 44f211ce633f65b60bc9ecc75bb93d48da008b9d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:46:02 2024 -0600

    Fix UI for file selection when not downloading

commit 94bd1ad645ac6160e314ff797082992cf5c1fcdd
Merge: 4b233d2 84c8395
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:25:35 2024 -0600

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4b233d299b94b7eb2cfb29a6fa348b142feec877
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:23:52 2024 -0600

    Restore and improve upload ui

commit cee4d627a3e8424bedbe2a11c2fca424e8e35a0f
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:10:20 2024 -0600

    Fix vref alignment

commit 14d519216fd6e90b1183e13ebd16d6fcd66a17dc
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:00:48 2024 -0600

    WIP: bible download transaction

commit 93f6d79313c68187f7ed1bcf7fd9cc8f9ea1be7e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Oct 29 15:25:02 2024 -0500

    Clean up download…
ryderwishart added a commit to genesis-ai-dev/codex-editor that referenced this issue Dec 18, 2024
commit b8df3850b701be03c877b35aee5d1089de855083
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 22:34:13 2024 -0700

    Minor type fix for v0.1.2

commit 73fec2732f345a7e554a77de4843cf23c52b1033
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:15:03 2024 -0700

    Bump to 0.1.2

commit 149ae03acd66cbb5c44dd4b677a1008449a08b19
Merge: a100f37 cc3ca77
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:14:14 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit a100f3721244b496920a4feb76219d654441b421
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:03:35 2024 -0700

    Update version to 0.1.2 and enhance API key description; comment out unused state store update logic in inlineCompletionsProvider.ts

commit 2d418dd4fdadc2d9f2f0a4787f330d5b925fbfc0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 16:52:18 2024 -0700

    Use custom auth-defined llm endpoint if available

commit cc3ca7790434775194d427eb8e4084a4c0b1376b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 16:43:52 2024 -0500

    Refactor llmCompletion function: Remove early return for no similar source cells and fix comment formatting for clarity.

commit a24e2662a40ca48dba22781b64ef92b9b27bf73a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 15:57:04 2024 -0500

    Ensure chat threads file check only occurs if workspace folders are present in CustomWebviewProvider constructor

commit 0b06069d3fb234b41d72bdc89acd1e4d630f815b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:44 2024 -0500

    Update version to 0.1.1 in package.json for release

commit 84a6dd188903220a4b5c7023dd45870074479dca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:18 2024 -0500

    Enhance password validation logic in LoginRegisterStep component to ensure confirmation check only occurs during registration.

commit b5eedbb49a97af2d8eb7bc54d3ddc991faa0195a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:26:59 2024 -0500

    Update version to 0.1.0 in package.json for release preparation

commit 02fcdcdcfb599d6e2daee93ea270240110d81b74
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:18:20 2024 -0500

    fix absolute path. Use generated local path instead

commit f5bce323d14af0aa2b4c3618f990e386952be6aa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:45:59 2024 -0500

    Refactor LoginRegisterStep component: Remove password validation during registration and adjust password strength color logic for improved clarity.

commit 5900b8f2e53322f664b6e0ceae5c3066755c1e76
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:30:42 2024 -0500

    Refactor LoginRegisterStep component: Introduce centerBumpValue for margin adjustments, update confirm password validation display, and change onChange to onInput for confirm password field.

commit cc3e453a65e7608ae269efb89a3ae1ce68518c27
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 12:12:27 2024 -0500

    pasword strength shown as popover

commit 331f1b7fddadd325510992e15d8440127731b9cc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 11:37:13 2024 -0500

    add show pasword button to login and register

commit 4c11e2a22ba183c9f4f580937aa6fb807fa1a0ca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 17:02:50 2024 -0500

    Refactor stageAndCommitAllAndSync function to remove workspaceFolder parameter and improve error handling; add syncProject command to project manager and UI for syncing projects.

commit 5cad490f820961405fe3a7cbe556a8ac5c1f695e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 15:07:51 2024 -0500

    fix compile errors

commit 22c498735eb6748fcdfcf1920762676fc2e11a6a
Merge: 3bdf889 64505b6
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:17 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 3bdf8899275bdc3cffaeed636867d5b8dc13b5fa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:05 2024 -0700

    Hide new chat in parallel passages for now

commit 64505b61cf95649130e1910e74e76b7b9bb255f1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 14:46:22 2024 -0500

    resurrect chat

commit ad7c6e99b47f43bc67f9994dda57adb6f8655784
Merge: eb50c13 4071c43
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:56:25 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit eb50c13eb645d217bc1f21df2fc0cf2b9731cdb7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:53:25 2024 -0700

    Add fixme

commit 1243bc80008f3150b4b88d75509b605db8b618c4
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:44:32 2024 -0700

    Enhance llmCompletion function to filter out current cell ID from similar source cells. This prevents re-predicting and generating duplicate content from previous edits.

commit 957f0eac8713adba44b9dc376e33591b8924cbec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:42:26 2024 -0700

    Remove commented-out source control provider registration from registerProviders.ts

commit 4071c43811fdd8cbce63bf227dc0aaa95db89c10
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 12:41:55 2024 -0500

    rerevert source blocking changes

commit e35d394e564bc810d394d6bffa41b37b3e4714a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 12 21:04:35 2024 -0600

    fixed merge

commit 7c0af25c008342d1993a9d3185e0c56034e02836
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 15:54:52 2024 -0500

    remove place holder name

commit 5ca1f27fb50da35a35484c5d905ba41383ec3a87
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 10:30:25 2024 -0500

    user name and email now come from auth

commit 0e3191126183eb2a9e4c3ee28c0f2412c42338c3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 11 11:55:49 2024 -0500

    Revert "Ensure source doesn't listen to matching codex updates"

    This reverts commit 182251e018b9022174b3917e75d99770c94f357b.

commit 182251e018b9022174b3917e75d99770c94f357b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 10 10:47:18 2024 -0700

    Ensure source doesn't listen to matching codex updates

commit f09441055ed8f33706368286fbcd267cde3c29b0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:13:29 2024 -0500

    properly dispose of webview in startup flow

commit 5521a408669445575fb6fb786734c1e8e09c2173
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:12:56 2024 -0500

    If a file does not exist ignore it in the commit

commit 6a1c1c599118709ac28d795ead6eb904386a8dee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 9 11:09:01 2024 -0600

    updated global message type

commit f4bd30a4c332db347e10ac388df018565a11238b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 17:13:44 2024 -0500

    Refactor startup flow and metadata handling

    - Updated the extension initialization to conditionally show project overview based on authentication status.
    - Removed redundant checks for codex notebooks in the initialization phase.
    - Enhanced the startup flow to check for authentication before sending metadata responses.
    - Adjusted state transitions in the startup flow machine to prompt user for project initialization when creating an empty project.

commit 61e97621dceccaf2fd4fb5954eeeb7515c4626dc
Merge: 4dfe25c 639aef8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:33 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4dfe25cbc7937b9248c69de573232a97feb1a555
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:26 2024 -0700

    avoid unnecessary ENOENT errors

commit 639aef8ae327052b132df8123609a76960d55f9b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:31:40 2024 -0500

    close startupflow if state reaches already working

commit 3089ba28180de3687df8ad979ea89adbb5fa22e1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:14:49 2024 -0500

    show init screen in startup flow

commit 79e20914d92e127a6d66bc59da053b02d00a5fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 23:36:29 2024 -0500

    feat: block git commiting if no remote

commit 3e1f76f89e0b4f0c3ca4ea7c7fe37172d5eb8fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 22:10:29 2024 -0500

    Use top level refrence for auth store and add password validation

commit af19c3f511bb06a6dbb5068659e547e621869f43
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 17:13:38 2024 -0600

    hide empty messages

commit 55b294b542ea7b964c39dd9f520a15e479405de4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 13:06:45 2024 -0600

    Chat can coninue after pinning verses

commit a8400180b74dd007cbe3b13d44df68702d219b6d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:23:07 2024 -0600

    better spacing

commit d8408d323435b17f86365ff1332eec997ffafbc9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:22:34 2024 -0600

    file save fix

commit e1c00822833a558b5dcf1dcbb5039c95051c5908
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:16:53 2024 -0600

    Chat can now pin on it's own

commit 8cabc60df9509872ab28fbaf363dcf7086f2e9eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:37:42 2024 -0600

    Global message with destination

commit 75400a7635e125f5de8b639f7181b47183d870b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:51:33 2024 -0600

    merge

commit ff7be46cf41c354f774835b4b22b9c9e04c69dc2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Dec 4 15:02:03 2024 -0600

    global provider

commit 65e73b467fe92c675d32c3d09be63c74d7b24905
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 22:27:47 2024 -0500

    add email to project management so we can commit

commit 0fe9ce94e88e57cc48cb19765a42d6fc654786b5
Merge: 326582b 6ef8072
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 13:27:32 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 326582bf83ba81f74048817020b4a9fd70135c75
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:58 2024 -0700

    Add mock classes and context creation for testing NotebookMetadataManager and TranslationTextImporter

    This commit introduces mock implementations of Memento, SecretStorage, and EnvironmentVariableCollection to facilitate testing of the NotebookMetadataManager and TranslationTextImporter. The changes include the creation of a `createMockContext` function to provide a consistent testing environment. Additionally, the usage of the singleton pattern for NotebookMetadataManager is reinforced in the test suites, ensuring proper initialization and state management during tests.

commit bb2d4a8bedba29eb95b64b09921e324eec2693c9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:52 2024 -0700

    Refactor NotebookMetadataManager usage across multiple files to utilize the new getNotebookMetadataManager function, replacing direct instantiation with a singleton pattern. This change enhances consistency and reduces redundancy in metadata management. Additionally, minor adjustments made to comments for clarity.

commit 6ef807269412305d38e6bea782467c87111ab70e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:59:24 2024 -0500

    fix type errors and make git commit command

commit df5630a9730347b0fedb0c4453805a31e7166529
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:05:46 2024 -0500

    renamve test file

commit 3d5406dc33beaa77accc4af98ae5d13b6dee50c9
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 08:49:54 2024 -0500

    fix message posting and add stage and commit util

commit aa0bde14d989e5c8438e0b6f1954e59442e24586
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 3 16:48:51 2024 -0500

    init git when initing project

commit 4409656a4bc2b80b60c10fda723206f070e3bfec
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 14:20:07 2024 -0500

    show publication button only if repo has remote

commit 478917e456b6e5d72805be536d0c221742d39606
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:16:36 2024 -0700

    Fix import path

commit 5bf45734c192405f39e70b567ea1bb6b325d598d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:15:58 2024 -0700

    Use singleton pattern for NotebookMetadataManager

commit da95948c7353977768fa443a819f1ea3258c02e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:07:10 2024 -0700

    Ensure uppercase format for consistency

commit 56930abb92f4430bb1b40b89dc34843eb51f14bd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:04:01 2024 -0700

    Enhance error handling in UsfmSourceImportTransaction for file reading, decoding, and parsing. Added validation for book code format and chapter content, ensuring robust processing of USFM files. Improved error messages for better debugging and user feedback.

commit 1a7812e26c296fb203b029563930106783690287
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:48:53 2024 -0700

    Improve error handling and transaction processing in SourceUploadProvider

commit 8ab3a139be7393345c699ae101b0ed795ede87b5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:36:43 2024 -0700

    Refactor SourceUploadProvider to support USFM file types

commit 6fb31b3d3242adc26d1baebbb8e53d87367434e3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:31:00 2024 -0700

    Add UsfmTranslationImportTransaction class for importing and processing USFM translation files

commit 2b2d15445bf0a0c6d99490052c5e503b87be25ec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:53 2024 -0700

    Add UsfmSourceImportTransaction class for USFM file import and processing

commit e109dfc727cf1ab9f1ae180e24c10956afbeca74
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:31 2024 -0700

    Enhance LLM completion by filtering similar source cells for overlap. Added tokenization to improve example selection and log dropped examples for better debugging.

commit 23adf482a52fcc6d7278a08dade445daa9c1a868
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:51:47 2024 -0500

    Reindex after importing a file

commit 22c2846a5be5787c2dd23e45c33666f88b916a47
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:45:24 2024 -0500

    Hide all projects from project overview

    This functionality is now handled in the startup flow webview

commit d985070dd9fd7b1fce52de0ca3d66ec6806e4462
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:21:20 2024 -0600

    Revert "Chat enabled autocomplete (work in progress)"

    This reverts commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b.

commit 029c4c1af7165946971e8850d14879fb66254f99
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:48 2024 -0600

    Revert "some progress towards chatbot entry"

    This reverts commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd.

commit 0c361f1c000bab0dc07dc994242f27446ba22d8b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:45 2024 -0600

    Revert "chat tab as default"

    This reverts commit 13b62d2a54a4859a862a8b56d923850f8170e463.

commit 52f542ec2d4d0c00beca8a75d308db39f9ed03a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:38 2024 -0600

    Revert "fixed editing"

    This reverts commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9.

commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 16:04:22 2024 -0600

    fixed editing

commit 13b62d2a54a4859a862a8b56d923850f8170e463
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:46:00 2024 -0600

    chat tab as default

commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:17:08 2024 -0600

    some progress towards chatbot entry

commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 16:45:35 2024 -0600

    Chat enabled autocomplete (work in progress)

commit 1bdf4f2b7dbd100212668191c44987178937e81f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 10:40:25 2024 -0500

    move project create to a util and skip setup if project is already setup

commit a9288611a03a8e48fb1965290842cb355848409c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 29 10:32:30 2024 -0500

    fix types and styling

commit f8fcfedfc169543559adbc727b522673047b4a5b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:16:16 2024 -0500

    load local files if there is no auth

commit 95b33d747491b3e5543f0594934af2117632b884
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:07:07 2024 -0500

    users can now open a existing project from the start up flow

commit 308d669aaffa60c2b8980e3f9d967d8d88a9d39d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 11:47:16 2024 -0500

    finish clone process in startup flow

commit 0c95b8e8ac2fd6da3b002b2f6d26b1984231ffaa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 27 00:00:15 2024 -0500

    fix content security policy in startup flow provider

commit 82bba59aa29d3c2a0b46546c95cc40adbc6ea963
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 22:46:43 2024 -0500

    fetch list of projects in startup flow

commit 33fd4b0e7be17780bd13d4b13dcdba5ccf11f139
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 14:15:48 2024 -0500

    render project list

commit 6336ba6dd6cedac70f3a378cf7a0e18aafdf8703
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:46:16 2024 -0500

    list projects in project view

commit 1f81adb23b9d5cf46713a245b7fac7fb99e504f7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:43:59 2024 -0600

    much better apply button

commit 4ffaaea21bf6692d3ff4da55856b2ce9a45b352b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:42:09 2024 -0600

    fixed bug with old prompting

commit afc6b00175ecd12c7d539392d5c73fe01c2a07eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:07:36 2024 -0600

    chat menu opens by defualt

commit 3683b067ec14759b98426959892caaa834fa42ea
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:04:12 2024 -0600

    fixed blank message bug

commit 107b401502dc644988312226db179fe4f220b8a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:51:58 2024 -0600

    fixed some streaming problems

commit b2563854f5902bc9c0da7677edadf19bedd3b994
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:34:23 2024 -0600

    less radius

commit 8b5fb8c871f276c0f332250eb591e112be15e573
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:30:35 2024 -0600

    fixed styl

commit 722e43ca30e5b1b66119667b959e6676763020bf
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:25:19 2024 -0600

    feedback on suggested translations

commit 902a94680bd4a1e20d7bb69b4735af891b2d4498
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:01:44 2024 -0500

    fix preflight command names

commit ee77a7c61635dd2f66fe53321663bf26d6c8e6ad
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 12:20:45 2024 -0500

    skip workspace setup if one is open

commit d4a08c2448ace427b56f8e5aada5fd25454f1c4d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 26 08:45:53 2024 -0700

    Change default llm model; increment version

commit 5636e480085d498e4a8104a3f45cd3a1f53f5619
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:38:10 2024 -0600

    removed chat webview

commit 4f8b697893ae0641e12bd3b183e1d6d67d18ab50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:26:15 2024 -0600

    removed prompting

commit c71025165a082208f08c47044d8c515fbd8bc399
Merge: 40db83d 000c084
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:39 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 40db83d820b46563cd359d159ee37e1e058b181e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:26 2024 -0700

    Clean up state sharing across activation, provider, webview

commit 78745f0567d5f14f4236f8093aa35d08fba7cbf2
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:04:39 2024 -0700

    Overhaul of startup webview

commit 000c0840408730cd61e8eafa223cb28cda5168a2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 21:43:03 2024 -0600

    delete old chats

commit 5ebe8a519df84c22ca849a1cccbffa322d839cb5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:49:06 2024 -0600

    better alignment

commit 50a3c1c59294c626ca722ff39bcb864e7be57e87
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:45:45 2024 -0600

    slightly improved session management

commit 940b16dd180b92751c2fca7184c158016456ae7f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:21:08 2024 -0600

    loading and saving chat history

commit a75b59189c9b8476ca03ee5d45fdbbcc3645845f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:27:06 2024 -0600

    merge

commit aa692ce62642e451ae28257602e485fd717d5d8f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 16:56:06 2024 -0600

    removed ChatView

commit 6f0bafc636c33bd1c97ca8afbfbdf847e8739faa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:44:54 2024 -0700

    Align preflight with startup state machine

commit 411ae7cda7867d0dcd536cdae10a449002c56f1d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:40:54 2024 -0700

    open startup flow using state machine logic

commit 084234398485b63791a66c6a89e6ba80a8120cdf
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:54:57 2024 -0700

    Handle test suite compile errors

commit 09463e61c522d49a9fa7170fdf680f9d99621b38
Merge: 4b22e1c 1d9d551
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:21 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4b22e1c4d09027034f89ab8dfb4e610ac5696adb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:18 2024 -0700

    fix build webviews command

commit 1d9d551db3424d0a80cf5ed93de414dc8aff0474
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 15:53:31 2024 -0500

    add startup flow

commit c0c15f1d87d9646fcfe8e4ded84b2a4f8396de25
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:22:17 2024 -0500

    revert type changes

commit d6a1b804625bc16398bad23e1c28f0609bdfb521
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:19:21 2024 -0500

    revert changes to source uploader webview

commit dfb56143ed169876fa9de312a66b1849005a5aa0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:46 2024 -0500

    move logic to startup flow provider

commit 9749771a23422074b6447ec62183ccb353820450
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:28 2024 -0500

    revert SourceUploadProvider.ts

commit 2a7b9da01dd60a1489d09c1c81bd1dfa3b51ea30
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:32 2024 -0500

    add startup flow to build

commit bcfd8822b01b9f20a0b9cfa7313241e5ab8fbbdd
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:13 2024 -0500

    register startup flow

commit 27f48552ca561e026a7b32460001dfcd1c93bd5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:00 2024 -0500

    add start startup flow

commit 791cab17674f8a9adaeb4594e5dece9129bfd80b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 13:39:01 2024 -0500

    add password confirmation and fix ui

commit 1f418fdc79d044180e0cba92884292711ce0deae
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:38:03 2024 -0500

    setup signup

commit aca437967f8201c2bb320fcb1bf69a667b4eef40
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:01:58 2024 -0500

    fixes to show auth step

commit 2be23ac631d86d965214e5a9d1c0aff3683b7534
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 15:55:49 2024 -0500

    work on showing auth in setup flow

commit d615679856af1cbbc760e28741b1ea3e2b74736c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 12:10:31 2024 -0500

    add check and change command names

commit 036f5f4f7cc9d733cbbdaa9152afea94e5c1ce9c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 11:20:40 2024 -0500

    start auth flow in upload provider

commit 3e8b8bb943fe583ad3d74b9c8deaa5391691e0c1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:27:35 2024 -0600

    better video ui

commit 15695ec8253af9e5260033906e4f40ef7ff8b16d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:16:22 2024 -0600

    working video player

commit d3567a051800ad9d0a8b530d325d58085738f6c9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:15:50 2024 -0600

    bible project urls

commit 10efef06a54590908a2e64c41e9ec55e2c539e82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 18:33:27 2024 -0600

    removed old tab

commit e87922df4ca39da7dd1b675dd7d4408c6bb573e4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 16:25:15 2024 -0500

    Added CodexCellDocument webview only update event _onDidChangeForWebview for proper revert functionality.

commit 99b9d69babcde4ba0c6f17014c31c2ae6e007e2f
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 15:18:28 2024 -0500

    Added watch for file change to reload.

commit 6d6b236bac0bbc5a30e3bd20dc8cffeba0afc9f1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 15:26:31 2024 -0600

    edited user prompt

commit b887039bb2de370bda8b1e303e401cb0a39c8285
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 14:10:58 2024 -0600

    uses language config

commit 57f4ae1f33333043996f0c054a8447c963ed8dc8
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 13:57:39 2024 -0600

    better prompts

commit a5439914f6164a43c14ba47ceefb36510891acca
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 22 11:49:14 2024 -0700

    Disable workspace trust call for theia trust compatibility

    Cf. https://github.com/eclipse-theia/theia/issues/10472

commit b90b464ff386e4c6723a98571d58cc959d7a8ea4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 10:27:30 2024 -0500

    Resolved compile errors in the test config target.

commit ca78a7bade0fe1571b48fb046fe6555a24a92a50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 01:55:14 2024 -0600

    better prompts, ui, searching, and saving (but that part is still a bit buggy

commit 09eec8a33bb6bcba66a60da7a61011bdb3833210
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:47:13 2024 -0600

    Chat now predicts the next prompts

commit 9e7a747690250bc2da560bccdcd737e21ee1db06
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:34:04 2024 -0600

    Removed Teach tab, more combined into the chat tab

commit 0fc51a04d068330efb570c9dd70b410075c3606a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 22:04:59 2024 -0600

    apply

commit 3cdd5adfc3ea9be486335bb3469a757a90b96832
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:45:29 2024 -0600

    more than one TranslationResponse cell, and more extensive regex

commit 037bad6fbe76d6198251048b67a76174978c6bf0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:20:43 2024 -0600

    toward a unified chat

commit 84f65c09b5dcf4dd04dcf9d7eb000e8c291a459f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 15:17:06 2024 -0600

    hide navigate button

commit a02439aedaeec9f717bad6763f85ef858df3bbde
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 15:11:24 2024 -0700

    Some copy updates

commit 57388274f8a471b217621be2e7f53f0b59962a7a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:45:05 2024 -0700

    Ensure navigation treeview is not mutating data

commit 3e152ab251d5b4f617befdc50b6c6741fa827ada
Merge: d2c0551 a6892ab
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:16 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit d2c0551bb41185ca0a7c170b5eb625ce13fc3184
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:12 2024 -0700

    Move command from top level

commit 1c7f9eaf0e7f842999e5b0e2e107d54c2a53f3df
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:04 2024 -0700

    Handle fatal error for missing file

commit a6892abecfce5852a9644c70a30eded5c6ba2d3d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 14:02:03 2024 -0600

    some progress towards a working apply button

commit 6449addebc74863b2508a407f99a6ed8b136642e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:04:28 2024 -0600

    less word breaking

commit 1c0e2ea351e8274b435e067e4f612264a71fd13a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:01:21 2024 -0600

    backtranslation word wrap

commit 4a54baed95d7ac8e528d22c65ad6cb4cdc9a01b6
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:49:12 2024 -0600

    smart edits now get memory context

commit f332f802baf70b88f7ba10fbbf8d118a25b5d065
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:17:51 2024 -0600

    fixed prompt

commit 54b0984d41f1029f84e79815782fe20c104b5984
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:13:25 2024 -0600

    rename to be more clear

commit 4dc337ee20db9a7ae49e8f0ff2da6b5c91ebbbee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:14:53 2024 -0600

    search settings and pin all

commit ddab14a8b4d919d51f958ce18e327c313876db50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:04:59 2024 -0600

    more padding for checkbox

commit ec7987dc3914e61cbe3e7c850703081af9175a36
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:02:51 2024 -0600

    better index for searching

commit 5462ad730e7167ab7e6dd5b49b53aace519c7b92
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:08:24 2024 -0600

    clearer UI for context

commit aa34cbe48e4857c1d71cfce881ae9281654520d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:07:38 2024 -0600

    updated assistant about the new tab

commit d43794975fd0e4da39f8b7a4805e1eff2caf3018
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:01:41 2024 -0600

    some bug fixes

commit 3a7fbe424bd1b3a75085dc17c077e4a2c3deb303
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 21:32:50 2024 -0600

    much better memory management

commit f414808c4b837ba9353b2b27699202f6c6f14b57
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 20:23:51 2024 -0600

    unified styles for both tabs, better chat etc...

commit 49b5f88d445ee79b3b41e4cfb78200a1957bba75
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 18:34:50 2024 -0500

    remove builds with nothing to build

commit cf5da90733be6f738f48bf9b9aa7fbbf22f88e64
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:40:16 2024 -0600

    navigate to next cell

commit 91e25eeea2e0a833c4d71a5e051874463fb684a9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:45 2024 -0600

    somewhat more stable

commit 69acedff6572d624228fff761282793f44ceff7d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:05 2024 -0600

    new command for finding the next untranslated source text

commit 92bfaf3d1ac41033b5066cbbada9529de2014ba4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 15:01:25 2024 -0600

    skeleton loader and clearer UI

commit 3ab2112b2756a423e80d7a9dd61ddc72dc8cb94a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:56:23 2024 -0600

    UI a bit better

commit 8529a05814fe234db4a171ff4d1ff7433f2869ab
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:47:18 2024 -0600

    working with untranslated verses

commit e0accd726d7c5cd21d0875c9c26c4e4f7bae7180
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:50:02 2024 -0600

    pickable target passage

commit 5c3ee120d25cbfb703fb1dbb8d7113c95524df1c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:25:06 2024 -0600

    better UI for silver tab

commit b8bf1ee040aa66871840865eab91bc87563c5fb5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:43:43 2024 -0500

    remove build commands that don’t have folders any more

commit 0a8589ceadc07212d78f64c06fed31c5b52c2f5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:14:49 2024 -0500

    remove unused code

commit cba5ce42dc900c3b8b664daff3ab6c33a3bfdd04
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 10:44:21 2024 -0500

    rename vars for calrity and return indecis to extesion for use

commit 6020e97fed9d61c19f7ab2d4d559d2d7b42fb9ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 17:05:04 2024 -0500

    index tsvs

commit ec3d1c8cf417e2701d1a7a0683a202c506c90472
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 16:17:36 2024 -0500

    init add logic for indexing tsvs

commit adc76961d82f085ff9727eb8db03135a523b0715
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:17:21 2024 -0600

    new tab and css file for chat input

commit f1f83f911262f0ecc8c7ddf2f76dd6fe2bf9132b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:16:43 2024 -0600

    start on silver path

commit 50da7998b13d1b8d07a1f0544fe9b0fdbf0a70f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 16:26:49 2024 -0600

    better organization for codexCellProvider

commit 0b5943eb8a1784edd799a11422b11f8d5746da9b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 15:55:41 2024 -0600

    better memory management

commit 982c26d0122ed3a0bba88bc11344334dac041856
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:47:35 2024 -0600

    silver path start

commit e6f7538c95d60113c05c2b3bb18c93151641e207
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:20:07 2024 -0600

    improved system prompt

commit 80fee48c36827af4c77e92db6360df6dbd73d8d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 13:04:53 2024 -0600

    better look for quoted text

commit 24f86b857236061eeef7679e5dd6f75b728db4cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:52:52 2024 -0600

    fixed json bug

commit 306ffb68a072e7c1723bcd1504fa09780e5c70a5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:42:06 2024 -0600

    better prompts

commit c9f8a861b2152075961c7cf716de0b5d98d43bf4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 23:27:32 2024 -0600

    better backtranslations

commit 7f7d07d8d2d2f659928a9dfd9dfc0312f7946eaa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 20:29:16 2024 -0600

    better ui for backtranslation

commit 55979af809e57b82745c6eff4ea4a1ec3b0739e0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 19:12:54 2024 -0600

    working backtranslation

commit 24cfc273edffef93efaf198651b4f10e77aae9a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 17:14:11 2024 -0600

    new command

commit 07101d5fb50d500f2a6034c258105248f4306ae5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 16:27:48 2024 -0600

    backtranslation

commit f6401b245f3b0c2a8820624e1a6c96df3965fc50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 15:15:39 2024 -0600

    token saving context

commit 5e116e9453edb8770524886235e80f0f921aa773
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:33:27 2024 -0700

    better cellID display in chat

commit c9ec863cec12a683d35b60601cd719f376cc4a42
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:04:44 2024 -0700

    better system prompt

commit ee7588f5e932ba3aea70789e5c17978a844037b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:57:09 2024 -0700

    working reload button

commit b5fd44734b5c2a2eb7eb443261728de4043373c5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:30:42 2024 -0700

    fixed bug where dictionary didn't update until a refresh of the app

commit 95071c292f8a45c6b0e1cbaed4c047e427c13d53
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 11:54:58 2024 -0700

    some improvements to tabs

commit 05ded57fe0ab6042f1ab56b34023b2c78beb5694
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:14:16 2024 -0700

    small style change

commit 5d56a69b2a7aeab4c61f047b14d1aa400a0a3d09
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:07:08 2024 -0700

    better organization of parallel view components

commit fd2980a8148b338f02a08f452bffc6b8ac4b8fdc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:28:28 2024 -0700

    better styling

commit 1b8d2551876d3baaefc6a75e1259135d3c5bfc0f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:22:17 2024 -0700

    codex help

commit cb4de766b77155a6c993f98ccebc43632be4eddd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 15:48:50 2024 -0700

    universal pinned prompts

commit e902bad3323b50e55e23c8da920ba3cc9c4df52d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 14:22:25 2024 -0700

    save generated prompts

commit 74aac37fc2d7f436eff14f24d93f436811dc9318
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 15:16:37 2024 -0500

    restore needed css file and reduce button height

commit a502d88bbe3000507112c8b2a408f1c1492690d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 13:05:07 2024 -0700

    better organization

commit fc11fd8774a94c37006e4c66119aee44219b7fb5
Merge: 1f470ad 0c9e677
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:18 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 1f470ad012d02f48b2bfdeb253bc377106cde5cd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:01 2024 -0700

    A bit more comments style cleanup

commit 0c9e6775a4ba5e3dea4136992223420289cc4488
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 14:40:57 2024 -0500

    allow user to change video player height

commit ee44a7248ab3753e300f80cca1697ceb5f2b3b4d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 12:08:34 2024 -0700

    components for prompts

commit 6f09e260fc48120116193e34cbe001a55b4255b4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 11:53:55 2024 -0700

    New component file

commit 719408684c760d8cacf947bf14ffb7571dcfe309
Merge: dc17e7a c75b57d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 11:47:59 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit dc17e7acb4830e0206a27494a0110bf605a8440a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 23:35:57 2024 -0500

    WIP: Add expandable comment threads

commit a09af37a12c018218327c7b9771075ec44e57ee8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:29:28 2024 -0500

    Tighten up some styles

commit ed39dbbf1adaff4d3c7af1628ec6af37a5f6d622
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:22:16 2024 -0500

    Add icons to comment tabs

commit ea0cc154f48d808a8e309f050e3e03a5a7113360
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:05:56 2024 -0500

    Add tabs to comments view

commit 12303ddbffee26a2e55cf0e4e0ff46bc826e4817
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 21:51:30 2024 -0500

    Update comments view styles

commit c75b57df8eb77feb1d4aa83666a4b7c61ebe6465
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 21:45:06 2024 -0500

    fix unsaved changes prompts

commit f0685d10004a53294361eafe82b3623fb9eaea9e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 19:35:33 2024 -0700

    pin verses from editor to parallel view

commit 7c53dc19b186a319eb61e73f4178b0d3b2d14c41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:59:16 2024 -0700

    force activity bar open

commit adbb6ee1eae3a6432b0ed02651d3126a29196bd4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:03:14 2024 -0700

    better source text

commit 025c0366be1eff44835c54ed1ca07fd9c39a85cc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 17:18:17 2024 -0700

    show source text in editor

commit 4b745f827c5bad1ebd8e2a36f6047a47c0765eb9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:57:00 2024 -0700

    don't show needless revisions

commit d0b3c7e270ca839b5b3fd919e450e86f873f1969
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:39:34 2024 -0700

    return void

commit 4ee7f30f58bd44a26fb153aa7125760ad5cffd5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:35:54 2024 -0700

    third person was weird

commit 1bbb4a72fc2aa6f12a8f8bd07d03336f0424ba0d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:23:33 2024 -0700

    better UI, and prompts

commit bf60e4b572ca667e6d795689fbf7b4d5a77aff33
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 15:43:21 2024 -0700

    much better chat in parallel view

commit 9647f6c16c0649d21aff00c47e292d4d44fb291b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:59:36 2024 -0700

    better buffering (aka no buffering)

commit f95c348fc0240548610fb3f1643df0ce9e30fb19
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:50:37 2024 -0700

    Way more consistent smart edits that don't magically vanish

commit bd157a18e8608673a0ab1870bff9a39ae3d157cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:37:22 2024 -0700

    removed buggy cellChanged toggle

commit f83aa5633c2a604e3f6229751c265e4ad0d9b469
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:06:56 2024 -0700

    less padding

commit 72e758384d70b79561c1ff46f370e8c118cef8da
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 16:03:12 2024 -0500

    webvtt filter out cells with no timestamps

commit 35dd7ad581b10639fecbd1919a465fead84a4153
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:52:59 2024 -0700

    save button

commit 95150e9589a0fb61b117eade6a26852f4a5bc0a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:28:27 2024 -0700

    Revert "fixed(ish) save button"

    This reverts commit 2dc417830df86959d77057ef9740d93dd68f9216.

commit a9169253cbc0efbdf2e0278db839e27dd6c7d933
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:27:09 2024 -0700

    Revert "Revert "allow user to add paratext cells above or below""

    This reverts commit c2f96bc60aad976c22d7ef2679f615c35916ad30.

commit c2f96bc60aad976c22d7ef2679f615c35916ad30
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:21:42 2024 -0700

    Revert "allow user to add paratext cells above or below"

    This reverts commit 459beea4c93788af0ecd5f361258630a7764455f.

commit 2dc417830df86959d77057ef9740d93dd68f9216
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:10:27 2024 -0700

    fixed(ish) save button

commit 459beea4c93788af0ecd5f361258630a7764455f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 14:42:17 2024 -0500

    allow user to add paratext cells above or below

commit 0d8fdec3b385581ce124cf00a665d03994d4cc5e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 12:03:28 2024 -0700

    hamburger menu

commit 654918290c8965b4de34a4258a913c8b56105868
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 11:39:27 2024 -0500

    fetch more spell check responces for better spell check results

commit ac17de15b031e9e4857bc704b5c1bc8593436e73
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 19:17:26 2024 -0700

    more search results

commit 9d3bf671a95754b5689fa022eae6f71b6754fa15
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 18:33:14 2024 -0700

    fixed autocomplete and dictionary buttons

commit 7c9c6483afdde181762d3c70069c1ef770cca22a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 18:29:15 2024 -0500

    speed up spell checking by slowing it down

commit c0eca8af77c73d7251a38e69c685fa9f5b272c89
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:22:27 2024 -0700

    new UI for suggested prompts

commit ea9313eab138a8ac3df217f51f0b4e2c7aa6eebd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:58 2024 -0700

    removed old style

commit 48fc1960fda56c08a007a0fd5ff1cde811d32c82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:44 2024 -0700

    fixed the way smartEdits reads paths (i hope)

commit 04377ec8c99e4a51f1684cabb05e890697528e59
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 15:59:00 2024 -0700

    much better toolbar text slider

commit d15e38b23769e9d8feaecfcfad2b69ab41f4059a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:31:15 2024 -0700

    fixed width of textarea

commit 09f4dc87316078ecb8f10a1c38a755133cdd1dd7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:18:35 2024 -0700

    removes html using the util

commit c0cf03d70a03b7a70fc9a6410af5a87b15d5a302
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:09:10 2024 -0700

    fixed bug where words are removed

commit e438d5636d85aadf1d7ddd7d785ab7e252b9ec76
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:01:18 2024 -0700

    some better more compact styles

commit 524954358cab2f9a0b101885a9520ee832944a5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:42:51 2024 -0700

    removed debounce

commit a49134842e07c5490c3d9278415d627e671d5971
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:39:50 2024 -0700

    fixed cell wrapping problems

commit 48426bae8ee9ebfa1bf98721061b0d2d0ddeeae0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:54:38 2024 -0700

    hide alert bubbles in inline

commit cf48eea9754c670886415e05a395e6d939e7b1e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:33:41 2024 -0700

    filter html before saving

commit 7eb2f79f1c5b7b55da4fe26da2b3ca5eb0596976
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:35:22 2024 -0500

    turn off debug logs

commit 6d76ccbcad2ed06cb76b76de209d80c6e0c928d7
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:33:58 2024 -0500

    remove unused logs

commit 0dc340318067fc33487686d8897852c32a07237c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:56:45 2024 -0500

    fix logic blocking spellcheck

commit 6bf27ffff9e047ee264e85c4d6c556b6d03aa80f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:55:21 2024 -0500

    fix error caused by missing import

commit ef8f47e2da45dc54d0c72f243c004bf4f6a64f62
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:40:51 2024 -0500

    remove log

commit 001a608cdb7970009a785ee813c0a85b3f61b739
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:37:16 2024 -0500

    save dictionary query state

commit 9483e0b9bdbe30676d95331b2a9be600f6ce8e41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 23:22:00 2024 -0700

    slightly more condensed UI

commit 37dc81f43b77bf70fb20e791dc3a47b8bf4eda5c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 22:40:57 2024 -0700

    added back removed listener in quill

commit 69489bdd3b948121e77487479f55d65bfedd8f9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 23:04:56 2024 -0500

    allow user to edit dict entries

commit 7935b5a7a304e5ecce46f61d443b97c7878ac4a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 15:27:13 2024 -0700

    more concise editor

commit af2465658e6d017a39ea591a5dc3ebdca76ec9a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:27:23 2024 -0700

    pins instead of locks, better scrolling

commit 20faf1e5d493fc1a298493202250520eb3918e44
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:26:23 2024 -0700

    fixed bug in autocomplet

commit 26d862dd120666771ca6ae168f8264370c27cb2e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 12:17:30 2024 -0700

    streamed responses

commit 9828768f3403281f104d6992cfa13f74cc208dbc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 10:01:37 2024 -0500

    export user entries to project dictionary when updating and adding new

commit a9e65d1a2c6a6ed8b803838d112eaa97fa31390f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 09:17:32 2024 -0500

    fix type error

commit 9176c970f2c4e00008b1cfd2e5329cdcc50dab48
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 22:39:49 2024 -0700

    better UI for input

commit d5006b198e64b9bc1914efd04ddba6ed46c15929
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 23:35:49 2024 -0500

    fix issues with dictionary including crashing with large db

commit 51f503543ffa878f538f2d50fbd56f340d4d053b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:46:43 2024 -0700

    potentially interesting parallel passages chat

commit 819b000c55b24bdc7d2470ab79cad2c5c10920b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:20 2024 -0700

    added missing return

commit 3363666eb0111987409225fa1af6644556fca537
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:08 2024 -0700

    added react markdown

commit 2e82a47b193fac3335d6990a5f35764112c424f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:25:12 2024 -0700

    improved UI for parallel passages

commit af7b94bf58ce939abc3e91b31b8175fbccdfeece
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:10:04 2024 -0700

    locked results in search

commit 6b1857985a454d09ee37fe677f3f4435a99746c7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:54 2024 -0700

    fixed typo

commit 51312fd62274dd24fe7abe82082e1511caed7e3f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:14 2024 -0700

    some fixes in webview

commit b41be08ac2b0917c68f55eceba3a6dc9b7620caa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 13:34:06 2024 -0700

    some better UI

commit 0412df643c80a6c860d5061b18c8630283d0c4d5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 12:08:07 2024 -0700

    removed some logs

commit 5006f6dfa44ec2d744e94012c8f3c7bf4aa3b787
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 12:29:19 2024 -0500

    fix height issues in dictionary editor

commit e2417cc5dcd2f875f7f6cb8f0312b54d4f7bc0b2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 10:12:42 2024 -0500

    remove all undused code related to resource in bible translation

commit b984400380ac8d58645faa7e44419c18685c632a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:57:57 2024 -0500

    remove unused video player provider

commit 777f6c07afa48a277b9ef6102c578b86c10ad731
Merge: 4b1808c 0ed9696
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 8 12:55:10 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 0ed96966ccdf6cf1d47b046488abeb270f03af5d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:54:31 2024 -0500

    remove dict side panel

commit 11f7e997a0585bfeacb0d6a6d41ccc9cd06680e2
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 10:53:36 2024 -0500

    Added ability to add a perspective to the Reflection.

commit 5bb551e6040efc1f07c54977097ef09f7718420e
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 09:14:56 2024 -0500

    Added a reflection spinner.

commit 45f50e96734da913118f1a8fd20c299c0d4de34d
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 16:19:05 2024 -0500

    Added logging output.

commit f0c1b8399b5234217aa9b7c2b821066cf73f97ba
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:34:52 2024 -0500

    Added setting to turn on and off the reflection.

commit a2c8eed25bf66796c3bc2b977de8a1b52c8907fa
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:11:31 2024 -0500

    Fixed the problem of it embellishing with "personal" stories.

commit 1a1153f92e8dc144e0c97fbcefebd8c9ae70b750
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 09:27:23 2024 -0500

    Attempted with bullet points that didn't work.

commit cc7febbb4a6c7ee4fa0868f1bcb7078aa2856ce3
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Nov 5 16:38:14 2024 -0500

    Reflection works but greatly expands the generated result.

commit 5ceb7360eb42ab0ecde971ba4bed65b03f72c59a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:58:58 2024 -0400

    Adding missing events package.

commit 49d6d557aa3b820b1a04e99b1c2d16e2ffcd7b8a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:29:07 2024 -0400

    Adding enableGrading to missed useEffect.

commit b89ddc882ab8e1add2fd3d3cbac440195a3e84a8
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 7 15:24:47 2024 -0500

    Ignore casing in spell check

commit a57ddb5bb1155e66e95bc6a2f01f6acff1d4820f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:57:12 2024 -0500

    add pagination to dictionary

commit 8ce8022e11835e3a31e3a30985ffb8d021e9e6c5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:47:36 2024 -0500

    change dictionary ui to use database

commit 4b1808cc54c863d0b5dd85e8af1f5c2f1f89c547
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:15 2024 -0700

    Bump to 0.0.67

commit 6d8a99744016bd46f56dd1dcab956ee4c5ad587d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:14 2024 -0700

    Remove some messages

commit 94c9fe22da119c0aa79f1ecdd74648ca3dc658e3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 09:10:52 2024 -0500

    speed up spell check with sql call

commit e1deda80ffa2a40ea1415c7f77fbf1f76eceda7e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:57:55 2024 -0500

    user now selects where to export to

commit e54e7de22e425c8ad449b4d3cc9666c35cabb693
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:55:07 2024 -0500

    export web vtt file

commit c7160673c3e14dd872390161664dfce01924a3b4
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 10:53:56 2024 -0500

    multi line system prompt

commit 575e6d86c36ea69bcc490419e2025417560da2dd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:29:17 2024 -0700

    Bump to 0.0.67

commit e4157001da61eb51ab8fb39cc276e0a3d4d116e5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:28 2024 -0700

    Remove some messages

commit 596fe4aa8911057930487f0c64e4ae9f68ad2702
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:17 2024 -0700

    Clean up project manager view logic further

commit 8b7b662203d20982d6e337ae414fca4bff180d95
Merge: 08c4985 255b39b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:46 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 08c4985e5c4209ac6beaf50f4aaf2881aa39d16d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:40 2024 -0700

    Fix project overview display logic

commit 1a64bcbb361b1f614138611a8f8f0e4f26288dd0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:37 2024 -0700

    Silence logs

commit 255b39b21375e928cd8cd3d4c25970c015b209ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 00:36:20 2024 -0500

    save dictionary to sqlite db when upload is done and prompt user to save after accepting spell check

commit c8f8acc73410016ef428d0cd46c7a03bf9057900
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 22:01:16 2024 -0700

    Fix types, quiet logs, bump version

commit 5d3be097fde748645f00361ebf9cdf6f0ec7d8d0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 23:10:05 2024 -0500

    fix webpack issue that crashed server

commit a03c777ea286c13addb22770d56b1d7e1fa908a9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:54 2024 -0700

    Bump version

commit 1a1904c70dbac87453bb2ad06962aaebada370b0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:12 2024 -0700

    Better null checking

commit 856987e5acec36a6d66e5cc6d94e462df55caee0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 13:37:11 2024 -0700

    Clean up ChatView buttons

commit 485ed93666e2d746d83ca493ac2c21358385b51c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:44 2024 -0700

    Don’t use ‘video’ corpus tag by default

commit b71ab2a72b88faded9c06892e59768b42b4bfb2e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:08 2024 -0700

    Add force reindex command to status bar

commit 0c6fa0de7d1863436564603cee50be57d73edf9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 11:55:02 2024 -0500

    get alerts all at once and update them when appropriate

commit b85649517bbf9cfd88d47234a9d673bd4c3b0047
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 09:00:57 2024 -0700

    Fix importing sql.js and bump to .63

commit e22fbf5f534bdc55565f4d9a599e358ef7e13d8a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:38 2024 -0600

    Ensure chat threads file exists

commit 2a69ccc14586bf42f84862a91c8b877c24277b82
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:19 2024 -0600

    Handle project manager empty workspace state better

commit 5e14add1f2b1b78cda8531d81f766a7572564f5b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:22:04 2024 -0600

    Bump to 0.0.62

commit 1e60f8e1813beac11e0814ff9e68020d54f7cf6e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:21:36 2024 -0600

    Include sqldb in build

commit cd06948270a0b9d2fcd9b3af06835e3d407435cc
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:54:57 2024 -0600

    Resolve some type issues and bump version

commit 1fa18bbd1375446e8f12cb836e6973c43e3027b7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:48:46 2024 -0600

    Improve initial data population in project manager

commit 87d835fb7c8eaba263f1b76bbc5a5d49293a93da
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 15:46:37 2024 -0600

    Include sql.js wasm in build

commit f4e7e30613b7c2e8b22a10e6f80e486c61f9c52d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 14:53:38 2024 -0600

    Support project-level commands

commit 1a4259e86a0ff2f292e55a698198214c3922dbfb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:41:04 2024 -0600

    Add fixme for preview confirm/cancel step

commit c18cb5ed09d75dffa8980232eebd6b41d8b37565
Merge: 8caa5dc 49f4d80
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:37:14 2024 -0600

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 8caa5dc43ee3e6aefb6ac647aeef649fc7afb82c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:37:08 2024 -0600

    Handle multiple previews properly

commit 2f97bba609d841e0b083f2c4112e56fc035a1492
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 07:30:23 2024 -0600

    Bump version

commit 1e4c0d1c1af3ff75c665b536bbd73b443bcab1d3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 07:30:18 2024 -0600

    Restore previews

commit 49f4d80008d4f17646ffd2140546f4af9ddea7b0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 17:18:08 2024 -0500

    UI for suggested prompts

commit 7f2bb61e7a038ab630b1af51702c8d38c0a303e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 17:17:15 2024 -0500

    new styles

commit b34e785cc0acfcd0e49d1c257631befa67b75473
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 15:19:23 2024 -0500

    fixed styling where buttons are invisible durring lightmode

commit aca2f64a7b2109348801548a3f7ec47d4c4c81f5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Oct 31 15:31:20 2024 -0400

    use db for spell check

commit fd7aca7fdf600a1e4f771a4ff6b7ed54db82607b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 12:42:37 2024 -0600

    Upload multiple sources or translations at once

commit 0ba71957acb9f03253990876ec499806e947342b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:27:47 2024 -0600

    Clean up logs

commit 6c6ca243efba790b70cd18608dfe163298250ceb
Merge: 9e70bc8 90135d9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:23:25 2024 -0600

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 9e70bc800550c846802803b58efb0b19e1eef1ac
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:23:22 2024 -0600

    Add debugging flags

commit 9eebd2fb4acd727df36f2d52437fc8ac534f03ee
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:23:15 2024 -0600

    Make translation importer more performant

commit 90135d9c2c56896318098d1ceaebb35ae7f24b21
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Oct 31 11:21:23 2024 -0400

    fix type errors

commit 7c6c733f909af2ee123aca04a9335cb12cb95ca1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Oct 31 11:15:17 2024 -0400

    update dictionary import to import pre parsed data

commit 1f4c7736abe224b971750eb7c6e34a6ed98efa21
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Oct 30 10:15:52 2024 -0400

    add wiktionary import

commit e127c4ff258b279bc31c40575d0afc727b970f17
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Oct 29 17:05:42 2024 -0400

    add sql.js database

commit 6298b7c3119437f584a80098ca043731ffca9dd7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:05:55 2024 -0600

    Fix some types

commit c0824ab97240ae6d33d7b38784114953071e434c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:05:38 2024 -0600

    Don’t use a dummy source when importing a translation

commit 5e0787358bbd5f216dd1d7fbdcc25ad5e1b8e638
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 20:33:06 2024 -0600

    Enable translation-only insertion of downloaded Bibles

commit c2532417babc62c7d6457b8a51659686933bb79b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 16:38:38 2024 -0500

    handle the new prompt format

commit 3380877c585781da23022cbbf3e810626eb4df15
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 16:33:46 2024 -0500

    search cells UI

commit de661ad30ec0ea0600e45f0845a0ce990e0d192d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 14:07:34 2024 -0500

    better k setting

commit 86f652726d654054fa6100f351910077bf38e746
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 14:04:15 2024 -0500

    hasApplicablePrompts

commit 405a449d66ed2cb908ffaea120f701ce7c921303
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 13:57:23 2024 -0500

    removed smart edit alerts for now

commit 44f211ce633f65b60bc9ecc75bb93d48da008b9d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:46:02 2024 -0600

    Fix UI for file selection when not downloading

commit 94bd1ad645ac6160e314ff797082992cf5c1fcdd
Merge: 4b233d2 84c8395
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:25:35 2024 -0600

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4b233d299b94b7eb2cfb29a6fa348b142feec877
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:23:52 2024 -0600

    Restore and improve upload ui

commit cee4d627a3e8424bedbe2a11c2fca424e8e35a0f
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:10:20 2024 -0600

    Fix vref alignment

commit 14d519216fd6e90b1183e13ebd16d6fcd66a17dc
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:00:48 2024 -0600

    WIP: bible download tra…
ryderwishart added a commit to genesis-ai-dev/codex-editor that referenced this issue Dec 19, 2024
commit f4b51c5b5ca912583e8a82cacd5fe997220ecba3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:59:10 2024 -0700

    Bump to 0.1.3

commit cc5eda1b77046aaf56f6b54e6890eadfa1c2bc58
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:56:18 2024 -0700

    Use corpus marker to group navigation items

commit 16cf6299ff6c863f065168ddd1d657080b93fc89
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:48:52 2024 -0700

    Drop old navigation; add a new one

commit b8df3850b701be03c877b35aee5d1089de855083
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 22:34:13 2024 -0700

    Minor type fix for v0.1.2

commit 73fec2732f345a7e554a77de4843cf23c52b1033
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:15:03 2024 -0700

    Bump to 0.1.2

commit 149ae03acd66cbb5c44dd4b677a1008449a08b19
Merge: a100f37 cc3ca77
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:14:14 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit a100f3721244b496920a4feb76219d654441b421
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:03:35 2024 -0700

    Update version to 0.1.2 and enhance API key description; comment out unused state store update logic in inlineCompletionsProvider.ts

commit 2d418dd4fdadc2d9f2f0a4787f330d5b925fbfc0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 16:52:18 2024 -0700

    Use custom auth-defined llm endpoint if available

commit cc3ca7790434775194d427eb8e4084a4c0b1376b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 16:43:52 2024 -0500

    Refactor llmCompletion function: Remove early return for no similar source cells and fix comment formatting for clarity.

commit a24e2662a40ca48dba22781b64ef92b9b27bf73a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 15:57:04 2024 -0500

    Ensure chat threads file check only occurs if workspace folders are present in CustomWebviewProvider constructor

commit 0b06069d3fb234b41d72bdc89acd1e4d630f815b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:44 2024 -0500

    Update version to 0.1.1 in package.json for release

commit 84a6dd188903220a4b5c7023dd45870074479dca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:18 2024 -0500

    Enhance password validation logic in LoginRegisterStep component to ensure confirmation check only occurs during registration.

commit b5eedbb49a97af2d8eb7bc54d3ddc991faa0195a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:26:59 2024 -0500

    Update version to 0.1.0 in package.json for release preparation

commit 02fcdcdcfb599d6e2daee93ea270240110d81b74
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:18:20 2024 -0500

    fix absolute path. Use generated local path instead

commit f5bce323d14af0aa2b4c3618f990e386952be6aa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:45:59 2024 -0500

    Refactor LoginRegisterStep component: Remove password validation during registration and adjust password strength color logic for improved clarity.

commit 5900b8f2e53322f664b6e0ceae5c3066755c1e76
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:30:42 2024 -0500

    Refactor LoginRegisterStep component: Introduce centerBumpValue for margin adjustments, update confirm password validation display, and change onChange to onInput for confirm password field.

commit cc3e453a65e7608ae269efb89a3ae1ce68518c27
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 12:12:27 2024 -0500

    pasword strength shown as popover

commit 331f1b7fddadd325510992e15d8440127731b9cc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 11:37:13 2024 -0500

    add show pasword button to login and register

commit 4c11e2a22ba183c9f4f580937aa6fb807fa1a0ca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 17:02:50 2024 -0500

    Refactor stageAndCommitAllAndSync function to remove workspaceFolder parameter and improve error handling; add syncProject command to project manager and UI for syncing projects.

commit 5cad490f820961405fe3a7cbe556a8ac5c1f695e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 15:07:51 2024 -0500

    fix compile errors

commit 22c498735eb6748fcdfcf1920762676fc2e11a6a
Merge: 3bdf889 64505b6
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:17 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 3bdf8899275bdc3cffaeed636867d5b8dc13b5fa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:05 2024 -0700

    Hide new chat in parallel passages for now

commit 64505b61cf95649130e1910e74e76b7b9bb255f1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 14:46:22 2024 -0500

    resurrect chat

commit ad7c6e99b47f43bc67f9994dda57adb6f8655784
Merge: eb50c13 4071c43
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:56:25 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit eb50c13eb645d217bc1f21df2fc0cf2b9731cdb7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:53:25 2024 -0700

    Add fixme

commit 1243bc80008f3150b4b88d75509b605db8b618c4
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:44:32 2024 -0700

    Enhance llmCompletion function to filter out current cell ID from similar source cells. This prevents re-predicting and generating duplicate content from previous edits.

commit 957f0eac8713adba44b9dc376e33591b8924cbec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:42:26 2024 -0700

    Remove commented-out source control provider registration from registerProviders.ts

commit 4071c43811fdd8cbce63bf227dc0aaa95db89c10
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 12:41:55 2024 -0500

    rerevert source blocking changes

commit e35d394e564bc810d394d6bffa41b37b3e4714a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 12 21:04:35 2024 -0600

    fixed merge

commit 7c0af25c008342d1993a9d3185e0c56034e02836
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 15:54:52 2024 -0500

    remove place holder name

commit 5ca1f27fb50da35a35484c5d905ba41383ec3a87
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 10:30:25 2024 -0500

    user name and email now come from auth

commit 0e3191126183eb2a9e4c3ee28c0f2412c42338c3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 11 11:55:49 2024 -0500

    Revert "Ensure source doesn't listen to matching codex updates"

    This reverts commit 182251e018b9022174b3917e75d99770c94f357b.

commit 182251e018b9022174b3917e75d99770c94f357b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 10 10:47:18 2024 -0700

    Ensure source doesn't listen to matching codex updates

commit f09441055ed8f33706368286fbcd267cde3c29b0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:13:29 2024 -0500

    properly dispose of webview in startup flow

commit 5521a408669445575fb6fb786734c1e8e09c2173
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:12:56 2024 -0500

    If a file does not exist ignore it in the commit

commit 6a1c1c599118709ac28d795ead6eb904386a8dee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 9 11:09:01 2024 -0600

    updated global message type

commit f4bd30a4c332db347e10ac388df018565a11238b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 17:13:44 2024 -0500

    Refactor startup flow and metadata handling

    - Updated the extension initialization to conditionally show project overview based on authentication status.
    - Removed redundant checks for codex notebooks in the initialization phase.
    - Enhanced the startup flow to check for authentication before sending metadata responses.
    - Adjusted state transitions in the startup flow machine to prompt user for project initialization when creating an empty project.

commit 61e97621dceccaf2fd4fb5954eeeb7515c4626dc
Merge: 4dfe25c 639aef8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:33 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4dfe25cbc7937b9248c69de573232a97feb1a555
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:26 2024 -0700

    avoid unnecessary ENOENT errors

commit 639aef8ae327052b132df8123609a76960d55f9b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:31:40 2024 -0500

    close startupflow if state reaches already working

commit 3089ba28180de3687df8ad979ea89adbb5fa22e1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:14:49 2024 -0500

    show init screen in startup flow

commit 79e20914d92e127a6d66bc59da053b02d00a5fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 23:36:29 2024 -0500

    feat: block git commiting if no remote

commit 3e1f76f89e0b4f0c3ca4ea7c7fe37172d5eb8fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 22:10:29 2024 -0500

    Use top level refrence for auth store and add password validation

commit af19c3f511bb06a6dbb5068659e547e621869f43
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 17:13:38 2024 -0600

    hide empty messages

commit 55b294b542ea7b964c39dd9f520a15e479405de4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 13:06:45 2024 -0600

    Chat can coninue after pinning verses

commit a8400180b74dd007cbe3b13d44df68702d219b6d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:23:07 2024 -0600

    better spacing

commit d8408d323435b17f86365ff1332eec997ffafbc9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:22:34 2024 -0600

    file save fix

commit e1c00822833a558b5dcf1dcbb5039c95051c5908
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:16:53 2024 -0600

    Chat can now pin on it's own

commit 8cabc60df9509872ab28fbaf363dcf7086f2e9eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:37:42 2024 -0600

    Global message with destination

commit 75400a7635e125f5de8b639f7181b47183d870b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:51:33 2024 -0600

    merge

commit ff7be46cf41c354f774835b4b22b9c9e04c69dc2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Dec 4 15:02:03 2024 -0600

    global provider

commit 65e73b467fe92c675d32c3d09be63c74d7b24905
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 22:27:47 2024 -0500

    add email to project management so we can commit

commit 0fe9ce94e88e57cc48cb19765a42d6fc654786b5
Merge: 326582b 6ef8072
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 13:27:32 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 326582bf83ba81f74048817020b4a9fd70135c75
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:58 2024 -0700

    Add mock classes and context creation for testing NotebookMetadataManager and TranslationTextImporter

    This commit introduces mock implementations of Memento, SecretStorage, and EnvironmentVariableCollection to facilitate testing of the NotebookMetadataManager and TranslationTextImporter. The changes include the creation of a `createMockContext` function to provide a consistent testing environment. Additionally, the usage of the singleton pattern for NotebookMetadataManager is reinforced in the test suites, ensuring proper initialization and state management during tests.

commit bb2d4a8bedba29eb95b64b09921e324eec2693c9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:52 2024 -0700

    Refactor NotebookMetadataManager usage across multiple files to utilize the new getNotebookMetadataManager function, replacing direct instantiation with a singleton pattern. This change enhances consistency and reduces redundancy in metadata management. Additionally, minor adjustments made to comments for clarity.

commit 6ef807269412305d38e6bea782467c87111ab70e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:59:24 2024 -0500

    fix type errors and make git commit command

commit df5630a9730347b0fedb0c4453805a31e7166529
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:05:46 2024 -0500

    renamve test file

commit 3d5406dc33beaa77accc4af98ae5d13b6dee50c9
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 08:49:54 2024 -0500

    fix message posting and add stage and commit util

commit aa0bde14d989e5c8438e0b6f1954e59442e24586
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 3 16:48:51 2024 -0500

    init git when initing project

commit 4409656a4bc2b80b60c10fda723206f070e3bfec
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 14:20:07 2024 -0500

    show publication button only if repo has remote

commit 478917e456b6e5d72805be536d0c221742d39606
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:16:36 2024 -0700

    Fix import path

commit 5bf45734c192405f39e70b567ea1bb6b325d598d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:15:58 2024 -0700

    Use singleton pattern for NotebookMetadataManager

commit da95948c7353977768fa443a819f1ea3258c02e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:07:10 2024 -0700

    Ensure uppercase format for consistency

commit 56930abb92f4430bb1b40b89dc34843eb51f14bd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:04:01 2024 -0700

    Enhance error handling in UsfmSourceImportTransaction for file reading, decoding, and parsing. Added validation for book code format and chapter content, ensuring robust processing of USFM files. Improved error messages for better debugging and user feedback.

commit 1a7812e26c296fb203b029563930106783690287
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:48:53 2024 -0700

    Improve error handling and transaction processing in SourceUploadProvider

commit 8ab3a139be7393345c699ae101b0ed795ede87b5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:36:43 2024 -0700

    Refactor SourceUploadProvider to support USFM file types

commit 6fb31b3d3242adc26d1baebbb8e53d87367434e3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:31:00 2024 -0700

    Add UsfmTranslationImportTransaction class for importing and processing USFM translation files

commit 2b2d15445bf0a0c6d99490052c5e503b87be25ec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:53 2024 -0700

    Add UsfmSourceImportTransaction class for USFM file import and processing

commit e109dfc727cf1ab9f1ae180e24c10956afbeca74
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:31 2024 -0700

    Enhance LLM completion by filtering similar source cells for overlap. Added tokenization to improve example selection and log dropped examples for better debugging.

commit 23adf482a52fcc6d7278a08dade445daa9c1a868
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:51:47 2024 -0500

    Reindex after importing a file

commit 22c2846a5be5787c2dd23e45c33666f88b916a47
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:45:24 2024 -0500

    Hide all projects from project overview

    This functionality is now handled in the startup flow webview

commit d985070dd9fd7b1fce52de0ca3d66ec6806e4462
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:21:20 2024 -0600

    Revert "Chat enabled autocomplete (work in progress)"

    This reverts commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b.

commit 029c4c1af7165946971e8850d14879fb66254f99
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:48 2024 -0600

    Revert "some progress towards chatbot entry"

    This reverts commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd.

commit 0c361f1c000bab0dc07dc994242f27446ba22d8b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:45 2024 -0600

    Revert "chat tab as default"

    This reverts commit 13b62d2a54a4859a862a8b56d923850f8170e463.

commit 52f542ec2d4d0c00beca8a75d308db39f9ed03a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:38 2024 -0600

    Revert "fixed editing"

    This reverts commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9.

commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 16:04:22 2024 -0600

    fixed editing

commit 13b62d2a54a4859a862a8b56d923850f8170e463
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:46:00 2024 -0600

    chat tab as default

commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:17:08 2024 -0600

    some progress towards chatbot entry

commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 16:45:35 2024 -0600

    Chat enabled autocomplete (work in progress)

commit 1bdf4f2b7dbd100212668191c44987178937e81f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 10:40:25 2024 -0500

    move project create to a util and skip setup if project is already setup

commit a9288611a03a8e48fb1965290842cb355848409c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 29 10:32:30 2024 -0500

    fix types and styling

commit f8fcfedfc169543559adbc727b522673047b4a5b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:16:16 2024 -0500

    load local files if there is no auth

commit 95b33d747491b3e5543f0594934af2117632b884
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:07:07 2024 -0500

    users can now open a existing project from the start up flow

commit 308d669aaffa60c2b8980e3f9d967d8d88a9d39d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 11:47:16 2024 -0500

    finish clone process in startup flow

commit 0c95b8e8ac2fd6da3b002b2f6d26b1984231ffaa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 27 00:00:15 2024 -0500

    fix content security policy in startup flow provider

commit 82bba59aa29d3c2a0b46546c95cc40adbc6ea963
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 22:46:43 2024 -0500

    fetch list of projects in startup flow

commit 33fd4b0e7be17780bd13d4b13dcdba5ccf11f139
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 14:15:48 2024 -0500

    render project list

commit 6336ba6dd6cedac70f3a378cf7a0e18aafdf8703
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:46:16 2024 -0500

    list projects in project view

commit 1f81adb23b9d5cf46713a245b7fac7fb99e504f7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:43:59 2024 -0600

    much better apply button

commit 4ffaaea21bf6692d3ff4da55856b2ce9a45b352b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:42:09 2024 -0600

    fixed bug with old prompting

commit afc6b00175ecd12c7d539392d5c73fe01c2a07eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:07:36 2024 -0600

    chat menu opens by defualt

commit 3683b067ec14759b98426959892caaa834fa42ea
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:04:12 2024 -0600

    fixed blank message bug

commit 107b401502dc644988312226db179fe4f220b8a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:51:58 2024 -0600

    fixed some streaming problems

commit b2563854f5902bc9c0da7677edadf19bedd3b994
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:34:23 2024 -0600

    less radius

commit 8b5fb8c871f276c0f332250eb591e112be15e573
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:30:35 2024 -0600

    fixed styl

commit 722e43ca30e5b1b66119667b959e6676763020bf
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:25:19 2024 -0600

    feedback on suggested translations

commit 902a94680bd4a1e20d7bb69b4735af891b2d4498
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:01:44 2024 -0500

    fix preflight command names

commit ee77a7c61635dd2f66fe53321663bf26d6c8e6ad
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 12:20:45 2024 -0500

    skip workspace setup if one is open

commit d4a08c2448ace427b56f8e5aada5fd25454f1c4d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 26 08:45:53 2024 -0700

    Change default llm model; increment version

commit 5636e480085d498e4a8104a3f45cd3a1f53f5619
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:38:10 2024 -0600

    removed chat webview

commit 4f8b697893ae0641e12bd3b183e1d6d67d18ab50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:26:15 2024 -0600

    removed prompting

commit c71025165a082208f08c47044d8c515fbd8bc399
Merge: 40db83d 000c084
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:39 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 40db83d820b46563cd359d159ee37e1e058b181e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:26 2024 -0700

    Clean up state sharing across activation, provider, webview

commit 78745f0567d5f14f4236f8093aa35d08fba7cbf2
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:04:39 2024 -0700

    Overhaul of startup webview

commit 000c0840408730cd61e8eafa223cb28cda5168a2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 21:43:03 2024 -0600

    delete old chats

commit 5ebe8a519df84c22ca849a1cccbffa322d839cb5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:49:06 2024 -0600

    better alignment

commit 50a3c1c59294c626ca722ff39bcb864e7be57e87
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:45:45 2024 -0600

    slightly improved session management

commit 940b16dd180b92751c2fca7184c158016456ae7f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:21:08 2024 -0600

    loading and saving chat history

commit a75b59189c9b8476ca03ee5d45fdbbcc3645845f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:27:06 2024 -0600

    merge

commit aa692ce62642e451ae28257602e485fd717d5d8f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 16:56:06 2024 -0600

    removed ChatView

commit 6f0bafc636c33bd1c97ca8afbfbdf847e8739faa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:44:54 2024 -0700

    Align preflight with startup state machine

commit 411ae7cda7867d0dcd536cdae10a449002c56f1d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:40:54 2024 -0700

    open startup flow using state machine logic

commit 084234398485b63791a66c6a89e6ba80a8120cdf
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:54:57 2024 -0700

    Handle test suite compile errors

commit 09463e61c522d49a9fa7170fdf680f9d99621b38
Merge: 4b22e1c 1d9d551
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:21 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4b22e1c4d09027034f89ab8dfb4e610ac5696adb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:18 2024 -0700

    fix build webviews command

commit 1d9d551db3424d0a80cf5ed93de414dc8aff0474
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 15:53:31 2024 -0500

    add startup flow

commit c0c15f1d87d9646fcfe8e4ded84b2a4f8396de25
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:22:17 2024 -0500

    revert type changes

commit d6a1b804625bc16398bad23e1c28f0609bdfb521
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:19:21 2024 -0500

    revert changes to source uploader webview

commit dfb56143ed169876fa9de312a66b1849005a5aa0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:46 2024 -0500

    move logic to startup flow provider

commit 9749771a23422074b6447ec62183ccb353820450
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:28 2024 -0500

    revert SourceUploadProvider.ts

commit 2a7b9da01dd60a1489d09c1c81bd1dfa3b51ea30
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:32 2024 -0500

    add startup flow to build

commit bcfd8822b01b9f20a0b9cfa7313241e5ab8fbbdd
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:13 2024 -0500

    register startup flow

commit 27f48552ca561e026a7b32460001dfcd1c93bd5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:00 2024 -0500

    add start startup flow

commit 791cab17674f8a9adaeb4594e5dece9129bfd80b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 13:39:01 2024 -0500

    add password confirmation and fix ui

commit 1f418fdc79d044180e0cba92884292711ce0deae
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:38:03 2024 -0500

    setup signup

commit aca437967f8201c2bb320fcb1bf69a667b4eef40
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:01:58 2024 -0500

    fixes to show auth step

commit 2be23ac631d86d965214e5a9d1c0aff3683b7534
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 15:55:49 2024 -0500

    work on showing auth in setup flow

commit d615679856af1cbbc760e28741b1ea3e2b74736c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 12:10:31 2024 -0500

    add check and change command names

commit 036f5f4f7cc9d733cbbdaa9152afea94e5c1ce9c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 11:20:40 2024 -0500

    start auth flow in upload provider

commit 3e8b8bb943fe583ad3d74b9c8deaa5391691e0c1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:27:35 2024 -0600

    better video ui

commit 15695ec8253af9e5260033906e4f40ef7ff8b16d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:16:22 2024 -0600

    working video player

commit d3567a051800ad9d0a8b530d325d58085738f6c9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:15:50 2024 -0600

    bible project urls

commit 10efef06a54590908a2e64c41e9ec55e2c539e82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 18:33:27 2024 -0600

    removed old tab

commit e87922df4ca39da7dd1b675dd7d4408c6bb573e4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 16:25:15 2024 -0500

    Added CodexCellDocument webview only update event _onDidChangeForWebview for proper revert functionality.

commit 99b9d69babcde4ba0c6f17014c31c2ae6e007e2f
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 15:18:28 2024 -0500

    Added watch for file change to reload.

commit 6d6b236bac0bbc5a30e3bd20dc8cffeba0afc9f1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 15:26:31 2024 -0600

    edited user prompt

commit b887039bb2de370bda8b1e303e401cb0a39c8285
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 14:10:58 2024 -0600

    uses language config

commit 57f4ae1f33333043996f0c054a8447c963ed8dc8
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 13:57:39 2024 -0600

    better prompts

commit a5439914f6164a43c14ba47ceefb36510891acca
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 22 11:49:14 2024 -0700

    Disable workspace trust call for theia trust compatibility

    Cf. https://github.com/eclipse-theia/theia/issues/10472

commit b90b464ff386e4c6723a98571d58cc959d7a8ea4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 10:27:30 2024 -0500

    Resolved compile errors in the test config target.

commit ca78a7bade0fe1571b48fb046fe6555a24a92a50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 01:55:14 2024 -0600

    better prompts, ui, searching, and saving (but that part is still a bit buggy

commit 09eec8a33bb6bcba66a60da7a61011bdb3833210
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:47:13 2024 -0600

    Chat now predicts the next prompts

commit 9e7a747690250bc2da560bccdcd737e21ee1db06
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:34:04 2024 -0600

    Removed Teach tab, more combined into the chat tab

commit 0fc51a04d068330efb570c9dd70b410075c3606a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 22:04:59 2024 -0600

    apply

commit 3cdd5adfc3ea9be486335bb3469a757a90b96832
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:45:29 2024 -0600

    more than one TranslationResponse cell, and more extensive regex

commit 037bad6fbe76d6198251048b67a76174978c6bf0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:20:43 2024 -0600

    toward a unified chat

commit 84f65c09b5dcf4dd04dcf9d7eb000e8c291a459f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 15:17:06 2024 -0600

    hide navigate button

commit a02439aedaeec9f717bad6763f85ef858df3bbde
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 15:11:24 2024 -0700

    Some copy updates

commit 57388274f8a471b217621be2e7f53f0b59962a7a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:45:05 2024 -0700

    Ensure navigation treeview is not mutating data

commit 3e152ab251d5b4f617befdc50b6c6741fa827ada
Merge: d2c0551 a6892ab
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:16 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit d2c0551bb41185ca0a7c170b5eb625ce13fc3184
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:12 2024 -0700

    Move command from top level

commit 1c7f9eaf0e7f842999e5b0e2e107d54c2a53f3df
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:04 2024 -0700

    Handle fatal error for missing file

commit a6892abecfce5852a9644c70a30eded5c6ba2d3d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 14:02:03 2024 -0600

    some progress towards a working apply button

commit 6449addebc74863b2508a407f99a6ed8b136642e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:04:28 2024 -0600

    less word breaking

commit 1c0e2ea351e8274b435e067e4f612264a71fd13a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:01:21 2024 -0600

    backtranslation word wrap

commit 4a54baed95d7ac8e528d22c65ad6cb4cdc9a01b6
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:49:12 2024 -0600

    smart edits now get memory context

commit f332f802baf70b88f7ba10fbbf8d118a25b5d065
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:17:51 2024 -0600

    fixed prompt

commit 54b0984d41f1029f84e79815782fe20c104b5984
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:13:25 2024 -0600

    rename to be more clear

commit 4dc337ee20db9a7ae49e8f0ff2da6b5c91ebbbee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:14:53 2024 -0600

    search settings and pin all

commit ddab14a8b4d919d51f958ce18e327c313876db50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:04:59 2024 -0600

    more padding for checkbox

commit ec7987dc3914e61cbe3e7c850703081af9175a36
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:02:51 2024 -0600

    better index for searching

commit 5462ad730e7167ab7e6dd5b49b53aace519c7b92
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:08:24 2024 -0600

    clearer UI for context

commit aa34cbe48e4857c1d71cfce881ae9281654520d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:07:38 2024 -0600

    updated assistant about the new tab

commit d43794975fd0e4da39f8b7a4805e1eff2caf3018
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:01:41 2024 -0600

    some bug fixes

commit 3a7fbe424bd1b3a75085dc17c077e4a2c3deb303
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 21:32:50 2024 -0600

    much better memory management

commit f414808c4b837ba9353b2b27699202f6c6f14b57
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 20:23:51 2024 -0600

    unified styles for both tabs, better chat etc...

commit 49b5f88d445ee79b3b41e4cfb78200a1957bba75
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 18:34:50 2024 -0500

    remove builds with nothing to build

commit cf5da90733be6f738f48bf9b9aa7fbbf22f88e64
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:40:16 2024 -0600

    navigate to next cell

commit 91e25eeea2e0a833c4d71a5e051874463fb684a9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:45 2024 -0600

    somewhat more stable

commit 69acedff6572d624228fff761282793f44ceff7d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:05 2024 -0600

    new command for finding the next untranslated source text

commit 92bfaf3d1ac41033b5066cbbada9529de2014ba4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 15:01:25 2024 -0600

    skeleton loader and clearer UI

commit 3ab2112b2756a423e80d7a9dd61ddc72dc8cb94a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:56:23 2024 -0600

    UI a bit better

commit 8529a05814fe234db4a171ff4d1ff7433f2869ab
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:47:18 2024 -0600

    working with untranslated verses

commit e0accd726d7c5cd21d0875c9c26c4e4f7bae7180
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:50:02 2024 -0600

    pickable target passage

commit 5c3ee120d25cbfb703fb1dbb8d7113c95524df1c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:25:06 2024 -0600

    better UI for silver tab

commit b8bf1ee040aa66871840865eab91bc87563c5fb5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:43:43 2024 -0500

    remove build commands that don’t have folders any more

commit 0a8589ceadc07212d78f64c06fed31c5b52c2f5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:14:49 2024 -0500

    remove unused code

commit cba5ce42dc900c3b8b664daff3ab6c33a3bfdd04
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 10:44:21 2024 -0500

    rename vars for calrity and return indecis to extesion for use

commit 6020e97fed9d61c19f7ab2d4d559d2d7b42fb9ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 17:05:04 2024 -0500

    index tsvs

commit ec3d1c8cf417e2701d1a7a0683a202c506c90472
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 16:17:36 2024 -0500

    init add logic for indexing tsvs

commit adc76961d82f085ff9727eb8db03135a523b0715
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:17:21 2024 -0600

    new tab and css file for chat input

commit f1f83f911262f0ecc8c7ddf2f76dd6fe2bf9132b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:16:43 2024 -0600

    start on silver path

commit 50da7998b13d1b8d07a1f0544fe9b0fdbf0a70f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 16:26:49 2024 -0600

    better organization for codexCellProvider

commit 0b5943eb8a1784edd799a11422b11f8d5746da9b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 15:55:41 2024 -0600

    better memory management

commit 982c26d0122ed3a0bba88bc11344334dac041856
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:47:35 2024 -0600

    silver path start

commit e6f7538c95d60113c05c2b3bb18c93151641e207
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:20:07 2024 -0600

    improved system prompt

commit 80fee48c36827af4c77e92db6360df6dbd73d8d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 13:04:53 2024 -0600

    better look for quoted text

commit 24f86b857236061eeef7679e5dd6f75b728db4cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:52:52 2024 -0600

    fixed json bug

commit 306ffb68a072e7c1723bcd1504fa09780e5c70a5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:42:06 2024 -0600

    better prompts

commit c9f8a861b2152075961c7cf716de0b5d98d43bf4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 23:27:32 2024 -0600

    better backtranslations

commit 7f7d07d8d2d2f659928a9dfd9dfc0312f7946eaa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 20:29:16 2024 -0600

    better ui for backtranslation

commit 55979af809e57b82745c6eff4ea4a1ec3b0739e0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 19:12:54 2024 -0600

    working backtranslation

commit 24cfc273edffef93efaf198651b4f10e77aae9a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 17:14:11 2024 -0600

    new command

commit 07101d5fb50d500f2a6034c258105248f4306ae5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 16:27:48 2024 -0600

    backtranslation

commit f6401b245f3b0c2a8820624e1a6c96df3965fc50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 15:15:39 2024 -0600

    token saving context

commit 5e116e9453edb8770524886235e80f0f921aa773
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:33:27 2024 -0700

    better cellID display in chat

commit c9ec863cec12a683d35b60601cd719f376cc4a42
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:04:44 2024 -0700

    better system prompt

commit ee7588f5e932ba3aea70789e5c17978a844037b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:57:09 2024 -0700

    working reload button

commit b5fd44734b5c2a2eb7eb443261728de4043373c5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:30:42 2024 -0700

    fixed bug where dictionary didn't update until a refresh of the app

commit 95071c292f8a45c6b0e1cbaed4c047e427c13d53
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 11:54:58 2024 -0700

    some improvements to tabs

commit 05ded57fe0ab6042f1ab56b34023b2c78beb5694
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:14:16 2024 -0700

    small style change

commit 5d56a69b2a7aeab4c61f047b14d1aa400a0a3d09
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:07:08 2024 -0700

    better organization of parallel view components

commit fd2980a8148b338f02a08f452bffc6b8ac4b8fdc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:28:28 2024 -0700

    better styling

commit 1b8d2551876d3baaefc6a75e1259135d3c5bfc0f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:22:17 2024 -0700

    codex help

commit cb4de766b77155a6c993f98ccebc43632be4eddd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 15:48:50 2024 -0700

    universal pinned prompts

commit e902bad3323b50e55e23c8da920ba3cc9c4df52d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 14:22:25 2024 -0700

    save generated prompts

commit 74aac37fc2d7f436eff14f24d93f436811dc9318
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 15:16:37 2024 -0500

    restore needed css file and reduce button height

commit a502d88bbe3000507112c8b2a408f1c1492690d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 13:05:07 2024 -0700

    better organization

commit fc11fd8774a94c37006e4c66119aee44219b7fb5
Merge: 1f470ad 0c9e677
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:18 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 1f470ad012d02f48b2bfdeb253bc377106cde5cd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:01 2024 -0700

    A bit more comments style cleanup

commit 0c9e6775a4ba5e3dea4136992223420289cc4488
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 14:40:57 2024 -0500

    allow user to change video player height

commit ee44a7248ab3753e300f80cca1697ceb5f2b3b4d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 12:08:34 2024 -0700

    components for prompts

commit 6f09e260fc48120116193e34cbe001a55b4255b4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 11:53:55 2024 -0700

    New component file

commit 719408684c760d8cacf947bf14ffb7571dcfe309
Merge: dc17e7a c75b57d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 11:47:59 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit dc17e7acb4830e0206a27494a0110bf605a8440a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 23:35:57 2024 -0500

    WIP: Add expandable comment threads

commit a09af37a12c018218327c7b9771075ec44e57ee8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:29:28 2024 -0500

    Tighten up some styles

commit ed39dbbf1adaff4d3c7af1628ec6af37a5f6d622
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:22:16 2024 -0500

    Add icons to comment tabs

commit ea0cc154f48d808a8e309f050e3e03a5a7113360
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:05:56 2024 -0500

    Add tabs to comments view

commit 12303ddbffee26a2e55cf0e4e0ff46bc826e4817
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 21:51:30 2024 -0500

    Update comments view styles

commit c75b57df8eb77feb1d4aa83666a4b7c61ebe6465
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 21:45:06 2024 -0500

    fix unsaved changes prompts

commit f0685d10004a53294361eafe82b3623fb9eaea9e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 19:35:33 2024 -0700

    pin verses from editor to parallel view

commit 7c53dc19b186a319eb61e73f4178b0d3b2d14c41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:59:16 2024 -0700

    force activity bar open

commit adbb6ee1eae3a6432b0ed02651d3126a29196bd4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:03:14 2024 -0700

    better source text

commit 025c0366be1eff44835c54ed1ca07fd9c39a85cc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 17:18:17 2024 -0700

    show source text in editor

commit 4b745f827c5bad1ebd8e2a36f6047a47c0765eb9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:57:00 2024 -0700

    don't show needless revisions

commit d0b3c7e270ca839b5b3fd919e450e86f873f1969
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:39:34 2024 -0700

    return void

commit 4ee7f30f58bd44a26fb153aa7125760ad5cffd5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:35:54 2024 -0700

    third person was weird

commit 1bbb4a72fc2aa6f12a8f8bd07d03336f0424ba0d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:23:33 2024 -0700

    better UI, and prompts

commit bf60e4b572ca667e6d795689fbf7b4d5a77aff33
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 15:43:21 2024 -0700

    much better chat in parallel view

commit 9647f6c16c0649d21aff00c47e292d4d44fb291b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:59:36 2024 -0700

    better buffering (aka no buffering)

commit f95c348fc0240548610fb3f1643df0ce9e30fb19
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:50:37 2024 -0700

    Way more consistent smart edits that don't magically vanish

commit bd157a18e8608673a0ab1870bff9a39ae3d157cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:37:22 2024 -0700

    removed buggy cellChanged toggle

commit f83aa5633c2a604e3f6229751c265e4ad0d9b469
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:06:56 2024 -0700

    less padding

commit 72e758384d70b79561c1ff46f370e8c118cef8da
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 16:03:12 2024 -0500

    webvtt filter out cells with no timestamps

commit 35dd7ad581b10639fecbd1919a465fead84a4153
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:52:59 2024 -0700

    save button

commit 95150e9589a0fb61b117eade6a26852f4a5bc0a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:28:27 2024 -0700

    Revert "fixed(ish) save button"

    This reverts commit 2dc417830df86959d77057ef9740d93dd68f9216.

commit a9169253cbc0efbdf2e0278db839e27dd6c7d933
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:27:09 2024 -0700

    Revert "Revert "allow user to add paratext cells above or below""

    This reverts commit c2f96bc60aad976c22d7ef2679f615c35916ad30.

commit c2f96bc60aad976c22d7ef2679f615c35916ad30
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:21:42 2024 -0700

    Revert "allow user to add paratext cells above or below"

    This reverts commit 459beea4c93788af0ecd5f361258630a7764455f.

commit 2dc417830df86959d77057ef9740d93dd68f9216
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:10:27 2024 -0700

    fixed(ish) save button

commit 459beea4c93788af0ecd5f361258630a7764455f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 14:42:17 2024 -0500

    allow user to add paratext cells above or below

commit 0d8fdec3b385581ce124cf00a665d03994d4cc5e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 12:03:28 2024 -0700

    hamburger menu

commit 654918290c8965b4de34a4258a913c8b56105868
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 11:39:27 2024 -0500

    fetch more spell check responces for better spell check results

commit ac17de15b031e9e4857bc704b5c1bc8593436e73
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 19:17:26 2024 -0700

    more search results

commit 9d3bf671a95754b5689fa022eae6f71b6754fa15
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 18:33:14 2024 -0700

    fixed autocomplete and dictionary buttons

commit 7c9c6483afdde181762d3c70069c1ef770cca22a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 18:29:15 2024 -0500

    speed up spell checking by slowing it down

commit c0eca8af77c73d7251a38e69c685fa9f5b272c89
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:22:27 2024 -0700

    new UI for suggested prompts

commit ea9313eab138a8ac3df217f51f0b4e2c7aa6eebd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:58 2024 -0700

    removed old style

commit 48fc1960fda56c08a007a0fd5ff1cde811d32c82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:44 2024 -0700

    fixed the way smartEdits reads paths (i hope)

commit 04377ec8c99e4a51f1684cabb05e890697528e59
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 15:59:00 2024 -0700

    much better toolbar text slider

commit d15e38b23769e9d8feaecfcfad2b69ab41f4059a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:31:15 2024 -0700

    fixed width of textarea

commit 09f4dc87316078ecb8f10a1c38a755133cdd1dd7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:18:35 2024 -0700

    removes html using the util

commit c0cf03d70a03b7a70fc9a6410af5a87b15d5a302
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:09:10 2024 -0700

    fixed bug where words are removed

commit e438d5636d85aadf1d7ddd7d785ab7e252b9ec76
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:01:18 2024 -0700

    some better more compact styles

commit 524954358cab2f9a0b101885a9520ee832944a5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:42:51 2024 -0700

    removed debounce

commit a49134842e07c5490c3d9278415d627e671d5971
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:39:50 2024 -0700

    fixed cell wrapping problems

commit 48426bae8ee9ebfa1bf98721061b0d2d0ddeeae0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:54:38 2024 -0700

    hide alert bubbles in inline

commit cf48eea9754c670886415e05a395e6d939e7b1e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:33:41 2024 -0700

    filter html before saving

commit 7eb2f79f1c5b7b55da4fe26da2b3ca5eb0596976
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:35:22 2024 -0500

    turn off debug logs

commit 6d76ccbcad2ed06cb76b76de209d80c6e0c928d7
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:33:58 2024 -0500

    remove unused logs

commit 0dc340318067fc33487686d8897852c32a07237c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:56:45 2024 -0500

    fix logic blocking spellcheck

commit 6bf27ffff9e047ee264e85c4d6c556b6d03aa80f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:55:21 2024 -0500

    fix error caused by missing import

commit ef8f47e2da45dc54d0c72f243c004bf4f6a64f62
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:40:51 2024 -0500

    remove log

commit 001a608cdb7970009a785ee813c0a85b3f61b739
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:37:16 2024 -0500

    save dictionary query state

commit 9483e0b9bdbe30676d95331b2a9be600f6ce8e41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 23:22:00 2024 -0700

    slightly more condensed UI

commit 37dc81f43b77bf70fb20e791dc3a47b8bf4eda5c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 22:40:57 2024 -0700

    added back removed listener in quill

commit 69489bdd3b948121e77487479f55d65bfedd8f9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 23:04:56 2024 -0500

    allow user to edit dict entries

commit 7935b5a7a304e5ecce46f61d443b97c7878ac4a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 15:27:13 2024 -0700

    more concise editor

commit af2465658e6d017a39ea591a5dc3ebdca76ec9a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:27:23 2024 -0700

    pins instead of locks, better scrolling

commit 20faf1e5d493fc1a298493202250520eb3918e44
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:26:23 2024 -0700

    fixed bug in autocomplet

commit 26d862dd120666771ca6ae168f8264370c27cb2e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 12:17:30 2024 -0700

    streamed responses

commit 9828768f3403281f104d6992cfa13f74cc208dbc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 10:01:37 2024 -0500

    export user entries to project dictionary when updating and adding new

commit a9e65d1a2c6a6ed8b803838d112eaa97fa31390f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 09:17:32 2024 -0500

    fix type error

commit 9176c970f2c4e00008b1cfd2e5329cdcc50dab48
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 22:39:49 2024 -0700

    better UI for input

commit d5006b198e64b9bc1914efd04ddba6ed46c15929
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 23:35:49 2024 -0500

    fix issues with dictionary including crashing with large db

commit 51f503543ffa878f538f2d50fbd56f340d4d053b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:46:43 2024 -0700

    potentially interesting parallel passages chat

commit 819b000c55b24bdc7d2470ab79cad2c5c10920b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:20 2024 -0700

    added missing return

commit 3363666eb0111987409225fa1af6644556fca537
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:08 2024 -0700

    added react markdown

commit 2e82a47b193fac3335d6990a5f35764112c424f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:25:12 2024 -0700

    improved UI for parallel passages

commit af7b94bf58ce939abc3e91b31b8175fbccdfeece
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:10:04 2024 -0700

    locked results in search

commit 6b1857985a454d09ee37fe677f3f4435a99746c7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:54 2024 -0700

    fixed typo

commit 51312fd62274dd24fe7abe82082e1511caed7e3f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:14 2024 -0700

    some fixes in webview

commit b41be08ac2b0917c68f55eceba3a6dc9b7620caa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 13:34:06 2024 -0700

    some better UI

commit 0412df643c80a6c860d5061b18c8630283d0c4d5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 12:08:07 2024 -0700

    removed some logs

commit 5006f6dfa44ec2d744e94012c8f3c7bf4aa3b787
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 12:29:19 2024 -0500

    fix height issues in dictionary editor

commit e2417cc5dcd2f875f7f6cb8f0312b54d4f7bc0b2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 10:12:42 2024 -0500

    remove all undused code related to resource in bible translation

commit b984400380ac8d58645faa7e44419c18685c632a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:57:57 2024 -0500

    remove unused video player provider

commit 777f6c07afa48a277b9ef6102c578b86c10ad731
Merge: 4b1808c 0ed9696
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 8 12:55:10 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 0ed96966ccdf6cf1d47b046488abeb270f03af5d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:54:31 2024 -0500

    remove dict side panel

commit 11f7e997a0585bfeacb0d6a6d41ccc9cd06680e2
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 10:53:36 2024 -0500

    Added ability to add a perspective to the Reflection.

commit 5bb551e6040efc1f07c54977097ef09f7718420e
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 09:14:56 2024 -0500

    Added a reflection spinner.

commit 45f50e96734da913118f1a8fd20c299c0d4de34d
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 16:19:05 2024 -0500

    Added logging output.

commit f0c1b8399b5234217aa9b7c2b821066cf73f97ba
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:34:52 2024 -0500

    Added setting to turn on and off the reflection.

commit a2c8eed25bf66796c3bc2b977de8a1b52c8907fa
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:11:31 2024 -0500

    Fixed the problem of it embellishing with "personal" stories.

commit 1a1153f92e8dc144e0c97fbcefebd8c9ae70b750
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 09:27:23 2024 -0500

    Attempted with bullet points that didn't work.

commit cc7febbb4a6c7ee4fa0868f1bcb7078aa2856ce3
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Nov 5 16:38:14 2024 -0500

    Reflection works but greatly expands the generated result.

commit 5ceb7360eb42ab0ecde971ba4bed65b03f72c59a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:58:58 2024 -0400

    Adding missing events package.

commit 49d6d557aa3b820b1a04e99b1c2d16e2ffcd7b8a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:29:07 2024 -0400

    Adding enableGrading to missed useEffect.

commit b89ddc882ab8e1add2fd3d3cbac440195a3e84a8
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 7 15:24:47 2024 -0500

    Ignore casing in spell check

commit a57ddb5bb1155e66e95bc6a2f01f6acff1d4820f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:57:12 2024 -0500

    add pagination to dictionary

commit 8ce8022e11835e3a31e3a30985ffb8d021e9e6c5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:47:36 2024 -0500

    change dictionary ui to use database

commit 4b1808cc54c863d0b5dd85e8af1f5c2f1f89c547
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:15 2024 -0700

    Bump to 0.0.67

commit 6d8a99744016bd46f56dd1dcab956ee4c5ad587d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:14 2024 -0700

    Remove some messages

commit 94c9fe22da119c0aa79f1ecdd74648ca3dc658e3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 09:10:52 2024 -0500

    speed up spell check with sql call

commit e1deda80ffa2a40ea1415c7f77fbf1f76eceda7e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:57:55 2024 -0500

    user now selects where to export to

commit e54e7de22e425c8ad449b4d3cc9666c35cabb693
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:55:07 2024 -0500

    export web vtt file

commit c7160673c3e14dd872390161664dfce01924a3b4
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 10:53:56 2024 -0500

    multi line system prompt

commit 575e6d86c36ea69bcc490419e2025417560da2dd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:29:17 2024 -0700

    Bump to 0.0.67

commit e4157001da61eb51ab8fb39cc276e0a3d4d116e5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:28 2024 -0700

    Remove some messages

commit 596fe4aa8911057930487f0c64e4ae9f68ad2702
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:17 2024 -0700

    Clean up project manager view logic further

commit 8b7b662203d20982d6e337ae414fca4bff180d95
Merge: 08c4985 255b39b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:46 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 08c4985e5c4209ac6beaf50f4aaf2881aa39d16d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:40 2024 -0700

    Fix project overview display logic

commit 1a64bcbb361b1f614138611a8f8f0e4f26288dd0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:37 2024 -0700

    Silence logs

commit 255b39b21375e928cd8cd3d4c25970c015b209ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 00:36:20 2024 -0500

    save dictionary to sqlite db when upload is done and prompt user to save after accepting spell check

commit c8f8acc73410016ef428d0cd46c7a03bf9057900
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 22:01:16 2024 -0700

    Fix types, quiet logs, bump version

commit 5d3be097fde748645f00361ebf9cdf6f0ec7d8d0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 23:10:05 2024 -0500

    fix webpack issue that crashed server

commit a03c777ea286c13addb22770d56b1d7e1fa908a9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:54 2024 -0700

    Bump version

commit 1a1904c70dbac87453bb2ad06962aaebada370b0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:12 2024 -0700

    Better null checking

commit 856987e5acec36a6d66e5cc6d94e462df55caee0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 13:37:11 2024 -0700

    Clean up ChatView buttons

commit 485ed93666e2d746d83ca493ac2c21358385b51c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:44 2024 -0700

    Don’t use ‘video’ corpus tag by default

commit b71ab2a72b88faded9c06892e59768b42b4bfb2e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:08 2024 -0700

    Add force reindex command to status bar

commit 0c6fa0de7d1863436564603cee50be57d73edf9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 11:55:02 2024 -0500

    get alerts all at once and update them when appropriate

commit b85649517bbf9cfd88d47234a9d673bd4c3b0047
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 09:00:57 2024 -0700

    Fix importing sql.js and bump to .63

commit e22fbf5f534bdc55565f4d9a599e358ef7e13d8a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:38 2024 -0600

    Ensure chat threads file exists

commit 2a69ccc14586bf42f84862a91c8b877c24277b82
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:19 2024 -0600

    Handle project manager empty workspace state better

commit 5e14add1f2b1b78cda8531d81f766a7572564f5b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:22:04 2024 -0600

    Bump to 0.0.62

commit 1e60f8e1813beac11e0814ff9e68020d54f7cf6e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:21:36 2024 -0600

    Include sqldb in build

commit cd06948270a0b9d2fcd9b3af06835e3d407435cc
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:54:57 2024 -0600

    Resolve some type issues and bump version

commit 1fa18bbd1375446e8f12cb836e6973c43e3027b7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:48:46 2024 -0600

    Improve initial data population in project manager

commit 87d835fb7c8eaba263f1b76bbc5a5d49293a93da
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 15:46:37 2024 -0600

    Include sql.js wasm in build

commit f4e7e30613b7c2e8b22a10e6f80e486c61f9c52d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 14:53:38 2024 -0600

    Support project-level commands

commit 1a4259e86a0ff2f292e55a698198214c3922dbfb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:41:04 2024 -0600

    Add fixme for preview confirm/cancel step

commit c18cb5ed09d75dffa8980232eebd6b41d8b37565
Merge: 8caa5dc 49f4d80
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:37:14 2024 -0600

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 8caa5dc43ee3e6aefb6ac647aeef649fc7afb82c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:37:08 2024 -0600

    Handle multiple previews properly

commit 2f97bba609d841e0b083f2c4112e56fc035a1492
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 07:30:23 2024 -0600

    Bump version

commit 1e4c0d1c1af3ff75c665b536bbd73b443bcab1d3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 07:30:18 2024 -0600

    Restore previews

commit 49f4d80008d4f17646ffd2140546f4af9ddea7b0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 17:18:08 2024 -0500

    UI for suggested prompts

commit 7f2bb61e7a038ab630b1af51702c8d38c0a303e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 17:17:15 2024 -0500

    new styles

commit b34e785cc0acfcd0e49d1c257631befa67b75473
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 15:19:23 2024 -0500

    fixed styling where buttons are invisible durring lightmode

commit aca2f64a7b2109348801548a3f7ec47d4c4c81f5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Oct 31 15:31:20 2024 -0400

    use db for spell check

commit fd7aca7fdf600a1e4f771a4ff6b7ed54db82607b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 12:42:37 2024 -0600

    Upload multiple sources or translations at once

commit 0ba71957acb9f03253990876ec499806e947342b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:27:47 2024 -0600

    Clean up logs

commit 6c6ca243efba790b70cd18608dfe163298250ceb
Merge: 9e70bc8 90135d9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:23:25 2024 -0600

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 9e70bc800550c846802803b58efb0b19e1eef1ac
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:23:22 2024 -0600

    Add debugging flags

commit 9eebd2fb4acd727df36f2d52437fc8ac534f03ee
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:23:15 2024 -0600

    Make translation importer more performant

commit 90135d9c2c56896318098d1ceaebb35ae7f24b21
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Oct 31 11:21:23 2024 -0400

    fix type errors

commit 7c6c733f909af2ee123aca04a9335cb12cb95ca1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Oct 31 11:15:17 2024 -0400

    update dictionary import to import pre parsed data

commit 1f4c7736abe224b971750eb7c6e34a6ed98efa21
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Oct 30 10:15:52 2024 -0400

    add wiktionary import

commit e127c4ff258b279bc31c40575d0afc727b970f17
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Oct 29 17:05:42 2024 -0400

    add sql.js database

commit 6298b7c3119437f584a80098ca043731ffca9dd7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:05:55 2024 -0600

    Fix some types

commit c0824ab97240ae6d33d7b38784114953071e434c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:05:38 2024 -0600

    Don’t use a dummy source when importing a translation

commit 5e0787358bbd5f216dd1d7fbdcc25ad5e1b8e638
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 20:33:06 2024 -0600

    Enable translation-only insertion of downloaded Bibles

commit c2532417babc62c7d6457b8a51659686933bb79b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 16:38:38 2024 -0500

    handle the new prompt format

commit 3380877c585781da23022cbbf3e810626eb4df15
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 16:33:46 2024 -0500

    search cells UI

commit de661ad30ec0ea0600e45f0845a0ce990e0d192d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 14:07:34 2024 -0500

    better k setting

commit 86f652726d654054fa6100f351910077bf38e746
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 14:04:15 2024 -0500

    hasApplicablePrompts

commit 405a449d66ed2cb908ffaea120f701ce7c921303
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Oct 30 13:57:23 2024 -0500

    removed smart edit alerts for now

commit 44f211ce633f65b60bc9ecc75bb93d48da008b9d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:46:02 2024 -0600

    Fix UI for file selection when not downloading

commit 94bd1ad645ac6160e314ff797082992cf5c1fcdd
Merge: 4b233d2 84c8395
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Oct 30 10:25:35 2024 -0600

    Merge branch 'main' of https://github.com/BenjaminSc…
ryderwishart added a commit to genesis-ai-dev/codex-editor that referenced this issue Jan 6, 2025
commit 93ad687776359323c7c001c3eff16210546bf66b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:54:05 2025 -0700

    Use built in performance hooks

commit 0a15874c2f4ef7773ee0a112c8014a45b20de9cb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:36:05 2025 -0700

    Bump to 0.1.4

commit 46bc2a086df31d372fb731c7ea406ce32abea4e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:35:40 2025 -0700

    Refactor Chatbot initialization and enhance SmartEdits file handling

    - Updated Chatbot class to initialize OpenAI instance in a separate method, retrieving LLM endpoint and auth token from the auth API if available.
    - Added ensureFileExists method in SmartEdits class to check for the existence of required files and create them if they do not exist.
    - Improved file reading logic to handle empty file cases gracefully across multiple methods in SmartEdits class.

commit 0143daa414af73a15be8ad6da3a2242cf93e1e55
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 20 13:23:50 2024 -0500

    fix webvtt import so spaces in file name are ignored and remove some dead code

commit 3736d2cbf2197f170eb7f26cde926c0fddeb5ffe
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 19 17:51:34 2024 -0500

    properly step to init step if a workspace is open but not initilized

commit c868e0f306189db41dc486843c8cbce5118a8835
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 18 13:02:45 2024 -0500

    fix statup flow so it show the correct steps if the auth extension is installed

commit 268e28e54b2c37ee6840487f2f3c9268730f7073
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 17:40:39 2024 -0500

    Update TypeScript configuration and VSCode launch settings: Remove test folder from exclusion list in tsconfig.json and eliminate web extension development argument in launch.json for cleaner setup.

commit 7c81387fb4e3763298c482b9237a80c96bcb3d9f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 17:00:09 2024 -0500

    Update webpack configuration: Add process/browser polyfill, set global node option, and define NODE_ENV for improved compatibility and environment management.

commit c7e079fa08424730562a6e1f63c228e30b844796
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 19 16:46:50 2024 -0500

    correctly add user as auth on for git comits

commit dd607fc7b25f21f1038d7655eef635469d748a3c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 19 13:13:49 2024 -0700

    a start on removing extra css

commit a95893ad3f4d13784771d79c0438bc917e433f6c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 19 13:06:06 2024 -0700

    fixed copy button in parallel search

commit 6814c3f69baf39091be09e79d994dcae021d7b61
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 08:16:38 2024 -0700

    Add benchmarking code

commit f4b51c5b5ca912583e8a82cacd5fe997220ecba3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:59:10 2024 -0700

    Bump to 0.1.3

commit cc5eda1b77046aaf56f6b54e6890eadfa1c2bc58
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:56:18 2024 -0700

    Use corpus marker to group navigation items

commit 16cf6299ff6c863f065168ddd1d657080b93fc89
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:48:52 2024 -0700

    Drop old navigation; add a new one

commit b8df3850b701be03c877b35aee5d1089de855083
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 22:34:13 2024 -0700

    Minor type fix for v0.1.2

commit 73fec2732f345a7e554a77de4843cf23c52b1033
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:15:03 2024 -0700

    Bump to 0.1.2

commit 149ae03acd66cbb5c44dd4b677a1008449a08b19
Merge: a100f37 cc3ca77
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:14:14 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit a100f3721244b496920a4feb76219d654441b421
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:03:35 2024 -0700

    Update version to 0.1.2 and enhance API key description; comment out unused state store update logic in inlineCompletionsProvider.ts

commit 2d418dd4fdadc2d9f2f0a4787f330d5b925fbfc0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 16:52:18 2024 -0700

    Use custom auth-defined llm endpoint if available

commit cc3ca7790434775194d427eb8e4084a4c0b1376b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 16:43:52 2024 -0500

    Refactor llmCompletion function: Remove early return for no similar source cells and fix comment formatting for clarity.

commit a24e2662a40ca48dba22781b64ef92b9b27bf73a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 15:57:04 2024 -0500

    Ensure chat threads file check only occurs if workspace folders are present in CustomWebviewProvider constructor

commit 0b06069d3fb234b41d72bdc89acd1e4d630f815b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:44 2024 -0500

    Update version to 0.1.1 in package.json for release

commit 84a6dd188903220a4b5c7023dd45870074479dca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:18 2024 -0500

    Enhance password validation logic in LoginRegisterStep component to ensure confirmation check only occurs during registration.

commit b5eedbb49a97af2d8eb7bc54d3ddc991faa0195a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:26:59 2024 -0500

    Update version to 0.1.0 in package.json for release preparation

commit 02fcdcdcfb599d6e2daee93ea270240110d81b74
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:18:20 2024 -0500

    fix absolute path. Use generated local path instead

commit f5bce323d14af0aa2b4c3618f990e386952be6aa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:45:59 2024 -0500

    Refactor LoginRegisterStep component: Remove password validation during registration and adjust password strength color logic for improved clarity.

commit 5900b8f2e53322f664b6e0ceae5c3066755c1e76
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:30:42 2024 -0500

    Refactor LoginRegisterStep component: Introduce centerBumpValue for margin adjustments, update confirm password validation display, and change onChange to onInput for confirm password field.

commit cc3e453a65e7608ae269efb89a3ae1ce68518c27
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 12:12:27 2024 -0500

    pasword strength shown as popover

commit 331f1b7fddadd325510992e15d8440127731b9cc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 11:37:13 2024 -0500

    add show pasword button to login and register

commit 4c11e2a22ba183c9f4f580937aa6fb807fa1a0ca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 17:02:50 2024 -0500

    Refactor stageAndCommitAllAndSync function to remove workspaceFolder parameter and improve error handling; add syncProject command to project manager and UI for syncing projects.

commit 5cad490f820961405fe3a7cbe556a8ac5c1f695e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 15:07:51 2024 -0500

    fix compile errors

commit 22c498735eb6748fcdfcf1920762676fc2e11a6a
Merge: 3bdf889 64505b6
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:17 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 3bdf8899275bdc3cffaeed636867d5b8dc13b5fa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:05 2024 -0700

    Hide new chat in parallel passages for now

commit 64505b61cf95649130e1910e74e76b7b9bb255f1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 14:46:22 2024 -0500

    resurrect chat

commit ad7c6e99b47f43bc67f9994dda57adb6f8655784
Merge: eb50c13 4071c43
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:56:25 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit eb50c13eb645d217bc1f21df2fc0cf2b9731cdb7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:53:25 2024 -0700

    Add fixme

commit 1243bc80008f3150b4b88d75509b605db8b618c4
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:44:32 2024 -0700

    Enhance llmCompletion function to filter out current cell ID from similar source cells. This prevents re-predicting and generating duplicate content from previous edits.

commit 957f0eac8713adba44b9dc376e33591b8924cbec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:42:26 2024 -0700

    Remove commented-out source control provider registration from registerProviders.ts

commit 4071c43811fdd8cbce63bf227dc0aaa95db89c10
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 12:41:55 2024 -0500

    rerevert source blocking changes

commit e35d394e564bc810d394d6bffa41b37b3e4714a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 12 21:04:35 2024 -0600

    fixed merge

commit 7c0af25c008342d1993a9d3185e0c56034e02836
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 15:54:52 2024 -0500

    remove place holder name

commit 5ca1f27fb50da35a35484c5d905ba41383ec3a87
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 10:30:25 2024 -0500

    user name and email now come from auth

commit 0e3191126183eb2a9e4c3ee28c0f2412c42338c3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 11 11:55:49 2024 -0500

    Revert "Ensure source doesn't listen to matching codex updates"

    This reverts commit 182251e018b9022174b3917e75d99770c94f357b.

commit 182251e018b9022174b3917e75d99770c94f357b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 10 10:47:18 2024 -0700

    Ensure source doesn't listen to matching codex updates

commit f09441055ed8f33706368286fbcd267cde3c29b0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:13:29 2024 -0500

    properly dispose of webview in startup flow

commit 5521a408669445575fb6fb786734c1e8e09c2173
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:12:56 2024 -0500

    If a file does not exist ignore it in the commit

commit 6a1c1c599118709ac28d795ead6eb904386a8dee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 9 11:09:01 2024 -0600

    updated global message type

commit f4bd30a4c332db347e10ac388df018565a11238b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 17:13:44 2024 -0500

    Refactor startup flow and metadata handling

    - Updated the extension initialization to conditionally show project overview based on authentication status.
    - Removed redundant checks for codex notebooks in the initialization phase.
    - Enhanced the startup flow to check for authentication before sending metadata responses.
    - Adjusted state transitions in the startup flow machine to prompt user for project initialization when creating an empty project.

commit 61e97621dceccaf2fd4fb5954eeeb7515c4626dc
Merge: 4dfe25c 639aef8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:33 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4dfe25cbc7937b9248c69de573232a97feb1a555
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:26 2024 -0700

    avoid unnecessary ENOENT errors

commit 639aef8ae327052b132df8123609a76960d55f9b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:31:40 2024 -0500

    close startupflow if state reaches already working

commit 3089ba28180de3687df8ad979ea89adbb5fa22e1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:14:49 2024 -0500

    show init screen in startup flow

commit 79e20914d92e127a6d66bc59da053b02d00a5fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 23:36:29 2024 -0500

    feat: block git commiting if no remote

commit 3e1f76f89e0b4f0c3ca4ea7c7fe37172d5eb8fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 22:10:29 2024 -0500

    Use top level refrence for auth store and add password validation

commit af19c3f511bb06a6dbb5068659e547e621869f43
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 17:13:38 2024 -0600

    hide empty messages

commit 55b294b542ea7b964c39dd9f520a15e479405de4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 13:06:45 2024 -0600

    Chat can coninue after pinning verses

commit a8400180b74dd007cbe3b13d44df68702d219b6d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:23:07 2024 -0600

    better spacing

commit d8408d323435b17f86365ff1332eec997ffafbc9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:22:34 2024 -0600

    file save fix

commit e1c00822833a558b5dcf1dcbb5039c95051c5908
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:16:53 2024 -0600

    Chat can now pin on it's own

commit 8cabc60df9509872ab28fbaf363dcf7086f2e9eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:37:42 2024 -0600

    Global message with destination

commit 75400a7635e125f5de8b639f7181b47183d870b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:51:33 2024 -0600

    merge

commit ff7be46cf41c354f774835b4b22b9c9e04c69dc2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Dec 4 15:02:03 2024 -0600

    global provider

commit 65e73b467fe92c675d32c3d09be63c74d7b24905
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 22:27:47 2024 -0500

    add email to project management so we can commit

commit 0fe9ce94e88e57cc48cb19765a42d6fc654786b5
Merge: 326582b 6ef8072
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 13:27:32 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 326582bf83ba81f74048817020b4a9fd70135c75
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:58 2024 -0700

    Add mock classes and context creation for testing NotebookMetadataManager and TranslationTextImporter

    This commit introduces mock implementations of Memento, SecretStorage, and EnvironmentVariableCollection to facilitate testing of the NotebookMetadataManager and TranslationTextImporter. The changes include the creation of a `createMockContext` function to provide a consistent testing environment. Additionally, the usage of the singleton pattern for NotebookMetadataManager is reinforced in the test suites, ensuring proper initialization and state management during tests.

commit bb2d4a8bedba29eb95b64b09921e324eec2693c9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:52 2024 -0700

    Refactor NotebookMetadataManager usage across multiple files to utilize the new getNotebookMetadataManager function, replacing direct instantiation with a singleton pattern. This change enhances consistency and reduces redundancy in metadata management. Additionally, minor adjustments made to comments for clarity.

commit 6ef807269412305d38e6bea782467c87111ab70e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:59:24 2024 -0500

    fix type errors and make git commit command

commit df5630a9730347b0fedb0c4453805a31e7166529
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:05:46 2024 -0500

    renamve test file

commit 3d5406dc33beaa77accc4af98ae5d13b6dee50c9
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 08:49:54 2024 -0500

    fix message posting and add stage and commit util

commit aa0bde14d989e5c8438e0b6f1954e59442e24586
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 3 16:48:51 2024 -0500

    init git when initing project

commit 4409656a4bc2b80b60c10fda723206f070e3bfec
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 14:20:07 2024 -0500

    show publication button only if repo has remote

commit 478917e456b6e5d72805be536d0c221742d39606
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:16:36 2024 -0700

    Fix import path

commit 5bf45734c192405f39e70b567ea1bb6b325d598d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:15:58 2024 -0700

    Use singleton pattern for NotebookMetadataManager

commit da95948c7353977768fa443a819f1ea3258c02e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:07:10 2024 -0700

    Ensure uppercase format for consistency

commit 56930abb92f4430bb1b40b89dc34843eb51f14bd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:04:01 2024 -0700

    Enhance error handling in UsfmSourceImportTransaction for file reading, decoding, and parsing. Added validation for book code format and chapter content, ensuring robust processing of USFM files. Improved error messages for better debugging and user feedback.

commit 1a7812e26c296fb203b029563930106783690287
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:48:53 2024 -0700

    Improve error handling and transaction processing in SourceUploadProvider

commit 8ab3a139be7393345c699ae101b0ed795ede87b5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:36:43 2024 -0700

    Refactor SourceUploadProvider to support USFM file types

commit 6fb31b3d3242adc26d1baebbb8e53d87367434e3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:31:00 2024 -0700

    Add UsfmTranslationImportTransaction class for importing and processing USFM translation files

commit 2b2d15445bf0a0c6d99490052c5e503b87be25ec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:53 2024 -0700

    Add UsfmSourceImportTransaction class for USFM file import and processing

commit e109dfc727cf1ab9f1ae180e24c10956afbeca74
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:31 2024 -0700

    Enhance LLM completion by filtering similar source cells for overlap. Added tokenization to improve example selection and log dropped examples for better debugging.

commit 23adf482a52fcc6d7278a08dade445daa9c1a868
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:51:47 2024 -0500

    Reindex after importing a file

commit 22c2846a5be5787c2dd23e45c33666f88b916a47
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:45:24 2024 -0500

    Hide all projects from project overview

    This functionality is now handled in the startup flow webview

commit d985070dd9fd7b1fce52de0ca3d66ec6806e4462
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:21:20 2024 -0600

    Revert "Chat enabled autocomplete (work in progress)"

    This reverts commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b.

commit 029c4c1af7165946971e8850d14879fb66254f99
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:48 2024 -0600

    Revert "some progress towards chatbot entry"

    This reverts commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd.

commit 0c361f1c000bab0dc07dc994242f27446ba22d8b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:45 2024 -0600

    Revert "chat tab as default"

    This reverts commit 13b62d2a54a4859a862a8b56d923850f8170e463.

commit 52f542ec2d4d0c00beca8a75d308db39f9ed03a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:38 2024 -0600

    Revert "fixed editing"

    This reverts commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9.

commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 16:04:22 2024 -0600

    fixed editing

commit 13b62d2a54a4859a862a8b56d923850f8170e463
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:46:00 2024 -0600

    chat tab as default

commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:17:08 2024 -0600

    some progress towards chatbot entry

commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 16:45:35 2024 -0600

    Chat enabled autocomplete (work in progress)

commit 1bdf4f2b7dbd100212668191c44987178937e81f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 10:40:25 2024 -0500

    move project create to a util and skip setup if project is already setup

commit a9288611a03a8e48fb1965290842cb355848409c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 29 10:32:30 2024 -0500

    fix types and styling

commit f8fcfedfc169543559adbc727b522673047b4a5b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:16:16 2024 -0500

    load local files if there is no auth

commit 95b33d747491b3e5543f0594934af2117632b884
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:07:07 2024 -0500

    users can now open a existing project from the start up flow

commit 308d669aaffa60c2b8980e3f9d967d8d88a9d39d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 11:47:16 2024 -0500

    finish clone process in startup flow

commit 0c95b8e8ac2fd6da3b002b2f6d26b1984231ffaa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 27 00:00:15 2024 -0500

    fix content security policy in startup flow provider

commit 82bba59aa29d3c2a0b46546c95cc40adbc6ea963
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 22:46:43 2024 -0500

    fetch list of projects in startup flow

commit 33fd4b0e7be17780bd13d4b13dcdba5ccf11f139
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 14:15:48 2024 -0500

    render project list

commit 6336ba6dd6cedac70f3a378cf7a0e18aafdf8703
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:46:16 2024 -0500

    list projects in project view

commit 1f81adb23b9d5cf46713a245b7fac7fb99e504f7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:43:59 2024 -0600

    much better apply button

commit 4ffaaea21bf6692d3ff4da55856b2ce9a45b352b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:42:09 2024 -0600

    fixed bug with old prompting

commit afc6b00175ecd12c7d539392d5c73fe01c2a07eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:07:36 2024 -0600

    chat menu opens by defualt

commit 3683b067ec14759b98426959892caaa834fa42ea
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:04:12 2024 -0600

    fixed blank message bug

commit 107b401502dc644988312226db179fe4f220b8a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:51:58 2024 -0600

    fixed some streaming problems

commit b2563854f5902bc9c0da7677edadf19bedd3b994
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:34:23 2024 -0600

    less radius

commit 8b5fb8c871f276c0f332250eb591e112be15e573
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:30:35 2024 -0600

    fixed styl

commit 722e43ca30e5b1b66119667b959e6676763020bf
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:25:19 2024 -0600

    feedback on suggested translations

commit 902a94680bd4a1e20d7bb69b4735af891b2d4498
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:01:44 2024 -0500

    fix preflight command names

commit ee77a7c61635dd2f66fe53321663bf26d6c8e6ad
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 12:20:45 2024 -0500

    skip workspace setup if one is open

commit d4a08c2448ace427b56f8e5aada5fd25454f1c4d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 26 08:45:53 2024 -0700

    Change default llm model; increment version

commit 5636e480085d498e4a8104a3f45cd3a1f53f5619
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:38:10 2024 -0600

    removed chat webview

commit 4f8b697893ae0641e12bd3b183e1d6d67d18ab50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:26:15 2024 -0600

    removed prompting

commit c71025165a082208f08c47044d8c515fbd8bc399
Merge: 40db83d 000c084
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:39 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 40db83d820b46563cd359d159ee37e1e058b181e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:26 2024 -0700

    Clean up state sharing across activation, provider, webview

commit 78745f0567d5f14f4236f8093aa35d08fba7cbf2
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:04:39 2024 -0700

    Overhaul of startup webview

commit 000c0840408730cd61e8eafa223cb28cda5168a2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 21:43:03 2024 -0600

    delete old chats

commit 5ebe8a519df84c22ca849a1cccbffa322d839cb5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:49:06 2024 -0600

    better alignment

commit 50a3c1c59294c626ca722ff39bcb864e7be57e87
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:45:45 2024 -0600

    slightly improved session management

commit 940b16dd180b92751c2fca7184c158016456ae7f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:21:08 2024 -0600

    loading and saving chat history

commit a75b59189c9b8476ca03ee5d45fdbbcc3645845f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:27:06 2024 -0600

    merge

commit aa692ce62642e451ae28257602e485fd717d5d8f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 16:56:06 2024 -0600

    removed ChatView

commit 6f0bafc636c33bd1c97ca8afbfbdf847e8739faa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:44:54 2024 -0700

    Align preflight with startup state machine

commit 411ae7cda7867d0dcd536cdae10a449002c56f1d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:40:54 2024 -0700

    open startup flow using state machine logic

commit 084234398485b63791a66c6a89e6ba80a8120cdf
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:54:57 2024 -0700

    Handle test suite compile errors

commit 09463e61c522d49a9fa7170fdf680f9d99621b38
Merge: 4b22e1c 1d9d551
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:21 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4b22e1c4d09027034f89ab8dfb4e610ac5696adb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:18 2024 -0700

    fix build webviews command

commit 1d9d551db3424d0a80cf5ed93de414dc8aff0474
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 15:53:31 2024 -0500

    add startup flow

commit c0c15f1d87d9646fcfe8e4ded84b2a4f8396de25
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:22:17 2024 -0500

    revert type changes

commit d6a1b804625bc16398bad23e1c28f0609bdfb521
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:19:21 2024 -0500

    revert changes to source uploader webview

commit dfb56143ed169876fa9de312a66b1849005a5aa0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:46 2024 -0500

    move logic to startup flow provider

commit 9749771a23422074b6447ec62183ccb353820450
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:28 2024 -0500

    revert SourceUploadProvider.ts

commit 2a7b9da01dd60a1489d09c1c81bd1dfa3b51ea30
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:32 2024 -0500

    add startup flow to build

commit bcfd8822b01b9f20a0b9cfa7313241e5ab8fbbdd
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:13 2024 -0500

    register startup flow

commit 27f48552ca561e026a7b32460001dfcd1c93bd5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:00 2024 -0500

    add start startup flow

commit 791cab17674f8a9adaeb4594e5dece9129bfd80b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 13:39:01 2024 -0500

    add password confirmation and fix ui

commit 1f418fdc79d044180e0cba92884292711ce0deae
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:38:03 2024 -0500

    setup signup

commit aca437967f8201c2bb320fcb1bf69a667b4eef40
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:01:58 2024 -0500

    fixes to show auth step

commit 2be23ac631d86d965214e5a9d1c0aff3683b7534
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 15:55:49 2024 -0500

    work on showing auth in setup flow

commit d615679856af1cbbc760e28741b1ea3e2b74736c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 12:10:31 2024 -0500

    add check and change command names

commit 036f5f4f7cc9d733cbbdaa9152afea94e5c1ce9c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 11:20:40 2024 -0500

    start auth flow in upload provider

commit 3e8b8bb943fe583ad3d74b9c8deaa5391691e0c1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:27:35 2024 -0600

    better video ui

commit 15695ec8253af9e5260033906e4f40ef7ff8b16d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:16:22 2024 -0600

    working video player

commit d3567a051800ad9d0a8b530d325d58085738f6c9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:15:50 2024 -0600

    bible project urls

commit 10efef06a54590908a2e64c41e9ec55e2c539e82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 18:33:27 2024 -0600

    removed old tab

commit e87922df4ca39da7dd1b675dd7d4408c6bb573e4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 16:25:15 2024 -0500

    Added CodexCellDocument webview only update event _onDidChangeForWebview for proper revert functionality.

commit 99b9d69babcde4ba0c6f17014c31c2ae6e007e2f
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 15:18:28 2024 -0500

    Added watch for file change to reload.

commit 6d6b236bac0bbc5a30e3bd20dc8cffeba0afc9f1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 15:26:31 2024 -0600

    edited user prompt

commit b887039bb2de370bda8b1e303e401cb0a39c8285
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 14:10:58 2024 -0600

    uses language config

commit 57f4ae1f33333043996f0c054a8447c963ed8dc8
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 13:57:39 2024 -0600

    better prompts

commit a5439914f6164a43c14ba47ceefb36510891acca
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 22 11:49:14 2024 -0700

    Disable workspace trust call for theia trust compatibility

    Cf. https://github.com/eclipse-theia/theia/issues/10472

commit b90b464ff386e4c6723a98571d58cc959d7a8ea4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 10:27:30 2024 -0500

    Resolved compile errors in the test config target.

commit ca78a7bade0fe1571b48fb046fe6555a24a92a50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 01:55:14 2024 -0600

    better prompts, ui, searching, and saving (but that part is still a bit buggy

commit 09eec8a33bb6bcba66a60da7a61011bdb3833210
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:47:13 2024 -0600

    Chat now predicts the next prompts

commit 9e7a747690250bc2da560bccdcd737e21ee1db06
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:34:04 2024 -0600

    Removed Teach tab, more combined into the chat tab

commit 0fc51a04d068330efb570c9dd70b410075c3606a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 22:04:59 2024 -0600

    apply

commit 3cdd5adfc3ea9be486335bb3469a757a90b96832
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:45:29 2024 -0600

    more than one TranslationResponse cell, and more extensive regex

commit 037bad6fbe76d6198251048b67a76174978c6bf0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:20:43 2024 -0600

    toward a unified chat

commit 84f65c09b5dcf4dd04dcf9d7eb000e8c291a459f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 15:17:06 2024 -0600

    hide navigate button

commit a02439aedaeec9f717bad6763f85ef858df3bbde
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 15:11:24 2024 -0700

    Some copy updates

commit 57388274f8a471b217621be2e7f53f0b59962a7a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:45:05 2024 -0700

    Ensure navigation treeview is not mutating data

commit 3e152ab251d5b4f617befdc50b6c6741fa827ada
Merge: d2c0551 a6892ab
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:16 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit d2c0551bb41185ca0a7c170b5eb625ce13fc3184
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:12 2024 -0700

    Move command from top level

commit 1c7f9eaf0e7f842999e5b0e2e107d54c2a53f3df
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:04 2024 -0700

    Handle fatal error for missing file

commit a6892abecfce5852a9644c70a30eded5c6ba2d3d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 14:02:03 2024 -0600

    some progress towards a working apply button

commit 6449addebc74863b2508a407f99a6ed8b136642e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:04:28 2024 -0600

    less word breaking

commit 1c0e2ea351e8274b435e067e4f612264a71fd13a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:01:21 2024 -0600

    backtranslation word wrap

commit 4a54baed95d7ac8e528d22c65ad6cb4cdc9a01b6
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:49:12 2024 -0600

    smart edits now get memory context

commit f332f802baf70b88f7ba10fbbf8d118a25b5d065
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:17:51 2024 -0600

    fixed prompt

commit 54b0984d41f1029f84e79815782fe20c104b5984
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:13:25 2024 -0600

    rename to be more clear

commit 4dc337ee20db9a7ae49e8f0ff2da6b5c91ebbbee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:14:53 2024 -0600

    search settings and pin all

commit ddab14a8b4d919d51f958ce18e327c313876db50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:04:59 2024 -0600

    more padding for checkbox

commit ec7987dc3914e61cbe3e7c850703081af9175a36
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:02:51 2024 -0600

    better index for searching

commit 5462ad730e7167ab7e6dd5b49b53aace519c7b92
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:08:24 2024 -0600

    clearer UI for context

commit aa34cbe48e4857c1d71cfce881ae9281654520d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:07:38 2024 -0600

    updated assistant about the new tab

commit d43794975fd0e4da39f8b7a4805e1eff2caf3018
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:01:41 2024 -0600

    some bug fixes

commit 3a7fbe424bd1b3a75085dc17c077e4a2c3deb303
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 21:32:50 2024 -0600

    much better memory management

commit f414808c4b837ba9353b2b27699202f6c6f14b57
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 20:23:51 2024 -0600

    unified styles for both tabs, better chat etc...

commit 49b5f88d445ee79b3b41e4cfb78200a1957bba75
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 18:34:50 2024 -0500

    remove builds with nothing to build

commit cf5da90733be6f738f48bf9b9aa7fbbf22f88e64
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:40:16 2024 -0600

    navigate to next cell

commit 91e25eeea2e0a833c4d71a5e051874463fb684a9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:45 2024 -0600

    somewhat more stable

commit 69acedff6572d624228fff761282793f44ceff7d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:05 2024 -0600

    new command for finding the next untranslated source text

commit 92bfaf3d1ac41033b5066cbbada9529de2014ba4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 15:01:25 2024 -0600

    skeleton loader and clearer UI

commit 3ab2112b2756a423e80d7a9dd61ddc72dc8cb94a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:56:23 2024 -0600

    UI a bit better

commit 8529a05814fe234db4a171ff4d1ff7433f2869ab
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:47:18 2024 -0600

    working with untranslated verses

commit e0accd726d7c5cd21d0875c9c26c4e4f7bae7180
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:50:02 2024 -0600

    pickable target passage

commit 5c3ee120d25cbfb703fb1dbb8d7113c95524df1c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:25:06 2024 -0600

    better UI for silver tab

commit b8bf1ee040aa66871840865eab91bc87563c5fb5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:43:43 2024 -0500

    remove build commands that don’t have folders any more

commit 0a8589ceadc07212d78f64c06fed31c5b52c2f5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:14:49 2024 -0500

    remove unused code

commit cba5ce42dc900c3b8b664daff3ab6c33a3bfdd04
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 10:44:21 2024 -0500

    rename vars for calrity and return indecis to extesion for use

commit 6020e97fed9d61c19f7ab2d4d559d2d7b42fb9ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 17:05:04 2024 -0500

    index tsvs

commit ec3d1c8cf417e2701d1a7a0683a202c506c90472
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 16:17:36 2024 -0500

    init add logic for indexing tsvs

commit adc76961d82f085ff9727eb8db03135a523b0715
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:17:21 2024 -0600

    new tab and css file for chat input

commit f1f83f911262f0ecc8c7ddf2f76dd6fe2bf9132b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:16:43 2024 -0600

    start on silver path

commit 50da7998b13d1b8d07a1f0544fe9b0fdbf0a70f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 16:26:49 2024 -0600

    better organization for codexCellProvider

commit 0b5943eb8a1784edd799a11422b11f8d5746da9b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 15:55:41 2024 -0600

    better memory management

commit 982c26d0122ed3a0bba88bc11344334dac041856
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:47:35 2024 -0600

    silver path start

commit e6f7538c95d60113c05c2b3bb18c93151641e207
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:20:07 2024 -0600

    improved system prompt

commit 80fee48c36827af4c77e92db6360df6dbd73d8d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 13:04:53 2024 -0600

    better look for quoted text

commit 24f86b857236061eeef7679e5dd6f75b728db4cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:52:52 2024 -0600

    fixed json bug

commit 306ffb68a072e7c1723bcd1504fa09780e5c70a5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:42:06 2024 -0600

    better prompts

commit c9f8a861b2152075961c7cf716de0b5d98d43bf4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 23:27:32 2024 -0600

    better backtranslations

commit 7f7d07d8d2d2f659928a9dfd9dfc0312f7946eaa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 20:29:16 2024 -0600

    better ui for backtranslation

commit 55979af809e57b82745c6eff4ea4a1ec3b0739e0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 19:12:54 2024 -0600

    working backtranslation

commit 24cfc273edffef93efaf198651b4f10e77aae9a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 17:14:11 2024 -0600

    new command

commit 07101d5fb50d500f2a6034c258105248f4306ae5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 16:27:48 2024 -0600

    backtranslation

commit f6401b245f3b0c2a8820624e1a6c96df3965fc50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 15:15:39 2024 -0600

    token saving context

commit 5e116e9453edb8770524886235e80f0f921aa773
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:33:27 2024 -0700

    better cellID display in chat

commit c9ec863cec12a683d35b60601cd719f376cc4a42
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:04:44 2024 -0700

    better system prompt

commit ee7588f5e932ba3aea70789e5c17978a844037b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:57:09 2024 -0700

    working reload button

commit b5fd44734b5c2a2eb7eb443261728de4043373c5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:30:42 2024 -0700

    fixed bug where dictionary didn't update until a refresh of the app

commit 95071c292f8a45c6b0e1cbaed4c047e427c13d53
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 11:54:58 2024 -0700

    some improvements to tabs

commit 05ded57fe0ab6042f1ab56b34023b2c78beb5694
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:14:16 2024 -0700

    small style change

commit 5d56a69b2a7aeab4c61f047b14d1aa400a0a3d09
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:07:08 2024 -0700

    better organization of parallel view components

commit fd2980a8148b338f02a08f452bffc6b8ac4b8fdc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:28:28 2024 -0700

    better styling

commit 1b8d2551876d3baaefc6a75e1259135d3c5bfc0f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:22:17 2024 -0700

    codex help

commit cb4de766b77155a6c993f98ccebc43632be4eddd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 15:48:50 2024 -0700

    universal pinned prompts

commit e902bad3323b50e55e23c8da920ba3cc9c4df52d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 14:22:25 2024 -0700

    save generated prompts

commit 74aac37fc2d7f436eff14f24d93f436811dc9318
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 15:16:37 2024 -0500

    restore needed css file and reduce button height

commit a502d88bbe3000507112c8b2a408f1c1492690d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 13:05:07 2024 -0700

    better organization

commit fc11fd8774a94c37006e4c66119aee44219b7fb5
Merge: 1f470ad 0c9e677
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:18 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 1f470ad012d02f48b2bfdeb253bc377106cde5cd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:01 2024 -0700

    A bit more comments style cleanup

commit 0c9e6775a4ba5e3dea4136992223420289cc4488
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 14:40:57 2024 -0500

    allow user to change video player height

commit ee44a7248ab3753e300f80cca1697ceb5f2b3b4d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 12:08:34 2024 -0700

    components for prompts

commit 6f09e260fc48120116193e34cbe001a55b4255b4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 11:53:55 2024 -0700

    New component file

commit 719408684c760d8cacf947bf14ffb7571dcfe309
Merge: dc17e7a c75b57d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 11:47:59 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit dc17e7acb4830e0206a27494a0110bf605a8440a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 23:35:57 2024 -0500

    WIP: Add expandable comment threads

commit a09af37a12c018218327c7b9771075ec44e57ee8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:29:28 2024 -0500

    Tighten up some styles

commit ed39dbbf1adaff4d3c7af1628ec6af37a5f6d622
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:22:16 2024 -0500

    Add icons to comment tabs

commit ea0cc154f48d808a8e309f050e3e03a5a7113360
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:05:56 2024 -0500

    Add tabs to comments view

commit 12303ddbffee26a2e55cf0e4e0ff46bc826e4817
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 21:51:30 2024 -0500

    Update comments view styles

commit c75b57df8eb77feb1d4aa83666a4b7c61ebe6465
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 21:45:06 2024 -0500

    fix unsaved changes prompts

commit f0685d10004a53294361eafe82b3623fb9eaea9e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 19:35:33 2024 -0700

    pin verses from editor to parallel view

commit 7c53dc19b186a319eb61e73f4178b0d3b2d14c41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:59:16 2024 -0700

    force activity bar open

commit adbb6ee1eae3a6432b0ed02651d3126a29196bd4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:03:14 2024 -0700

    better source text

commit 025c0366be1eff44835c54ed1ca07fd9c39a85cc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 17:18:17 2024 -0700

    show source text in editor

commit 4b745f827c5bad1ebd8e2a36f6047a47c0765eb9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:57:00 2024 -0700

    don't show needless revisions

commit d0b3c7e270ca839b5b3fd919e450e86f873f1969
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:39:34 2024 -0700

    return void

commit 4ee7f30f58bd44a26fb153aa7125760ad5cffd5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:35:54 2024 -0700

    third person was weird

commit 1bbb4a72fc2aa6f12a8f8bd07d03336f0424ba0d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:23:33 2024 -0700

    better UI, and prompts

commit bf60e4b572ca667e6d795689fbf7b4d5a77aff33
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 15:43:21 2024 -0700

    much better chat in parallel view

commit 9647f6c16c0649d21aff00c47e292d4d44fb291b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:59:36 2024 -0700

    better buffering (aka no buffering)

commit f95c348fc0240548610fb3f1643df0ce9e30fb19
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:50:37 2024 -0700

    Way more consistent smart edits that don't magically vanish

commit bd157a18e8608673a0ab1870bff9a39ae3d157cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:37:22 2024 -0700

    removed buggy cellChanged toggle

commit f83aa5633c2a604e3f6229751c265e4ad0d9b469
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:06:56 2024 -0700

    less padding

commit 72e758384d70b79561c1ff46f370e8c118cef8da
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 16:03:12 2024 -0500

    webvtt filter out cells with no timestamps

commit 35dd7ad581b10639fecbd1919a465fead84a4153
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:52:59 2024 -0700

    save button

commit 95150e9589a0fb61b117eade6a26852f4a5bc0a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:28:27 2024 -0700

    Revert "fixed(ish) save button"

    This reverts commit 2dc417830df86959d77057ef9740d93dd68f9216.

commit a9169253cbc0efbdf2e0278db839e27dd6c7d933
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:27:09 2024 -0700

    Revert "Revert "allow user to add paratext cells above or below""

    This reverts commit c2f96bc60aad976c22d7ef2679f615c35916ad30.

commit c2f96bc60aad976c22d7ef2679f615c35916ad30
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:21:42 2024 -0700

    Revert "allow user to add paratext cells above or below"

    This reverts commit 459beea4c93788af0ecd5f361258630a7764455f.

commit 2dc417830df86959d77057ef9740d93dd68f9216
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:10:27 2024 -0700

    fixed(ish) save button

commit 459beea4c93788af0ecd5f361258630a7764455f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 14:42:17 2024 -0500

    allow user to add paratext cells above or below

commit 0d8fdec3b385581ce124cf00a665d03994d4cc5e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 12:03:28 2024 -0700

    hamburger menu

commit 654918290c8965b4de34a4258a913c8b56105868
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 11:39:27 2024 -0500

    fetch more spell check responces for better spell check results

commit ac17de15b031e9e4857bc704b5c1bc8593436e73
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 19:17:26 2024 -0700

    more search results

commit 9d3bf671a95754b5689fa022eae6f71b6754fa15
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 18:33:14 2024 -0700

    fixed autocomplete and dictionary buttons

commit 7c9c6483afdde181762d3c70069c1ef770cca22a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 18:29:15 2024 -0500

    speed up spell checking by slowing it down

commit c0eca8af77c73d7251a38e69c685fa9f5b272c89
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:22:27 2024 -0700

    new UI for suggested prompts

commit ea9313eab138a8ac3df217f51f0b4e2c7aa6eebd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:58 2024 -0700

    removed old style

commit 48fc1960fda56c08a007a0fd5ff1cde811d32c82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:44 2024 -0700

    fixed the way smartEdits reads paths (i hope)

commit 04377ec8c99e4a51f1684cabb05e890697528e59
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 15:59:00 2024 -0700

    much better toolbar text slider

commit d15e38b23769e9d8feaecfcfad2b69ab41f4059a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:31:15 2024 -0700

    fixed width of textarea

commit 09f4dc87316078ecb8f10a1c38a755133cdd1dd7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:18:35 2024 -0700

    removes html using the util

commit c0cf03d70a03b7a70fc9a6410af5a87b15d5a302
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:09:10 2024 -0700

    fixed bug where words are removed

commit e438d5636d85aadf1d7ddd7d785ab7e252b9ec76
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:01:18 2024 -0700

    some better more compact styles

commit 524954358cab2f9a0b101885a9520ee832944a5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:42:51 2024 -0700

    removed debounce

commit a49134842e07c5490c3d9278415d627e671d5971
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:39:50 2024 -0700

    fixed cell wrapping problems

commit 48426bae8ee9ebfa1bf98721061b0d2d0ddeeae0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:54:38 2024 -0700

    hide alert bubbles in inline

commit cf48eea9754c670886415e05a395e6d939e7b1e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:33:41 2024 -0700

    filter html before saving

commit 7eb2f79f1c5b7b55da4fe26da2b3ca5eb0596976
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:35:22 2024 -0500

    turn off debug logs

commit 6d76ccbcad2ed06cb76b76de209d80c6e0c928d7
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:33:58 2024 -0500

    remove unused logs

commit 0dc340318067fc33487686d8897852c32a07237c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:56:45 2024 -0500

    fix logic blocking spellcheck

commit 6bf27ffff9e047ee264e85c4d6c556b6d03aa80f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:55:21 2024 -0500

    fix error caused by missing import

commit ef8f47e2da45dc54d0c72f243c004bf4f6a64f62
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:40:51 2024 -0500

    remove log

commit 001a608cdb7970009a785ee813c0a85b3f61b739
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:37:16 2024 -0500

    save dictionary query state

commit 9483e0b9bdbe30676d95331b2a9be600f6ce8e41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 23:22:00 2024 -0700

    slightly more condensed UI

commit 37dc81f43b77bf70fb20e791dc3a47b8bf4eda5c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 22:40:57 2024 -0700

    added back removed listener in quill

commit 69489bdd3b948121e77487479f55d65bfedd8f9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 23:04:56 2024 -0500

    allow user to edit dict entries

commit 7935b5a7a304e5ecce46f61d443b97c7878ac4a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 15:27:13 2024 -0700

    more concise editor

commit af2465658e6d017a39ea591a5dc3ebdca76ec9a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:27:23 2024 -0700

    pins instead of locks, better scrolling

commit 20faf1e5d493fc1a298493202250520eb3918e44
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:26:23 2024 -0700

    fixed bug in autocomplet

commit 26d862dd120666771ca6ae168f8264370c27cb2e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 12:17:30 2024 -0700

    streamed responses

commit 9828768f3403281f104d6992cfa13f74cc208dbc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 10:01:37 2024 -0500

    export user entries to project dictionary when updating and adding new

commit a9e65d1a2c6a6ed8b803838d112eaa97fa31390f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 09:17:32 2024 -0500

    fix type error

commit 9176c970f2c4e00008b1cfd2e5329cdcc50dab48
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 22:39:49 2024 -0700

    better UI for input

commit d5006b198e64b9bc1914efd04ddba6ed46c15929
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 23:35:49 2024 -0500

    fix issues with dictionary including crashing with large db

commit 51f503543ffa878f538f2d50fbd56f340d4d053b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:46:43 2024 -0700

    potentially interesting parallel passages chat

commit 819b000c55b24bdc7d2470ab79cad2c5c10920b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:20 2024 -0700

    added missing return

commit 3363666eb0111987409225fa1af6644556fca537
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:08 2024 -0700

    added react markdown

commit 2e82a47b193fac3335d6990a5f35764112c424f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:25:12 2024 -0700

    improved UI for parallel passages

commit af7b94bf58ce939abc3e91b31b8175fbccdfeece
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:10:04 2024 -0700

    locked results in search

commit 6b1857985a454d09ee37fe677f3f4435a99746c7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:54 2024 -0700

    fixed typo

commit 51312fd62274dd24fe7abe82082e1511caed7e3f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:14 2024 -0700

    some fixes in webview

commit b41be08ac2b0917c68f55eceba3a6dc9b7620caa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 13:34:06 2024 -0700

    some better UI

commit 0412df643c80a6c860d5061b18c8630283d0c4d5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 12:08:07 2024 -0700

    removed some logs

commit 5006f6dfa44ec2d744e94012c8f3c7bf4aa3b787
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 12:29:19 2024 -0500

    fix height issues in dictionary editor

commit e2417cc5dcd2f875f7f6cb8f0312b54d4f7bc0b2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 10:12:42 2024 -0500

    remove all undused code related to resource in bible translation

commit b984400380ac8d58645faa7e44419c18685c632a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:57:57 2024 -0500

    remove unused video player provider

commit 777f6c07afa48a277b9ef6102c578b86c10ad731
Merge: 4b1808c 0ed9696
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 8 12:55:10 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 0ed96966ccdf6cf1d47b046488abeb270f03af5d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:54:31 2024 -0500

    remove dict side panel

commit 11f7e997a0585bfeacb0d6a6d41ccc9cd06680e2
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 10:53:36 2024 -0500

    Added ability to add a perspective to the Reflection.

commit 5bb551e6040efc1f07c54977097ef09f7718420e
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 09:14:56 2024 -0500

    Added a reflection spinner.

commit 45f50e96734da913118f1a8fd20c299c0d4de34d
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 16:19:05 2024 -0500

    Added logging output.

commit f0c1b8399b5234217aa9b7c2b821066cf73f97ba
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:34:52 2024 -0500

    Added setting to turn on and off the reflection.

commit a2c8eed25bf66796c3bc2b977de8a1b52c8907fa
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:11:31 2024 -0500

    Fixed the problem of it embellishing with "personal" stories.

commit 1a1153f92e8dc144e0c97fbcefebd8c9ae70b750
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 09:27:23 2024 -0500

    Attempted with bullet points that didn't work.

commit cc7febbb4a6c7ee4fa0868f1bcb7078aa2856ce3
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Nov 5 16:38:14 2024 -0500

    Reflection works but greatly expands the generated result.

commit 5ceb7360eb42ab0ecde971ba4bed65b03f72c59a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:58:58 2024 -0400

    Adding missing events package.

commit 49d6d557aa3b820b1a04e99b1c2d16e2ffcd7b8a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:29:07 2024 -0400

    Adding enableGrading to missed useEffect.

commit b89ddc882ab8e1add2fd3d3cbac440195a3e84a8
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 7 15:24:47 2024 -0500

    Ignore casing in spell check

commit a57ddb5bb1155e66e95bc6a2f01f6acff1d4820f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:57:12 2024 -0500

    add pagination to dictionary

commit 8ce8022e11835e3a31e3a30985ffb8d021e9e6c5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:47:36 2024 -0500

    change dictionary ui to use database

commit 4b1808cc54c863d0b5dd85e8af1f5c2f1f89c547
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:15 2024 -0700

    Bump to 0.0.67

commit 6d8a99744016bd46f56dd1dcab956ee4c5ad587d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:14 2024 -0700

    Remove some messages

commit 94c9fe22da119c0aa79f1ecdd74648ca3dc658e3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 09:10:52 2024 -0500

    speed up spell check with sql call

commit e1deda80ffa2a40ea1415c7f77fbf1f76eceda7e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:57:55 2024 -0500

    user now selects where to export to

commit e54e7de22e425c8ad449b4d3cc9666c35cabb693
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:55:07 2024 -0500

    export web vtt file

commit c7160673c3e14dd872390161664dfce01924a3b4
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 10:53:56 2024 -0500

    multi line system prompt

commit 575e6d86c36ea69bcc490419e2025417560da2dd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:29:17 2024 -0700

    Bump to 0.0.67

commit e4157001da61eb51ab8fb39cc276e0a3d4d116e5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:28 2024 -0700

    Remove some messages

commit 596fe4aa8911057930487f0c64e4ae9f68ad2702
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:17 2024 -0700

    Clean up project manager view logic further

commit 8b7b662203d20982d6e337ae414fca4bff180d95
Merge: 08c4985 255b39b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:46 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 08c4985e5c4209ac6beaf50f4aaf2881aa39d16d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:40 2024 -0700

    Fix project overview display logic

commit 1a64bcbb361b1f614138611a8f8f0e4f26288dd0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:37 2024 -0700

    Silence logs

commit 255b39b21375e928cd8cd3d4c25970c015b209ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 00:36:20 2024 -0500

    save dictionary to sqlite db when upload is done and prompt user to save after accepting spell check

commit c8f8acc73410016ef428d0cd46c7a03bf9057900
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 22:01:16 2024 -0700

    Fix types, quiet logs, bump version

commit 5d3be097fde748645f00361ebf9cdf6f0ec7d8d0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 23:10:05 2024 -0500

    fix webpack issue that crashed server

commit a03c777ea286c13addb22770d56b1d7e1fa908a9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:54 2024 -0700

    Bump version

commit 1a1904c70dbac87453bb2ad06962aaebada370b0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:12 2024 -0700

    Better null checking

commit 856987e5acec36a6d66e5cc6d94e462df55caee0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 13:37:11 2024 -0700

    Clean up ChatView buttons

commit 485ed93666e2d746d83ca493ac2c21358385b51c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:44 2024 -0700

    Don’t use ‘video’ corpus tag by default

commit b71ab2a72b88faded9c06892e59768b42b4bfb2e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:08 2024 -0700

    Add force reindex command to status bar

commit 0c6fa0de7d1863436564603cee50be57d73edf9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 11:55:02 2024 -0500

    get alerts all at once and update them when appropriate

commit b85649517bbf9cfd88d47234a9d673bd4c3b0047
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 09:00:57 2024 -0700

    Fix importing sql.js and bump to .63

commit e22fbf5f534bdc55565f4d9a599e358ef7e13d8a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:38 2024 -0600

    Ensure chat threads file exists

commit 2a69ccc14586bf42f84862a91c8b877c24277b82
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:19 2024 -0600

    Handle project manager empty workspace state better

commit 5e14add1f2b1b78cda8531d81f766a7572564f5b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:22:04 2024 -0600

    Bump to 0.0.62

commit 1e60f8e1813beac11e0814ff9e68020d54f7cf6e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:21:36 2024 -0600

    Include sqldb in build

commit cd06948270a0b9d2fcd9b3af06835e3d407435cc
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:54:57 2024 -0600

    Resolve some type issues and bump version

commit 1fa18bbd1375446e8f12cb836e6973c43e3027b7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:48:46 2024 -0600

    Improve initial data population in project manager

commit 87d835fb7c8eaba263f1b76bbc5a5d49293a93da
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 15:46:37 2024 -0600

    Include sql.js wasm in build

commit f4e7e30613b7c2e8b22a10e6f80e486c61f9c52d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 14:53:38 2024 -0600

    Support project-level commands

commit 1a4259e86a0ff2f292e55a698198214c3922dbfb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:41:04 2024 -0600

    Add fixme for preview confirm/cancel step

commit c18cb5ed09d75dffa8980232eebd6b41d8b37565
Merge: 8caa5dc 49f4d80
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:37:14 2024 -0600

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 8caa5dc43ee3e6aefb6ac647aeef649fc7afb82c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:37:08 2024 -0600

    Handle multiple previews properly

commit 2f97bba609d841e0b083f2c4112e56fc035a1492
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 07:30:23 2024 -0600

    Bump version

commit 1e4c0d1c1af3ff75c665b536bbd73b443bcab1d3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 07:30:18 2024 -0600

    Restore previews

commit 49f4d80008d4f17646ffd2140546f4af9ddea7b0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 17:18:08 2024 -0500

    UI for suggested prompts

commit 7f2bb61e7a038ab630b1af51702c8d38c0a303e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 17:17:15 2024 -0500

    new styles

commit b34e785cc0acfcd0e49d1c257631befa67b75473
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 15:19:23 2024 -0500

    fixed styling where buttons are invisible durring lightmode

commit aca2f64a7b2109348801548a3f7ec47d4c4c81f5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Oct 31 15:31:20 2024 -0400

    use db for spell check

commit fd7aca7fdf600a1e4f771a4ff6b7ed54db82607b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 12:42:37 2024 -0600

    Upload multiple sources or translations at once

commit 0ba71957acb9f03253990876ec499806e947342b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 09:27:47 2024 -0600

    Clean up logs

commit 6c6ca243efba790b70cd18608dfe163298250ceb
Merge: 9e70bc8 90135d9
Author: ryderwishar…
ryderwishart added a commit to genesis-ai-dev/codex-editor that referenced this issue Jan 7, 2025
commit 68f2521631a4b572741b815b8f1de4804e7f5413
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 17:59:32 2025 -0700

    Add a planning doc

commit a676914b0e9a2d24047e83a8bcebe1d5a39775e9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 17:59:26 2025 -0700

    Fix test ts errors

commit 93ad687776359323c7c001c3eff16210546bf66b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:54:05 2025 -0700

    Use built in performance hooks

commit 0a15874c2f4ef7773ee0a112c8014a45b20de9cb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:36:05 2025 -0700

    Bump to 0.1.4

commit 46bc2a086df31d372fb731c7ea406ce32abea4e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:35:40 2025 -0700

    Refactor Chatbot initialization and enhance SmartEdits file handling

    - Updated Chatbot class to initialize OpenAI instance in a separate method, retrieving LLM endpoint and auth token from the auth API if available.
    - Added ensureFileExists method in SmartEdits class to check for the existence of required files and create them if they do not exist.
    - Improved file reading logic to handle empty file cases gracefully across multiple methods in SmartEdits class.

commit 0143daa414af73a15be8ad6da3a2242cf93e1e55
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 20 13:23:50 2024 -0500

    fix webvtt import so spaces in file name are ignored and remove some dead code

commit 3736d2cbf2197f170eb7f26cde926c0fddeb5ffe
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 19 17:51:34 2024 -0500

    properly step to init step if a workspace is open but not initilized

commit c868e0f306189db41dc486843c8cbce5118a8835
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 18 13:02:45 2024 -0500

    fix statup flow so it show the correct steps if the auth extension is installed

commit 268e28e54b2c37ee6840487f2f3c9268730f7073
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 17:40:39 2024 -0500

    Update TypeScript configuration and VSCode launch settings: Remove test folder from exclusion list in tsconfig.json and eliminate web extension development argument in launch.json for cleaner setup.

commit 7c81387fb4e3763298c482b9237a80c96bcb3d9f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 17:00:09 2024 -0500

    Update webpack configuration: Add process/browser polyfill, set global node option, and define NODE_ENV for improved compatibility and environment management.

commit c7e079fa08424730562a6e1f63c228e30b844796
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 19 16:46:50 2024 -0500

    correctly add user as auth on for git comits

commit dd607fc7b25f21f1038d7655eef635469d748a3c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 19 13:13:49 2024 -0700

    a start on removing extra css

commit a95893ad3f4d13784771d79c0438bc917e433f6c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 19 13:06:06 2024 -0700

    fixed copy button in parallel search

commit 6814c3f69baf39091be09e79d994dcae021d7b61
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 08:16:38 2024 -0700

    Add benchmarking code

commit f4b51c5b5ca912583e8a82cacd5fe997220ecba3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:59:10 2024 -0700

    Bump to 0.1.3

commit cc5eda1b77046aaf56f6b54e6890eadfa1c2bc58
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:56:18 2024 -0700

    Use corpus marker to group navigation items

commit 16cf6299ff6c863f065168ddd1d657080b93fc89
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:48:52 2024 -0700

    Drop old navigation; add a new one

commit b8df3850b701be03c877b35aee5d1089de855083
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 22:34:13 2024 -0700

    Minor type fix for v0.1.2

commit 73fec2732f345a7e554a77de4843cf23c52b1033
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:15:03 2024 -0700

    Bump to 0.1.2

commit 149ae03acd66cbb5c44dd4b677a1008449a08b19
Merge: a100f37 cc3ca77
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:14:14 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit a100f3721244b496920a4feb76219d654441b421
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:03:35 2024 -0700

    Update version to 0.1.2 and enhance API key description; comment out unused state store update logic in inlineCompletionsProvider.ts

commit 2d418dd4fdadc2d9f2f0a4787f330d5b925fbfc0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 16:52:18 2024 -0700

    Use custom auth-defined llm endpoint if available

commit cc3ca7790434775194d427eb8e4084a4c0b1376b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 16:43:52 2024 -0500

    Refactor llmCompletion function: Remove early return for no similar source cells and fix comment formatting for clarity.

commit a24e2662a40ca48dba22781b64ef92b9b27bf73a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 15:57:04 2024 -0500

    Ensure chat threads file check only occurs if workspace folders are present in CustomWebviewProvider constructor

commit 0b06069d3fb234b41d72bdc89acd1e4d630f815b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:44 2024 -0500

    Update version to 0.1.1 in package.json for release

commit 84a6dd188903220a4b5c7023dd45870074479dca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:18 2024 -0500

    Enhance password validation logic in LoginRegisterStep component to ensure confirmation check only occurs during registration.

commit b5eedbb49a97af2d8eb7bc54d3ddc991faa0195a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:26:59 2024 -0500

    Update version to 0.1.0 in package.json for release preparation

commit 02fcdcdcfb599d6e2daee93ea270240110d81b74
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:18:20 2024 -0500

    fix absolute path. Use generated local path instead

commit f5bce323d14af0aa2b4c3618f990e386952be6aa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:45:59 2024 -0500

    Refactor LoginRegisterStep component: Remove password validation during registration and adjust password strength color logic for improved clarity.

commit 5900b8f2e53322f664b6e0ceae5c3066755c1e76
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:30:42 2024 -0500

    Refactor LoginRegisterStep component: Introduce centerBumpValue for margin adjustments, update confirm password validation display, and change onChange to onInput for confirm password field.

commit cc3e453a65e7608ae269efb89a3ae1ce68518c27
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 12:12:27 2024 -0500

    pasword strength shown as popover

commit 331f1b7fddadd325510992e15d8440127731b9cc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 11:37:13 2024 -0500

    add show pasword button to login and register

commit 4c11e2a22ba183c9f4f580937aa6fb807fa1a0ca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 17:02:50 2024 -0500

    Refactor stageAndCommitAllAndSync function to remove workspaceFolder parameter and improve error handling; add syncProject command to project manager and UI for syncing projects.

commit 5cad490f820961405fe3a7cbe556a8ac5c1f695e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 15:07:51 2024 -0500

    fix compile errors

commit 22c498735eb6748fcdfcf1920762676fc2e11a6a
Merge: 3bdf889 64505b6
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:17 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 3bdf8899275bdc3cffaeed636867d5b8dc13b5fa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:05 2024 -0700

    Hide new chat in parallel passages for now

commit 64505b61cf95649130e1910e74e76b7b9bb255f1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 14:46:22 2024 -0500

    resurrect chat

commit ad7c6e99b47f43bc67f9994dda57adb6f8655784
Merge: eb50c13 4071c43
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:56:25 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit eb50c13eb645d217bc1f21df2fc0cf2b9731cdb7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:53:25 2024 -0700

    Add fixme

commit 1243bc80008f3150b4b88d75509b605db8b618c4
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:44:32 2024 -0700

    Enhance llmCompletion function to filter out current cell ID from similar source cells. This prevents re-predicting and generating duplicate content from previous edits.

commit 957f0eac8713adba44b9dc376e33591b8924cbec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:42:26 2024 -0700

    Remove commented-out source control provider registration from registerProviders.ts

commit 4071c43811fdd8cbce63bf227dc0aaa95db89c10
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 12:41:55 2024 -0500

    rerevert source blocking changes

commit e35d394e564bc810d394d6bffa41b37b3e4714a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 12 21:04:35 2024 -0600

    fixed merge

commit 7c0af25c008342d1993a9d3185e0c56034e02836
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 15:54:52 2024 -0500

    remove place holder name

commit 5ca1f27fb50da35a35484c5d905ba41383ec3a87
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 10:30:25 2024 -0500

    user name and email now come from auth

commit 0e3191126183eb2a9e4c3ee28c0f2412c42338c3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 11 11:55:49 2024 -0500

    Revert "Ensure source doesn't listen to matching codex updates"

    This reverts commit 182251e018b9022174b3917e75d99770c94f357b.

commit 182251e018b9022174b3917e75d99770c94f357b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 10 10:47:18 2024 -0700

    Ensure source doesn't listen to matching codex updates

commit f09441055ed8f33706368286fbcd267cde3c29b0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:13:29 2024 -0500

    properly dispose of webview in startup flow

commit 5521a408669445575fb6fb786734c1e8e09c2173
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:12:56 2024 -0500

    If a file does not exist ignore it in the commit

commit 6a1c1c599118709ac28d795ead6eb904386a8dee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 9 11:09:01 2024 -0600

    updated global message type

commit f4bd30a4c332db347e10ac388df018565a11238b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 17:13:44 2024 -0500

    Refactor startup flow and metadata handling

    - Updated the extension initialization to conditionally show project overview based on authentication status.
    - Removed redundant checks for codex notebooks in the initialization phase.
    - Enhanced the startup flow to check for authentication before sending metadata responses.
    - Adjusted state transitions in the startup flow machine to prompt user for project initialization when creating an empty project.

commit 61e97621dceccaf2fd4fb5954eeeb7515c4626dc
Merge: 4dfe25c 639aef8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:33 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4dfe25cbc7937b9248c69de573232a97feb1a555
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:26 2024 -0700

    avoid unnecessary ENOENT errors

commit 639aef8ae327052b132df8123609a76960d55f9b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:31:40 2024 -0500

    close startupflow if state reaches already working

commit 3089ba28180de3687df8ad979ea89adbb5fa22e1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:14:49 2024 -0500

    show init screen in startup flow

commit 79e20914d92e127a6d66bc59da053b02d00a5fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 23:36:29 2024 -0500

    feat: block git commiting if no remote

commit 3e1f76f89e0b4f0c3ca4ea7c7fe37172d5eb8fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 22:10:29 2024 -0500

    Use top level refrence for auth store and add password validation

commit af19c3f511bb06a6dbb5068659e547e621869f43
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 17:13:38 2024 -0600

    hide empty messages

commit 55b294b542ea7b964c39dd9f520a15e479405de4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 13:06:45 2024 -0600

    Chat can coninue after pinning verses

commit a8400180b74dd007cbe3b13d44df68702d219b6d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:23:07 2024 -0600

    better spacing

commit d8408d323435b17f86365ff1332eec997ffafbc9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:22:34 2024 -0600

    file save fix

commit e1c00822833a558b5dcf1dcbb5039c95051c5908
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:16:53 2024 -0600

    Chat can now pin on it's own

commit 8cabc60df9509872ab28fbaf363dcf7086f2e9eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:37:42 2024 -0600

    Global message with destination

commit 75400a7635e125f5de8b639f7181b47183d870b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:51:33 2024 -0600

    merge

commit ff7be46cf41c354f774835b4b22b9c9e04c69dc2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Dec 4 15:02:03 2024 -0600

    global provider

commit 65e73b467fe92c675d32c3d09be63c74d7b24905
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 22:27:47 2024 -0500

    add email to project management so we can commit

commit 0fe9ce94e88e57cc48cb19765a42d6fc654786b5
Merge: 326582b 6ef8072
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 13:27:32 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 326582bf83ba81f74048817020b4a9fd70135c75
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:58 2024 -0700

    Add mock classes and context creation for testing NotebookMetadataManager and TranslationTextImporter

    This commit introduces mock implementations of Memento, SecretStorage, and EnvironmentVariableCollection to facilitate testing of the NotebookMetadataManager and TranslationTextImporter. The changes include the creation of a `createMockContext` function to provide a consistent testing environment. Additionally, the usage of the singleton pattern for NotebookMetadataManager is reinforced in the test suites, ensuring proper initialization and state management during tests.

commit bb2d4a8bedba29eb95b64b09921e324eec2693c9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:52 2024 -0700

    Refactor NotebookMetadataManager usage across multiple files to utilize the new getNotebookMetadataManager function, replacing direct instantiation with a singleton pattern. This change enhances consistency and reduces redundancy in metadata management. Additionally, minor adjustments made to comments for clarity.

commit 6ef807269412305d38e6bea782467c87111ab70e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:59:24 2024 -0500

    fix type errors and make git commit command

commit df5630a9730347b0fedb0c4453805a31e7166529
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:05:46 2024 -0500

    renamve test file

commit 3d5406dc33beaa77accc4af98ae5d13b6dee50c9
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 08:49:54 2024 -0500

    fix message posting and add stage and commit util

commit aa0bde14d989e5c8438e0b6f1954e59442e24586
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 3 16:48:51 2024 -0500

    init git when initing project

commit 4409656a4bc2b80b60c10fda723206f070e3bfec
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 14:20:07 2024 -0500

    show publication button only if repo has remote

commit 478917e456b6e5d72805be536d0c221742d39606
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:16:36 2024 -0700

    Fix import path

commit 5bf45734c192405f39e70b567ea1bb6b325d598d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:15:58 2024 -0700

    Use singleton pattern for NotebookMetadataManager

commit da95948c7353977768fa443a819f1ea3258c02e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:07:10 2024 -0700

    Ensure uppercase format for consistency

commit 56930abb92f4430bb1b40b89dc34843eb51f14bd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:04:01 2024 -0700

    Enhance error handling in UsfmSourceImportTransaction for file reading, decoding, and parsing. Added validation for book code format and chapter content, ensuring robust processing of USFM files. Improved error messages for better debugging and user feedback.

commit 1a7812e26c296fb203b029563930106783690287
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:48:53 2024 -0700

    Improve error handling and transaction processing in SourceUploadProvider

commit 8ab3a139be7393345c699ae101b0ed795ede87b5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:36:43 2024 -0700

    Refactor SourceUploadProvider to support USFM file types

commit 6fb31b3d3242adc26d1baebbb8e53d87367434e3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:31:00 2024 -0700

    Add UsfmTranslationImportTransaction class for importing and processing USFM translation files

commit 2b2d15445bf0a0c6d99490052c5e503b87be25ec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:53 2024 -0700

    Add UsfmSourceImportTransaction class for USFM file import and processing

commit e109dfc727cf1ab9f1ae180e24c10956afbeca74
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:31 2024 -0700

    Enhance LLM completion by filtering similar source cells for overlap. Added tokenization to improve example selection and log dropped examples for better debugging.

commit 23adf482a52fcc6d7278a08dade445daa9c1a868
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:51:47 2024 -0500

    Reindex after importing a file

commit 22c2846a5be5787c2dd23e45c33666f88b916a47
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:45:24 2024 -0500

    Hide all projects from project overview

    This functionality is now handled in the startup flow webview

commit d985070dd9fd7b1fce52de0ca3d66ec6806e4462
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:21:20 2024 -0600

    Revert "Chat enabled autocomplete (work in progress)"

    This reverts commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b.

commit 029c4c1af7165946971e8850d14879fb66254f99
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:48 2024 -0600

    Revert "some progress towards chatbot entry"

    This reverts commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd.

commit 0c361f1c000bab0dc07dc994242f27446ba22d8b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:45 2024 -0600

    Revert "chat tab as default"

    This reverts commit 13b62d2a54a4859a862a8b56d923850f8170e463.

commit 52f542ec2d4d0c00beca8a75d308db39f9ed03a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:38 2024 -0600

    Revert "fixed editing"

    This reverts commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9.

commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 16:04:22 2024 -0600

    fixed editing

commit 13b62d2a54a4859a862a8b56d923850f8170e463
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:46:00 2024 -0600

    chat tab as default

commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:17:08 2024 -0600

    some progress towards chatbot entry

commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 16:45:35 2024 -0600

    Chat enabled autocomplete (work in progress)

commit 1bdf4f2b7dbd100212668191c44987178937e81f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 10:40:25 2024 -0500

    move project create to a util and skip setup if project is already setup

commit a9288611a03a8e48fb1965290842cb355848409c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 29 10:32:30 2024 -0500

    fix types and styling

commit f8fcfedfc169543559adbc727b522673047b4a5b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:16:16 2024 -0500

    load local files if there is no auth

commit 95b33d747491b3e5543f0594934af2117632b884
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:07:07 2024 -0500

    users can now open a existing project from the start up flow

commit 308d669aaffa60c2b8980e3f9d967d8d88a9d39d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 11:47:16 2024 -0500

    finish clone process in startup flow

commit 0c95b8e8ac2fd6da3b002b2f6d26b1984231ffaa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 27 00:00:15 2024 -0500

    fix content security policy in startup flow provider

commit 82bba59aa29d3c2a0b46546c95cc40adbc6ea963
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 22:46:43 2024 -0500

    fetch list of projects in startup flow

commit 33fd4b0e7be17780bd13d4b13dcdba5ccf11f139
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 14:15:48 2024 -0500

    render project list

commit 6336ba6dd6cedac70f3a378cf7a0e18aafdf8703
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:46:16 2024 -0500

    list projects in project view

commit 1f81adb23b9d5cf46713a245b7fac7fb99e504f7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:43:59 2024 -0600

    much better apply button

commit 4ffaaea21bf6692d3ff4da55856b2ce9a45b352b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:42:09 2024 -0600

    fixed bug with old prompting

commit afc6b00175ecd12c7d539392d5c73fe01c2a07eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:07:36 2024 -0600

    chat menu opens by defualt

commit 3683b067ec14759b98426959892caaa834fa42ea
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:04:12 2024 -0600

    fixed blank message bug

commit 107b401502dc644988312226db179fe4f220b8a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:51:58 2024 -0600

    fixed some streaming problems

commit b2563854f5902bc9c0da7677edadf19bedd3b994
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:34:23 2024 -0600

    less radius

commit 8b5fb8c871f276c0f332250eb591e112be15e573
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:30:35 2024 -0600

    fixed styl

commit 722e43ca30e5b1b66119667b959e6676763020bf
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:25:19 2024 -0600

    feedback on suggested translations

commit 902a94680bd4a1e20d7bb69b4735af891b2d4498
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:01:44 2024 -0500

    fix preflight command names

commit ee77a7c61635dd2f66fe53321663bf26d6c8e6ad
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 12:20:45 2024 -0500

    skip workspace setup if one is open

commit d4a08c2448ace427b56f8e5aada5fd25454f1c4d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 26 08:45:53 2024 -0700

    Change default llm model; increment version

commit 5636e480085d498e4a8104a3f45cd3a1f53f5619
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:38:10 2024 -0600

    removed chat webview

commit 4f8b697893ae0641e12bd3b183e1d6d67d18ab50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:26:15 2024 -0600

    removed prompting

commit c71025165a082208f08c47044d8c515fbd8bc399
Merge: 40db83d 000c084
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:39 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 40db83d820b46563cd359d159ee37e1e058b181e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:26 2024 -0700

    Clean up state sharing across activation, provider, webview

commit 78745f0567d5f14f4236f8093aa35d08fba7cbf2
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:04:39 2024 -0700

    Overhaul of startup webview

commit 000c0840408730cd61e8eafa223cb28cda5168a2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 21:43:03 2024 -0600

    delete old chats

commit 5ebe8a519df84c22ca849a1cccbffa322d839cb5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:49:06 2024 -0600

    better alignment

commit 50a3c1c59294c626ca722ff39bcb864e7be57e87
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:45:45 2024 -0600

    slightly improved session management

commit 940b16dd180b92751c2fca7184c158016456ae7f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:21:08 2024 -0600

    loading and saving chat history

commit a75b59189c9b8476ca03ee5d45fdbbcc3645845f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:27:06 2024 -0600

    merge

commit aa692ce62642e451ae28257602e485fd717d5d8f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 16:56:06 2024 -0600

    removed ChatView

commit 6f0bafc636c33bd1c97ca8afbfbdf847e8739faa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:44:54 2024 -0700

    Align preflight with startup state machine

commit 411ae7cda7867d0dcd536cdae10a449002c56f1d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:40:54 2024 -0700

    open startup flow using state machine logic

commit 084234398485b63791a66c6a89e6ba80a8120cdf
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:54:57 2024 -0700

    Handle test suite compile errors

commit 09463e61c522d49a9fa7170fdf680f9d99621b38
Merge: 4b22e1c 1d9d551
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:21 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4b22e1c4d09027034f89ab8dfb4e610ac5696adb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:18 2024 -0700

    fix build webviews command

commit 1d9d551db3424d0a80cf5ed93de414dc8aff0474
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 15:53:31 2024 -0500

    add startup flow

commit c0c15f1d87d9646fcfe8e4ded84b2a4f8396de25
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:22:17 2024 -0500

    revert type changes

commit d6a1b804625bc16398bad23e1c28f0609bdfb521
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:19:21 2024 -0500

    revert changes to source uploader webview

commit dfb56143ed169876fa9de312a66b1849005a5aa0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:46 2024 -0500

    move logic to startup flow provider

commit 9749771a23422074b6447ec62183ccb353820450
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:28 2024 -0500

    revert SourceUploadProvider.ts

commit 2a7b9da01dd60a1489d09c1c81bd1dfa3b51ea30
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:32 2024 -0500

    add startup flow to build

commit bcfd8822b01b9f20a0b9cfa7313241e5ab8fbbdd
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:13 2024 -0500

    register startup flow

commit 27f48552ca561e026a7b32460001dfcd1c93bd5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:00 2024 -0500

    add start startup flow

commit 791cab17674f8a9adaeb4594e5dece9129bfd80b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 13:39:01 2024 -0500

    add password confirmation and fix ui

commit 1f418fdc79d044180e0cba92884292711ce0deae
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:38:03 2024 -0500

    setup signup

commit aca437967f8201c2bb320fcb1bf69a667b4eef40
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:01:58 2024 -0500

    fixes to show auth step

commit 2be23ac631d86d965214e5a9d1c0aff3683b7534
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 15:55:49 2024 -0500

    work on showing auth in setup flow

commit d615679856af1cbbc760e28741b1ea3e2b74736c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 12:10:31 2024 -0500

    add check and change command names

commit 036f5f4f7cc9d733cbbdaa9152afea94e5c1ce9c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 11:20:40 2024 -0500

    start auth flow in upload provider

commit 3e8b8bb943fe583ad3d74b9c8deaa5391691e0c1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:27:35 2024 -0600

    better video ui

commit 15695ec8253af9e5260033906e4f40ef7ff8b16d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:16:22 2024 -0600

    working video player

commit d3567a051800ad9d0a8b530d325d58085738f6c9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:15:50 2024 -0600

    bible project urls

commit 10efef06a54590908a2e64c41e9ec55e2c539e82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 18:33:27 2024 -0600

    removed old tab

commit e87922df4ca39da7dd1b675dd7d4408c6bb573e4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 16:25:15 2024 -0500

    Added CodexCellDocument webview only update event _onDidChangeForWebview for proper revert functionality.

commit 99b9d69babcde4ba0c6f17014c31c2ae6e007e2f
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 15:18:28 2024 -0500

    Added watch for file change to reload.

commit 6d6b236bac0bbc5a30e3bd20dc8cffeba0afc9f1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 15:26:31 2024 -0600

    edited user prompt

commit b887039bb2de370bda8b1e303e401cb0a39c8285
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 14:10:58 2024 -0600

    uses language config

commit 57f4ae1f33333043996f0c054a8447c963ed8dc8
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 13:57:39 2024 -0600

    better prompts

commit a5439914f6164a43c14ba47ceefb36510891acca
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 22 11:49:14 2024 -0700

    Disable workspace trust call for theia trust compatibility

    Cf. https://github.com/eclipse-theia/theia/issues/10472

commit b90b464ff386e4c6723a98571d58cc959d7a8ea4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 10:27:30 2024 -0500

    Resolved compile errors in the test config target.

commit ca78a7bade0fe1571b48fb046fe6555a24a92a50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 01:55:14 2024 -0600

    better prompts, ui, searching, and saving (but that part is still a bit buggy

commit 09eec8a33bb6bcba66a60da7a61011bdb3833210
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:47:13 2024 -0600

    Chat now predicts the next prompts

commit 9e7a747690250bc2da560bccdcd737e21ee1db06
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:34:04 2024 -0600

    Removed Teach tab, more combined into the chat tab

commit 0fc51a04d068330efb570c9dd70b410075c3606a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 22:04:59 2024 -0600

    apply

commit 3cdd5adfc3ea9be486335bb3469a757a90b96832
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:45:29 2024 -0600

    more than one TranslationResponse cell, and more extensive regex

commit 037bad6fbe76d6198251048b67a76174978c6bf0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:20:43 2024 -0600

    toward a unified chat

commit 84f65c09b5dcf4dd04dcf9d7eb000e8c291a459f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 15:17:06 2024 -0600

    hide navigate button

commit a02439aedaeec9f717bad6763f85ef858df3bbde
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 15:11:24 2024 -0700

    Some copy updates

commit 57388274f8a471b217621be2e7f53f0b59962a7a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:45:05 2024 -0700

    Ensure navigation treeview is not mutating data

commit 3e152ab251d5b4f617befdc50b6c6741fa827ada
Merge: d2c0551 a6892ab
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:16 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit d2c0551bb41185ca0a7c170b5eb625ce13fc3184
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:12 2024 -0700

    Move command from top level

commit 1c7f9eaf0e7f842999e5b0e2e107d54c2a53f3df
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:04 2024 -0700

    Handle fatal error for missing file

commit a6892abecfce5852a9644c70a30eded5c6ba2d3d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 14:02:03 2024 -0600

    some progress towards a working apply button

commit 6449addebc74863b2508a407f99a6ed8b136642e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:04:28 2024 -0600

    less word breaking

commit 1c0e2ea351e8274b435e067e4f612264a71fd13a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:01:21 2024 -0600

    backtranslation word wrap

commit 4a54baed95d7ac8e528d22c65ad6cb4cdc9a01b6
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:49:12 2024 -0600

    smart edits now get memory context

commit f332f802baf70b88f7ba10fbbf8d118a25b5d065
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:17:51 2024 -0600

    fixed prompt

commit 54b0984d41f1029f84e79815782fe20c104b5984
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:13:25 2024 -0600

    rename to be more clear

commit 4dc337ee20db9a7ae49e8f0ff2da6b5c91ebbbee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:14:53 2024 -0600

    search settings and pin all

commit ddab14a8b4d919d51f958ce18e327c313876db50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:04:59 2024 -0600

    more padding for checkbox

commit ec7987dc3914e61cbe3e7c850703081af9175a36
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:02:51 2024 -0600

    better index for searching

commit 5462ad730e7167ab7e6dd5b49b53aace519c7b92
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:08:24 2024 -0600

    clearer UI for context

commit aa34cbe48e4857c1d71cfce881ae9281654520d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:07:38 2024 -0600

    updated assistant about the new tab

commit d43794975fd0e4da39f8b7a4805e1eff2caf3018
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:01:41 2024 -0600

    some bug fixes

commit 3a7fbe424bd1b3a75085dc17c077e4a2c3deb303
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 21:32:50 2024 -0600

    much better memory management

commit f414808c4b837ba9353b2b27699202f6c6f14b57
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 20:23:51 2024 -0600

    unified styles for both tabs, better chat etc...

commit 49b5f88d445ee79b3b41e4cfb78200a1957bba75
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 18:34:50 2024 -0500

    remove builds with nothing to build

commit cf5da90733be6f738f48bf9b9aa7fbbf22f88e64
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:40:16 2024 -0600

    navigate to next cell

commit 91e25eeea2e0a833c4d71a5e051874463fb684a9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:45 2024 -0600

    somewhat more stable

commit 69acedff6572d624228fff761282793f44ceff7d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:05 2024 -0600

    new command for finding the next untranslated source text

commit 92bfaf3d1ac41033b5066cbbada9529de2014ba4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 15:01:25 2024 -0600

    skeleton loader and clearer UI

commit 3ab2112b2756a423e80d7a9dd61ddc72dc8cb94a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:56:23 2024 -0600

    UI a bit better

commit 8529a05814fe234db4a171ff4d1ff7433f2869ab
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:47:18 2024 -0600

    working with untranslated verses

commit e0accd726d7c5cd21d0875c9c26c4e4f7bae7180
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:50:02 2024 -0600

    pickable target passage

commit 5c3ee120d25cbfb703fb1dbb8d7113c95524df1c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:25:06 2024 -0600

    better UI for silver tab

commit b8bf1ee040aa66871840865eab91bc87563c5fb5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:43:43 2024 -0500

    remove build commands that don’t have folders any more

commit 0a8589ceadc07212d78f64c06fed31c5b52c2f5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:14:49 2024 -0500

    remove unused code

commit cba5ce42dc900c3b8b664daff3ab6c33a3bfdd04
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 10:44:21 2024 -0500

    rename vars for calrity and return indecis to extesion for use

commit 6020e97fed9d61c19f7ab2d4d559d2d7b42fb9ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 17:05:04 2024 -0500

    index tsvs

commit ec3d1c8cf417e2701d1a7a0683a202c506c90472
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 16:17:36 2024 -0500

    init add logic for indexing tsvs

commit adc76961d82f085ff9727eb8db03135a523b0715
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:17:21 2024 -0600

    new tab and css file for chat input

commit f1f83f911262f0ecc8c7ddf2f76dd6fe2bf9132b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:16:43 2024 -0600

    start on silver path

commit 50da7998b13d1b8d07a1f0544fe9b0fdbf0a70f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 16:26:49 2024 -0600

    better organization for codexCellProvider

commit 0b5943eb8a1784edd799a11422b11f8d5746da9b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 15:55:41 2024 -0600

    better memory management

commit 982c26d0122ed3a0bba88bc11344334dac041856
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:47:35 2024 -0600

    silver path start

commit e6f7538c95d60113c05c2b3bb18c93151641e207
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:20:07 2024 -0600

    improved system prompt

commit 80fee48c36827af4c77e92db6360df6dbd73d8d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 13:04:53 2024 -0600

    better look for quoted text

commit 24f86b857236061eeef7679e5dd6f75b728db4cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:52:52 2024 -0600

    fixed json bug

commit 306ffb68a072e7c1723bcd1504fa09780e5c70a5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:42:06 2024 -0600

    better prompts

commit c9f8a861b2152075961c7cf716de0b5d98d43bf4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 23:27:32 2024 -0600

    better backtranslations

commit 7f7d07d8d2d2f659928a9dfd9dfc0312f7946eaa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 20:29:16 2024 -0600

    better ui for backtranslation

commit 55979af809e57b82745c6eff4ea4a1ec3b0739e0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 19:12:54 2024 -0600

    working backtranslation

commit 24cfc273edffef93efaf198651b4f10e77aae9a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 17:14:11 2024 -0600

    new command

commit 07101d5fb50d500f2a6034c258105248f4306ae5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 16:27:48 2024 -0600

    backtranslation

commit f6401b245f3b0c2a8820624e1a6c96df3965fc50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 15:15:39 2024 -0600

    token saving context

commit 5e116e9453edb8770524886235e80f0f921aa773
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:33:27 2024 -0700

    better cellID display in chat

commit c9ec863cec12a683d35b60601cd719f376cc4a42
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:04:44 2024 -0700

    better system prompt

commit ee7588f5e932ba3aea70789e5c17978a844037b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:57:09 2024 -0700

    working reload button

commit b5fd44734b5c2a2eb7eb443261728de4043373c5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:30:42 2024 -0700

    fixed bug where dictionary didn't update until a refresh of the app

commit 95071c292f8a45c6b0e1cbaed4c047e427c13d53
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 11:54:58 2024 -0700

    some improvements to tabs

commit 05ded57fe0ab6042f1ab56b34023b2c78beb5694
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:14:16 2024 -0700

    small style change

commit 5d56a69b2a7aeab4c61f047b14d1aa400a0a3d09
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:07:08 2024 -0700

    better organization of parallel view components

commit fd2980a8148b338f02a08f452bffc6b8ac4b8fdc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:28:28 2024 -0700

    better styling

commit 1b8d2551876d3baaefc6a75e1259135d3c5bfc0f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:22:17 2024 -0700

    codex help

commit cb4de766b77155a6c993f98ccebc43632be4eddd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 15:48:50 2024 -0700

    universal pinned prompts

commit e902bad3323b50e55e23c8da920ba3cc9c4df52d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 14:22:25 2024 -0700

    save generated prompts

commit 74aac37fc2d7f436eff14f24d93f436811dc9318
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 15:16:37 2024 -0500

    restore needed css file and reduce button height

commit a502d88bbe3000507112c8b2a408f1c1492690d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 13:05:07 2024 -0700

    better organization

commit fc11fd8774a94c37006e4c66119aee44219b7fb5
Merge: 1f470ad 0c9e677
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:18 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 1f470ad012d02f48b2bfdeb253bc377106cde5cd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:01 2024 -0700

    A bit more comments style cleanup

commit 0c9e6775a4ba5e3dea4136992223420289cc4488
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 14:40:57 2024 -0500

    allow user to change video player height

commit ee44a7248ab3753e300f80cca1697ceb5f2b3b4d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 12:08:34 2024 -0700

    components for prompts

commit 6f09e260fc48120116193e34cbe001a55b4255b4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 11:53:55 2024 -0700

    New component file

commit 719408684c760d8cacf947bf14ffb7571dcfe309
Merge: dc17e7a c75b57d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 11:47:59 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit dc17e7acb4830e0206a27494a0110bf605a8440a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 23:35:57 2024 -0500

    WIP: Add expandable comment threads

commit a09af37a12c018218327c7b9771075ec44e57ee8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:29:28 2024 -0500

    Tighten up some styles

commit ed39dbbf1adaff4d3c7af1628ec6af37a5f6d622
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:22:16 2024 -0500

    Add icons to comment tabs

commit ea0cc154f48d808a8e309f050e3e03a5a7113360
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:05:56 2024 -0500

    Add tabs to comments view

commit 12303ddbffee26a2e55cf0e4e0ff46bc826e4817
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 21:51:30 2024 -0500

    Update comments view styles

commit c75b57df8eb77feb1d4aa83666a4b7c61ebe6465
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 21:45:06 2024 -0500

    fix unsaved changes prompts

commit f0685d10004a53294361eafe82b3623fb9eaea9e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 19:35:33 2024 -0700

    pin verses from editor to parallel view

commit 7c53dc19b186a319eb61e73f4178b0d3b2d14c41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:59:16 2024 -0700

    force activity bar open

commit adbb6ee1eae3a6432b0ed02651d3126a29196bd4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:03:14 2024 -0700

    better source text

commit 025c0366be1eff44835c54ed1ca07fd9c39a85cc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 17:18:17 2024 -0700

    show source text in editor

commit 4b745f827c5bad1ebd8e2a36f6047a47c0765eb9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:57:00 2024 -0700

    don't show needless revisions

commit d0b3c7e270ca839b5b3fd919e450e86f873f1969
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:39:34 2024 -0700

    return void

commit 4ee7f30f58bd44a26fb153aa7125760ad5cffd5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:35:54 2024 -0700

    third person was weird

commit 1bbb4a72fc2aa6f12a8f8bd07d03336f0424ba0d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:23:33 2024 -0700

    better UI, and prompts

commit bf60e4b572ca667e6d795689fbf7b4d5a77aff33
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 15:43:21 2024 -0700

    much better chat in parallel view

commit 9647f6c16c0649d21aff00c47e292d4d44fb291b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:59:36 2024 -0700

    better buffering (aka no buffering)

commit f95c348fc0240548610fb3f1643df0ce9e30fb19
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:50:37 2024 -0700

    Way more consistent smart edits that don't magically vanish

commit bd157a18e8608673a0ab1870bff9a39ae3d157cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:37:22 2024 -0700

    removed buggy cellChanged toggle

commit f83aa5633c2a604e3f6229751c265e4ad0d9b469
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:06:56 2024 -0700

    less padding

commit 72e758384d70b79561c1ff46f370e8c118cef8da
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 16:03:12 2024 -0500

    webvtt filter out cells with no timestamps

commit 35dd7ad581b10639fecbd1919a465fead84a4153
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:52:59 2024 -0700

    save button

commit 95150e9589a0fb61b117eade6a26852f4a5bc0a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:28:27 2024 -0700

    Revert "fixed(ish) save button"

    This reverts commit 2dc417830df86959d77057ef9740d93dd68f9216.

commit a9169253cbc0efbdf2e0278db839e27dd6c7d933
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:27:09 2024 -0700

    Revert "Revert "allow user to add paratext cells above or below""

    This reverts commit c2f96bc60aad976c22d7ef2679f615c35916ad30.

commit c2f96bc60aad976c22d7ef2679f615c35916ad30
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:21:42 2024 -0700

    Revert "allow user to add paratext cells above or below"

    This reverts commit 459beea4c93788af0ecd5f361258630a7764455f.

commit 2dc417830df86959d77057ef9740d93dd68f9216
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:10:27 2024 -0700

    fixed(ish) save button

commit 459beea4c93788af0ecd5f361258630a7764455f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 14:42:17 2024 -0500

    allow user to add paratext cells above or below

commit 0d8fdec3b385581ce124cf00a665d03994d4cc5e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 12:03:28 2024 -0700

    hamburger menu

commit 654918290c8965b4de34a4258a913c8b56105868
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 11:39:27 2024 -0500

    fetch more spell check responces for better spell check results

commit ac17de15b031e9e4857bc704b5c1bc8593436e73
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 19:17:26 2024 -0700

    more search results

commit 9d3bf671a95754b5689fa022eae6f71b6754fa15
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 18:33:14 2024 -0700

    fixed autocomplete and dictionary buttons

commit 7c9c6483afdde181762d3c70069c1ef770cca22a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 18:29:15 2024 -0500

    speed up spell checking by slowing it down

commit c0eca8af77c73d7251a38e69c685fa9f5b272c89
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:22:27 2024 -0700

    new UI for suggested prompts

commit ea9313eab138a8ac3df217f51f0b4e2c7aa6eebd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:58 2024 -0700

    removed old style

commit 48fc1960fda56c08a007a0fd5ff1cde811d32c82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:44 2024 -0700

    fixed the way smartEdits reads paths (i hope)

commit 04377ec8c99e4a51f1684cabb05e890697528e59
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 15:59:00 2024 -0700

    much better toolbar text slider

commit d15e38b23769e9d8feaecfcfad2b69ab41f4059a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:31:15 2024 -0700

    fixed width of textarea

commit 09f4dc87316078ecb8f10a1c38a755133cdd1dd7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:18:35 2024 -0700

    removes html using the util

commit c0cf03d70a03b7a70fc9a6410af5a87b15d5a302
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:09:10 2024 -0700

    fixed bug where words are removed

commit e438d5636d85aadf1d7ddd7d785ab7e252b9ec76
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:01:18 2024 -0700

    some better more compact styles

commit 524954358cab2f9a0b101885a9520ee832944a5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:42:51 2024 -0700

    removed debounce

commit a49134842e07c5490c3d9278415d627e671d5971
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:39:50 2024 -0700

    fixed cell wrapping problems

commit 48426bae8ee9ebfa1bf98721061b0d2d0ddeeae0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:54:38 2024 -0700

    hide alert bubbles in inline

commit cf48eea9754c670886415e05a395e6d939e7b1e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:33:41 2024 -0700

    filter html before saving

commit 7eb2f79f1c5b7b55da4fe26da2b3ca5eb0596976
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:35:22 2024 -0500

    turn off debug logs

commit 6d76ccbcad2ed06cb76b76de209d80c6e0c928d7
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:33:58 2024 -0500

    remove unused logs

commit 0dc340318067fc33487686d8897852c32a07237c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:56:45 2024 -0500

    fix logic blocking spellcheck

commit 6bf27ffff9e047ee264e85c4d6c556b6d03aa80f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:55:21 2024 -0500

    fix error caused by missing import

commit ef8f47e2da45dc54d0c72f243c004bf4f6a64f62
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:40:51 2024 -0500

    remove log

commit 001a608cdb7970009a785ee813c0a85b3f61b739
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:37:16 2024 -0500

    save dictionary query state

commit 9483e0b9bdbe30676d95331b2a9be600f6ce8e41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 23:22:00 2024 -0700

    slightly more condensed UI

commit 37dc81f43b77bf70fb20e791dc3a47b8bf4eda5c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 22:40:57 2024 -0700

    added back removed listener in quill

commit 69489bdd3b948121e77487479f55d65bfedd8f9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 23:04:56 2024 -0500

    allow user to edit dict entries

commit 7935b5a7a304e5ecce46f61d443b97c7878ac4a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 15:27:13 2024 -0700

    more concise editor

commit af2465658e6d017a39ea591a5dc3ebdca76ec9a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:27:23 2024 -0700

    pins instead of locks, better scrolling

commit 20faf1e5d493fc1a298493202250520eb3918e44
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:26:23 2024 -0700

    fixed bug in autocomplet

commit 26d862dd120666771ca6ae168f8264370c27cb2e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 12:17:30 2024 -0700

    streamed responses

commit 9828768f3403281f104d6992cfa13f74cc208dbc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 10:01:37 2024 -0500

    export user entries to project dictionary when updating and adding new

commit a9e65d1a2c6a6ed8b803838d112eaa97fa31390f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 09:17:32 2024 -0500

    fix type error

commit 9176c970f2c4e00008b1cfd2e5329cdcc50dab48
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 22:39:49 2024 -0700

    better UI for input

commit d5006b198e64b9bc1914efd04ddba6ed46c15929
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 23:35:49 2024 -0500

    fix issues with dictionary including crashing with large db

commit 51f503543ffa878f538f2d50fbd56f340d4d053b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:46:43 2024 -0700

    potentially interesting parallel passages chat

commit 819b000c55b24bdc7d2470ab79cad2c5c10920b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:20 2024 -0700

    added missing return

commit 3363666eb0111987409225fa1af6644556fca537
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:08 2024 -0700

    added react markdown

commit 2e82a47b193fac3335d6990a5f35764112c424f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:25:12 2024 -0700

    improved UI for parallel passages

commit af7b94bf58ce939abc3e91b31b8175fbccdfeece
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:10:04 2024 -0700

    locked results in search

commit 6b1857985a454d09ee37fe677f3f4435a99746c7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:54 2024 -0700

    fixed typo

commit 51312fd62274dd24fe7abe82082e1511caed7e3f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:14 2024 -0700

    some fixes in webview

commit b41be08ac2b0917c68f55eceba3a6dc9b7620caa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 13:34:06 2024 -0700

    some better UI

commit 0412df643c80a6c860d5061b18c8630283d0c4d5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 12:08:07 2024 -0700

    removed some logs

commit 5006f6dfa44ec2d744e94012c8f3c7bf4aa3b787
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 12:29:19 2024 -0500

    fix height issues in dictionary editor

commit e2417cc5dcd2f875f7f6cb8f0312b54d4f7bc0b2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 10:12:42 2024 -0500

    remove all undused code related to resource in bible translation

commit b984400380ac8d58645faa7e44419c18685c632a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:57:57 2024 -0500

    remove unused video player provider

commit 777f6c07afa48a277b9ef6102c578b86c10ad731
Merge: 4b1808c 0ed9696
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 8 12:55:10 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 0ed96966ccdf6cf1d47b046488abeb270f03af5d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:54:31 2024 -0500

    remove dict side panel

commit 11f7e997a0585bfeacb0d6a6d41ccc9cd06680e2
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 10:53:36 2024 -0500

    Added ability to add a perspective to the Reflection.

commit 5bb551e6040efc1f07c54977097ef09f7718420e
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 09:14:56 2024 -0500

    Added a reflection spinner.

commit 45f50e96734da913118f1a8fd20c299c0d4de34d
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 16:19:05 2024 -0500

    Added logging output.

commit f0c1b8399b5234217aa9b7c2b821066cf73f97ba
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:34:52 2024 -0500

    Added setting to turn on and off the reflection.

commit a2c8eed25bf66796c3bc2b977de8a1b52c8907fa
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:11:31 2024 -0500

    Fixed the problem of it embellishing with "personal" stories.

commit 1a1153f92e8dc144e0c97fbcefebd8c9ae70b750
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 09:27:23 2024 -0500

    Attempted with bullet points that didn't work.

commit cc7febbb4a6c7ee4fa0868f1bcb7078aa2856ce3
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Nov 5 16:38:14 2024 -0500

    Reflection works but greatly expands the generated result.

commit 5ceb7360eb42ab0ecde971ba4bed65b03f72c59a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:58:58 2024 -0400

    Adding missing events package.

commit 49d6d557aa3b820b1a04e99b1c2d16e2ffcd7b8a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:29:07 2024 -0400

    Adding enableGrading to missed useEffect.

commit b89ddc882ab8e1add2fd3d3cbac440195a3e84a8
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 7 15:24:47 2024 -0500

    Ignore casing in spell check

commit a57ddb5bb1155e66e95bc6a2f01f6acff1d4820f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:57:12 2024 -0500

    add pagination to dictionary

commit 8ce8022e11835e3a31e3a30985ffb8d021e9e6c5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:47:36 2024 -0500

    change dictionary ui to use database

commit 4b1808cc54c863d0b5dd85e8af1f5c2f1f89c547
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:15 2024 -0700

    Bump to 0.0.67

commit 6d8a99744016bd46f56dd1dcab956ee4c5ad587d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:14 2024 -0700

    Remove some messages

commit 94c9fe22da119c0aa79f1ecdd74648ca3dc658e3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 09:10:52 2024 -0500

    speed up spell check with sql call

commit e1deda80ffa2a40ea1415c7f77fbf1f76eceda7e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:57:55 2024 -0500

    user now selects where to export to

commit e54e7de22e425c8ad449b4d3cc9666c35cabb693
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:55:07 2024 -0500

    export web vtt file

commit c7160673c3e14dd872390161664dfce01924a3b4
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 10:53:56 2024 -0500

    multi line system prompt

commit 575e6d86c36ea69bcc490419e2025417560da2dd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:29:17 2024 -0700

    Bump to 0.0.67

commit e4157001da61eb51ab8fb39cc276e0a3d4d116e5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:28 2024 -0700

    Remove some messages

commit 596fe4aa8911057930487f0c64e4ae9f68ad2702
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:17 2024 -0700

    Clean up project manager view logic further

commit 8b7b662203d20982d6e337ae414fca4bff180d95
Merge: 08c4985 255b39b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:46 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 08c4985e5c4209ac6beaf50f4aaf2881aa39d16d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:40 2024 -0700

    Fix project overview display logic

commit 1a64bcbb361b1f614138611a8f8f0e4f26288dd0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:37 2024 -0700

    Silence logs

commit 255b39b21375e928cd8cd3d4c25970c015b209ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 00:36:20 2024 -0500

    save dictionary to sqlite db when upload is done and prompt user to save after accepting spell check

commit c8f8acc73410016ef428d0cd46c7a03bf9057900
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 22:01:16 2024 -0700

    Fix types, quiet logs, bump version

commit 5d3be097fde748645f00361ebf9cdf6f0ec7d8d0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 23:10:05 2024 -0500

    fix webpack issue that crashed server

commit a03c777ea286c13addb22770d56b1d7e1fa908a9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:54 2024 -0700

    Bump version

commit 1a1904c70dbac87453bb2ad06962aaebada370b0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:12 2024 -0700

    Better null checking

commit 856987e5acec36a6d66e5cc6d94e462df55caee0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 13:37:11 2024 -0700

    Clean up ChatView buttons

commit 485ed93666e2d746d83ca493ac2c21358385b51c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:44 2024 -0700

    Don’t use ‘video’ corpus tag by default

commit b71ab2a72b88faded9c06892e59768b42b4bfb2e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:08 2024 -0700

    Add force reindex command to status bar

commit 0c6fa0de7d1863436564603cee50be57d73edf9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 11:55:02 2024 -0500

    get alerts all at once and update them when appropriate

commit b85649517bbf9cfd88d47234a9d673bd4c3b0047
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 09:00:57 2024 -0700

    Fix importing sql.js and bump to .63

commit e22fbf5f534bdc55565f4d9a599e358ef7e13d8a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:38 2024 -0600

    Ensure chat threads file exists

commit 2a69ccc14586bf42f84862a91c8b877c24277b82
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:19 2024 -0600

    Handle project manager empty workspace state better

commit 5e14add1f2b1b78cda8531d81f766a7572564f5b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:22:04 2024 -0600

    Bump to 0.0.62

commit 1e60f8e1813beac11e0814ff9e68020d54f7cf6e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:21:36 2024 -0600

    Include sqldb in build

commit cd06948270a0b9d2fcd9b3af06835e3d407435cc
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:54:57 2024 -0600

    Resolve some type issues and bump version

commit 1fa18bbd1375446e8f12cb836e6973c43e3027b7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:48:46 2024 -0600

    Improve initial data population in project manager

commit 87d835fb7c8eaba263f1b76bbc5a5d49293a93da
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 15:46:37 2024 -0600

    Include sql.js wasm in build

commit f4e7e30613b7c2e8b22a10e6f80e486c61f9c52d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 14:53:38 2024 -0600

    Support project-level commands

commit 1a4259e86a0ff2f292e55a698198214c3922dbfb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:41:04 2024 -0600

    Add fixme for preview confirm/cancel step

commit c18cb5ed09d75dffa8980232eebd6b41d8b37565
Merge: 8caa5dc 49f4d80
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:37:14 2024 -0600

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 8caa5dc43ee3e6aefb6ac647aeef649fc7afb82c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 10:37:08 2024 -0600

    Handle multiple previews properly

commit 2f97bba609d841e0b083f2c4112e56fc035a1492
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 07:30:23 2024 -0600

    Bump version

commit 1e4c0d1c1af3ff75c665b536bbd73b443bcab1d3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 07:30:18 2024 -0600

    Restore previews

commit 49f4d80008d4f17646ffd2140546f4af9ddea7b0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 17:18:08 2024 -0500

    UI for suggested prompts

commit 7f2bb61e7a038ab630b1af51702c8d38c0a303e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 17:17:15 2024 -0500

    new styles

commit b34e785cc0acfcd0e49d1c257631befa67b75473
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Oct 31 15:19:23 2024 -0500

    fixed styling where buttons are invisible durring lightmode

commit aca2f64a7b2109348801548a3f7ec47d4c4c81f5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Oct 31 15:31:20 2024 -0400

    use db for spell check

commit fd7aca7fdf600a1e4f771a4ff6b7ed54db82607b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Oct 31 12:…
ryderwishart added a commit to genesis-ai-dev/codex-editor that referenced this issue Jan 15, 2025
commit 5733e84415a4de242d62c8e0af5d599180264c00
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 17:15:20 2025 -0700

    Bump to 0.1.5

commit d85eeace0e7399eccfe8ea7c03ae3f98649fc6db
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 17:14:50 2025 -0700

    Enhance Copilot settings webview with instruction generation feature

    - Added functionality to generate linguistic instructions for translation between source and target languages.
    - Integrated LLM API call to fetch generated instructions based on user-defined parameters.
    - Updated webview content to include buttons for generating instructions in both workspace and user settings.
    - Improved handling of project language configurations for better context in instruction generation.

commit 03bd98619347616be0bec985845638245748a316
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 14:36:14 2025 -0700

    Refactor Copilot settings webview for improved user experience

    - Updated the handling of workspace and user system messages to ensure type safety.
    - Removed unnecessary console log statements for cleaner code.
    - Enhanced the webview content by adding a header for instructions and clarifying the descriptions for workspace and user settings.
    - Improved tab switching functionality for better user interaction.

commit 2d5d9665e9d71c0f9cef1c7ceeab1507a0aa90c3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 14:07:11 2025 -0700

    Add system message editor for Copilot settings

    - Introduced a new webview panel for editing system messages in the Copilot settings.
    - Implemented functionality to save workspace and user-specific system messages.
    - Enhanced user interface with tabbed navigation for workspace and user settings.
    - Integrated the new editor into the project manager commands for easy access.

commit 68f2521631a4b572741b815b8f1de4804e7f5413
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 17:59:32 2025 -0700

    Add a planning doc

commit a676914b0e9a2d24047e83a8bcebe1d5a39775e9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 17:59:26 2025 -0700

    Fix test ts errors

commit 93ad687776359323c7c001c3eff16210546bf66b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:54:05 2025 -0700

    Use built in performance hooks

commit 0a15874c2f4ef7773ee0a112c8014a45b20de9cb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:36:05 2025 -0700

    Bump to 0.1.4

commit 46bc2a086df31d372fb731c7ea406ce32abea4e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:35:40 2025 -0700

    Refactor Chatbot initialization and enhance SmartEdits file handling

    - Updated Chatbot class to initialize OpenAI instance in a separate method, retrieving LLM endpoint and auth token from the auth API if available.
    - Added ensureFileExists method in SmartEdits class to check for the existence of required files and create them if they do not exist.
    - Improved file reading logic to handle empty file cases gracefully across multiple methods in SmartEdits class.

commit 0143daa414af73a15be8ad6da3a2242cf93e1e55
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 20 13:23:50 2024 -0500

    fix webvtt import so spaces in file name are ignored and remove some dead code

commit 3736d2cbf2197f170eb7f26cde926c0fddeb5ffe
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 19 17:51:34 2024 -0500

    properly step to init step if a workspace is open but not initilized

commit c868e0f306189db41dc486843c8cbce5118a8835
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 18 13:02:45 2024 -0500

    fix statup flow so it show the correct steps if the auth extension is installed

commit 268e28e54b2c37ee6840487f2f3c9268730f7073
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 17:40:39 2024 -0500

    Update TypeScript configuration and VSCode launch settings: Remove test folder from exclusion list in tsconfig.json and eliminate web extension development argument in launch.json for cleaner setup.

commit 7c81387fb4e3763298c482b9237a80c96bcb3d9f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 17:00:09 2024 -0500

    Update webpack configuration: Add process/browser polyfill, set global node option, and define NODE_ENV for improved compatibility and environment management.

commit c7e079fa08424730562a6e1f63c228e30b844796
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 19 16:46:50 2024 -0500

    correctly add user as auth on for git comits

commit dd607fc7b25f21f1038d7655eef635469d748a3c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 19 13:13:49 2024 -0700

    a start on removing extra css

commit a95893ad3f4d13784771d79c0438bc917e433f6c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 19 13:06:06 2024 -0700

    fixed copy button in parallel search

commit 6814c3f69baf39091be09e79d994dcae021d7b61
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 08:16:38 2024 -0700

    Add benchmarking code

commit f4b51c5b5ca912583e8a82cacd5fe997220ecba3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:59:10 2024 -0700

    Bump to 0.1.3

commit cc5eda1b77046aaf56f6b54e6890eadfa1c2bc58
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:56:18 2024 -0700

    Use corpus marker to group navigation items

commit 16cf6299ff6c863f065168ddd1d657080b93fc89
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:48:52 2024 -0700

    Drop old navigation; add a new one

commit b8df3850b701be03c877b35aee5d1089de855083
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 22:34:13 2024 -0700

    Minor type fix for v0.1.2

commit 73fec2732f345a7e554a77de4843cf23c52b1033
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:15:03 2024 -0700

    Bump to 0.1.2

commit 149ae03acd66cbb5c44dd4b677a1008449a08b19
Merge: a100f37 cc3ca77
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:14:14 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit a100f3721244b496920a4feb76219d654441b421
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:03:35 2024 -0700

    Update version to 0.1.2 and enhance API key description; comment out unused state store update logic in inlineCompletionsProvider.ts

commit 2d418dd4fdadc2d9f2f0a4787f330d5b925fbfc0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 16:52:18 2024 -0700

    Use custom auth-defined llm endpoint if available

commit cc3ca7790434775194d427eb8e4084a4c0b1376b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 16:43:52 2024 -0500

    Refactor llmCompletion function: Remove early return for no similar source cells and fix comment formatting for clarity.

commit a24e2662a40ca48dba22781b64ef92b9b27bf73a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 15:57:04 2024 -0500

    Ensure chat threads file check only occurs if workspace folders are present in CustomWebviewProvider constructor

commit 0b06069d3fb234b41d72bdc89acd1e4d630f815b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:44 2024 -0500

    Update version to 0.1.1 in package.json for release

commit 84a6dd188903220a4b5c7023dd45870074479dca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:18 2024 -0500

    Enhance password validation logic in LoginRegisterStep component to ensure confirmation check only occurs during registration.

commit b5eedbb49a97af2d8eb7bc54d3ddc991faa0195a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:26:59 2024 -0500

    Update version to 0.1.0 in package.json for release preparation

commit 02fcdcdcfb599d6e2daee93ea270240110d81b74
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:18:20 2024 -0500

    fix absolute path. Use generated local path instead

commit f5bce323d14af0aa2b4c3618f990e386952be6aa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:45:59 2024 -0500

    Refactor LoginRegisterStep component: Remove password validation during registration and adjust password strength color logic for improved clarity.

commit 5900b8f2e53322f664b6e0ceae5c3066755c1e76
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:30:42 2024 -0500

    Refactor LoginRegisterStep component: Introduce centerBumpValue for margin adjustments, update confirm password validation display, and change onChange to onInput for confirm password field.

commit cc3e453a65e7608ae269efb89a3ae1ce68518c27
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 12:12:27 2024 -0500

    pasword strength shown as popover

commit 331f1b7fddadd325510992e15d8440127731b9cc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 11:37:13 2024 -0500

    add show pasword button to login and register

commit 4c11e2a22ba183c9f4f580937aa6fb807fa1a0ca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 17:02:50 2024 -0500

    Refactor stageAndCommitAllAndSync function to remove workspaceFolder parameter and improve error handling; add syncProject command to project manager and UI for syncing projects.

commit 5cad490f820961405fe3a7cbe556a8ac5c1f695e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 15:07:51 2024 -0500

    fix compile errors

commit 22c498735eb6748fcdfcf1920762676fc2e11a6a
Merge: 3bdf889 64505b6
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:17 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 3bdf8899275bdc3cffaeed636867d5b8dc13b5fa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:05 2024 -0700

    Hide new chat in parallel passages for now

commit 64505b61cf95649130e1910e74e76b7b9bb255f1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 14:46:22 2024 -0500

    resurrect chat

commit ad7c6e99b47f43bc67f9994dda57adb6f8655784
Merge: eb50c13 4071c43
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:56:25 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit eb50c13eb645d217bc1f21df2fc0cf2b9731cdb7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:53:25 2024 -0700

    Add fixme

commit 1243bc80008f3150b4b88d75509b605db8b618c4
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:44:32 2024 -0700

    Enhance llmCompletion function to filter out current cell ID from similar source cells. This prevents re-predicting and generating duplicate content from previous edits.

commit 957f0eac8713adba44b9dc376e33591b8924cbec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:42:26 2024 -0700

    Remove commented-out source control provider registration from registerProviders.ts

commit 4071c43811fdd8cbce63bf227dc0aaa95db89c10
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 12:41:55 2024 -0500

    rerevert source blocking changes

commit e35d394e564bc810d394d6bffa41b37b3e4714a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 12 21:04:35 2024 -0600

    fixed merge

commit 7c0af25c008342d1993a9d3185e0c56034e02836
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 15:54:52 2024 -0500

    remove place holder name

commit 5ca1f27fb50da35a35484c5d905ba41383ec3a87
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 10:30:25 2024 -0500

    user name and email now come from auth

commit 0e3191126183eb2a9e4c3ee28c0f2412c42338c3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 11 11:55:49 2024 -0500

    Revert "Ensure source doesn't listen to matching codex updates"

    This reverts commit 182251e018b9022174b3917e75d99770c94f357b.

commit 182251e018b9022174b3917e75d99770c94f357b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 10 10:47:18 2024 -0700

    Ensure source doesn't listen to matching codex updates

commit f09441055ed8f33706368286fbcd267cde3c29b0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:13:29 2024 -0500

    properly dispose of webview in startup flow

commit 5521a408669445575fb6fb786734c1e8e09c2173
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:12:56 2024 -0500

    If a file does not exist ignore it in the commit

commit 6a1c1c599118709ac28d795ead6eb904386a8dee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 9 11:09:01 2024 -0600

    updated global message type

commit f4bd30a4c332db347e10ac388df018565a11238b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 17:13:44 2024 -0500

    Refactor startup flow and metadata handling

    - Updated the extension initialization to conditionally show project overview based on authentication status.
    - Removed redundant checks for codex notebooks in the initialization phase.
    - Enhanced the startup flow to check for authentication before sending metadata responses.
    - Adjusted state transitions in the startup flow machine to prompt user for project initialization when creating an empty project.

commit 61e97621dceccaf2fd4fb5954eeeb7515c4626dc
Merge: 4dfe25c 639aef8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:33 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4dfe25cbc7937b9248c69de573232a97feb1a555
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:26 2024 -0700

    avoid unnecessary ENOENT errors

commit 639aef8ae327052b132df8123609a76960d55f9b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:31:40 2024 -0500

    close startupflow if state reaches already working

commit 3089ba28180de3687df8ad979ea89adbb5fa22e1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:14:49 2024 -0500

    show init screen in startup flow

commit 79e20914d92e127a6d66bc59da053b02d00a5fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 23:36:29 2024 -0500

    feat: block git commiting if no remote

commit 3e1f76f89e0b4f0c3ca4ea7c7fe37172d5eb8fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 22:10:29 2024 -0500

    Use top level refrence for auth store and add password validation

commit af19c3f511bb06a6dbb5068659e547e621869f43
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 17:13:38 2024 -0600

    hide empty messages

commit 55b294b542ea7b964c39dd9f520a15e479405de4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 13:06:45 2024 -0600

    Chat can coninue after pinning verses

commit a8400180b74dd007cbe3b13d44df68702d219b6d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:23:07 2024 -0600

    better spacing

commit d8408d323435b17f86365ff1332eec997ffafbc9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:22:34 2024 -0600

    file save fix

commit e1c00822833a558b5dcf1dcbb5039c95051c5908
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:16:53 2024 -0600

    Chat can now pin on it's own

commit 8cabc60df9509872ab28fbaf363dcf7086f2e9eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:37:42 2024 -0600

    Global message with destination

commit 75400a7635e125f5de8b639f7181b47183d870b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:51:33 2024 -0600

    merge

commit ff7be46cf41c354f774835b4b22b9c9e04c69dc2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Dec 4 15:02:03 2024 -0600

    global provider

commit 65e73b467fe92c675d32c3d09be63c74d7b24905
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 22:27:47 2024 -0500

    add email to project management so we can commit

commit 0fe9ce94e88e57cc48cb19765a42d6fc654786b5
Merge: 326582b 6ef8072
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 13:27:32 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 326582bf83ba81f74048817020b4a9fd70135c75
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:58 2024 -0700

    Add mock classes and context creation for testing NotebookMetadataManager and TranslationTextImporter

    This commit introduces mock implementations of Memento, SecretStorage, and EnvironmentVariableCollection to facilitate testing of the NotebookMetadataManager and TranslationTextImporter. The changes include the creation of a `createMockContext` function to provide a consistent testing environment. Additionally, the usage of the singleton pattern for NotebookMetadataManager is reinforced in the test suites, ensuring proper initialization and state management during tests.

commit bb2d4a8bedba29eb95b64b09921e324eec2693c9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:52 2024 -0700

    Refactor NotebookMetadataManager usage across multiple files to utilize the new getNotebookMetadataManager function, replacing direct instantiation with a singleton pattern. This change enhances consistency and reduces redundancy in metadata management. Additionally, minor adjustments made to comments for clarity.

commit 6ef807269412305d38e6bea782467c87111ab70e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:59:24 2024 -0500

    fix type errors and make git commit command

commit df5630a9730347b0fedb0c4453805a31e7166529
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:05:46 2024 -0500

    renamve test file

commit 3d5406dc33beaa77accc4af98ae5d13b6dee50c9
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 08:49:54 2024 -0500

    fix message posting and add stage and commit util

commit aa0bde14d989e5c8438e0b6f1954e59442e24586
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 3 16:48:51 2024 -0500

    init git when initing project

commit 4409656a4bc2b80b60c10fda723206f070e3bfec
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 14:20:07 2024 -0500

    show publication button only if repo has remote

commit 478917e456b6e5d72805be536d0c221742d39606
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:16:36 2024 -0700

    Fix import path

commit 5bf45734c192405f39e70b567ea1bb6b325d598d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:15:58 2024 -0700

    Use singleton pattern for NotebookMetadataManager

commit da95948c7353977768fa443a819f1ea3258c02e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:07:10 2024 -0700

    Ensure uppercase format for consistency

commit 56930abb92f4430bb1b40b89dc34843eb51f14bd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:04:01 2024 -0700

    Enhance error handling in UsfmSourceImportTransaction for file reading, decoding, and parsing. Added validation for book code format and chapter content, ensuring robust processing of USFM files. Improved error messages for better debugging and user feedback.

commit 1a7812e26c296fb203b029563930106783690287
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:48:53 2024 -0700

    Improve error handling and transaction processing in SourceUploadProvider

commit 8ab3a139be7393345c699ae101b0ed795ede87b5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:36:43 2024 -0700

    Refactor SourceUploadProvider to support USFM file types

commit 6fb31b3d3242adc26d1baebbb8e53d87367434e3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:31:00 2024 -0700

    Add UsfmTranslationImportTransaction class for importing and processing USFM translation files

commit 2b2d15445bf0a0c6d99490052c5e503b87be25ec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:53 2024 -0700

    Add UsfmSourceImportTransaction class for USFM file import and processing

commit e109dfc727cf1ab9f1ae180e24c10956afbeca74
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:31 2024 -0700

    Enhance LLM completion by filtering similar source cells for overlap. Added tokenization to improve example selection and log dropped examples for better debugging.

commit 23adf482a52fcc6d7278a08dade445daa9c1a868
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:51:47 2024 -0500

    Reindex after importing a file

commit 22c2846a5be5787c2dd23e45c33666f88b916a47
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:45:24 2024 -0500

    Hide all projects from project overview

    This functionality is now handled in the startup flow webview

commit d985070dd9fd7b1fce52de0ca3d66ec6806e4462
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:21:20 2024 -0600

    Revert "Chat enabled autocomplete (work in progress)"

    This reverts commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b.

commit 029c4c1af7165946971e8850d14879fb66254f99
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:48 2024 -0600

    Revert "some progress towards chatbot entry"

    This reverts commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd.

commit 0c361f1c000bab0dc07dc994242f27446ba22d8b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:45 2024 -0600

    Revert "chat tab as default"

    This reverts commit 13b62d2a54a4859a862a8b56d923850f8170e463.

commit 52f542ec2d4d0c00beca8a75d308db39f9ed03a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:38 2024 -0600

    Revert "fixed editing"

    This reverts commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9.

commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 16:04:22 2024 -0600

    fixed editing

commit 13b62d2a54a4859a862a8b56d923850f8170e463
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:46:00 2024 -0600

    chat tab as default

commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:17:08 2024 -0600

    some progress towards chatbot entry

commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 16:45:35 2024 -0600

    Chat enabled autocomplete (work in progress)

commit 1bdf4f2b7dbd100212668191c44987178937e81f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 10:40:25 2024 -0500

    move project create to a util and skip setup if project is already setup

commit a9288611a03a8e48fb1965290842cb355848409c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 29 10:32:30 2024 -0500

    fix types and styling

commit f8fcfedfc169543559adbc727b522673047b4a5b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:16:16 2024 -0500

    load local files if there is no auth

commit 95b33d747491b3e5543f0594934af2117632b884
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:07:07 2024 -0500

    users can now open a existing project from the start up flow

commit 308d669aaffa60c2b8980e3f9d967d8d88a9d39d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 11:47:16 2024 -0500

    finish clone process in startup flow

commit 0c95b8e8ac2fd6da3b002b2f6d26b1984231ffaa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 27 00:00:15 2024 -0500

    fix content security policy in startup flow provider

commit 82bba59aa29d3c2a0b46546c95cc40adbc6ea963
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 22:46:43 2024 -0500

    fetch list of projects in startup flow

commit 33fd4b0e7be17780bd13d4b13dcdba5ccf11f139
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 14:15:48 2024 -0500

    render project list

commit 6336ba6dd6cedac70f3a378cf7a0e18aafdf8703
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:46:16 2024 -0500

    list projects in project view

commit 1f81adb23b9d5cf46713a245b7fac7fb99e504f7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:43:59 2024 -0600

    much better apply button

commit 4ffaaea21bf6692d3ff4da55856b2ce9a45b352b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:42:09 2024 -0600

    fixed bug with old prompting

commit afc6b00175ecd12c7d539392d5c73fe01c2a07eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:07:36 2024 -0600

    chat menu opens by defualt

commit 3683b067ec14759b98426959892caaa834fa42ea
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:04:12 2024 -0600

    fixed blank message bug

commit 107b401502dc644988312226db179fe4f220b8a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:51:58 2024 -0600

    fixed some streaming problems

commit b2563854f5902bc9c0da7677edadf19bedd3b994
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:34:23 2024 -0600

    less radius

commit 8b5fb8c871f276c0f332250eb591e112be15e573
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:30:35 2024 -0600

    fixed styl

commit 722e43ca30e5b1b66119667b959e6676763020bf
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:25:19 2024 -0600

    feedback on suggested translations

commit 902a94680bd4a1e20d7bb69b4735af891b2d4498
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:01:44 2024 -0500

    fix preflight command names

commit ee77a7c61635dd2f66fe53321663bf26d6c8e6ad
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 12:20:45 2024 -0500

    skip workspace setup if one is open

commit d4a08c2448ace427b56f8e5aada5fd25454f1c4d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 26 08:45:53 2024 -0700

    Change default llm model; increment version

commit 5636e480085d498e4a8104a3f45cd3a1f53f5619
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:38:10 2024 -0600

    removed chat webview

commit 4f8b697893ae0641e12bd3b183e1d6d67d18ab50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:26:15 2024 -0600

    removed prompting

commit c71025165a082208f08c47044d8c515fbd8bc399
Merge: 40db83d 000c084
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:39 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 40db83d820b46563cd359d159ee37e1e058b181e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:26 2024 -0700

    Clean up state sharing across activation, provider, webview

commit 78745f0567d5f14f4236f8093aa35d08fba7cbf2
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:04:39 2024 -0700

    Overhaul of startup webview

commit 000c0840408730cd61e8eafa223cb28cda5168a2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 21:43:03 2024 -0600

    delete old chats

commit 5ebe8a519df84c22ca849a1cccbffa322d839cb5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:49:06 2024 -0600

    better alignment

commit 50a3c1c59294c626ca722ff39bcb864e7be57e87
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:45:45 2024 -0600

    slightly improved session management

commit 940b16dd180b92751c2fca7184c158016456ae7f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:21:08 2024 -0600

    loading and saving chat history

commit a75b59189c9b8476ca03ee5d45fdbbcc3645845f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:27:06 2024 -0600

    merge

commit aa692ce62642e451ae28257602e485fd717d5d8f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 16:56:06 2024 -0600

    removed ChatView

commit 6f0bafc636c33bd1c97ca8afbfbdf847e8739faa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:44:54 2024 -0700

    Align preflight with startup state machine

commit 411ae7cda7867d0dcd536cdae10a449002c56f1d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:40:54 2024 -0700

    open startup flow using state machine logic

commit 084234398485b63791a66c6a89e6ba80a8120cdf
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:54:57 2024 -0700

    Handle test suite compile errors

commit 09463e61c522d49a9fa7170fdf680f9d99621b38
Merge: 4b22e1c 1d9d551
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:21 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4b22e1c4d09027034f89ab8dfb4e610ac5696adb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:18 2024 -0700

    fix build webviews command

commit 1d9d551db3424d0a80cf5ed93de414dc8aff0474
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 15:53:31 2024 -0500

    add startup flow

commit c0c15f1d87d9646fcfe8e4ded84b2a4f8396de25
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:22:17 2024 -0500

    revert type changes

commit d6a1b804625bc16398bad23e1c28f0609bdfb521
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:19:21 2024 -0500

    revert changes to source uploader webview

commit dfb56143ed169876fa9de312a66b1849005a5aa0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:46 2024 -0500

    move logic to startup flow provider

commit 9749771a23422074b6447ec62183ccb353820450
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:28 2024 -0500

    revert SourceUploadProvider.ts

commit 2a7b9da01dd60a1489d09c1c81bd1dfa3b51ea30
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:32 2024 -0500

    add startup flow to build

commit bcfd8822b01b9f20a0b9cfa7313241e5ab8fbbdd
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:13 2024 -0500

    register startup flow

commit 27f48552ca561e026a7b32460001dfcd1c93bd5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:00 2024 -0500

    add start startup flow

commit 791cab17674f8a9adaeb4594e5dece9129bfd80b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 13:39:01 2024 -0500

    add password confirmation and fix ui

commit 1f418fdc79d044180e0cba92884292711ce0deae
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:38:03 2024 -0500

    setup signup

commit aca437967f8201c2bb320fcb1bf69a667b4eef40
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:01:58 2024 -0500

    fixes to show auth step

commit 2be23ac631d86d965214e5a9d1c0aff3683b7534
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 15:55:49 2024 -0500

    work on showing auth in setup flow

commit d615679856af1cbbc760e28741b1ea3e2b74736c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 12:10:31 2024 -0500

    add check and change command names

commit 036f5f4f7cc9d733cbbdaa9152afea94e5c1ce9c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 11:20:40 2024 -0500

    start auth flow in upload provider

commit 3e8b8bb943fe583ad3d74b9c8deaa5391691e0c1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:27:35 2024 -0600

    better video ui

commit 15695ec8253af9e5260033906e4f40ef7ff8b16d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:16:22 2024 -0600

    working video player

commit d3567a051800ad9d0a8b530d325d58085738f6c9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:15:50 2024 -0600

    bible project urls

commit 10efef06a54590908a2e64c41e9ec55e2c539e82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 18:33:27 2024 -0600

    removed old tab

commit e87922df4ca39da7dd1b675dd7d4408c6bb573e4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 16:25:15 2024 -0500

    Added CodexCellDocument webview only update event _onDidChangeForWebview for proper revert functionality.

commit 99b9d69babcde4ba0c6f17014c31c2ae6e007e2f
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 15:18:28 2024 -0500

    Added watch for file change to reload.

commit 6d6b236bac0bbc5a30e3bd20dc8cffeba0afc9f1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 15:26:31 2024 -0600

    edited user prompt

commit b887039bb2de370bda8b1e303e401cb0a39c8285
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 14:10:58 2024 -0600

    uses language config

commit 57f4ae1f33333043996f0c054a8447c963ed8dc8
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 13:57:39 2024 -0600

    better prompts

commit a5439914f6164a43c14ba47ceefb36510891acca
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 22 11:49:14 2024 -0700

    Disable workspace trust call for theia trust compatibility

    Cf. https://github.com/eclipse-theia/theia/issues/10472

commit b90b464ff386e4c6723a98571d58cc959d7a8ea4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 10:27:30 2024 -0500

    Resolved compile errors in the test config target.

commit ca78a7bade0fe1571b48fb046fe6555a24a92a50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 01:55:14 2024 -0600

    better prompts, ui, searching, and saving (but that part is still a bit buggy

commit 09eec8a33bb6bcba66a60da7a61011bdb3833210
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:47:13 2024 -0600

    Chat now predicts the next prompts

commit 9e7a747690250bc2da560bccdcd737e21ee1db06
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:34:04 2024 -0600

    Removed Teach tab, more combined into the chat tab

commit 0fc51a04d068330efb570c9dd70b410075c3606a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 22:04:59 2024 -0600

    apply

commit 3cdd5adfc3ea9be486335bb3469a757a90b96832
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:45:29 2024 -0600

    more than one TranslationResponse cell, and more extensive regex

commit 037bad6fbe76d6198251048b67a76174978c6bf0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:20:43 2024 -0600

    toward a unified chat

commit 84f65c09b5dcf4dd04dcf9d7eb000e8c291a459f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 15:17:06 2024 -0600

    hide navigate button

commit a02439aedaeec9f717bad6763f85ef858df3bbde
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 15:11:24 2024 -0700

    Some copy updates

commit 57388274f8a471b217621be2e7f53f0b59962a7a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:45:05 2024 -0700

    Ensure navigation treeview is not mutating data

commit 3e152ab251d5b4f617befdc50b6c6741fa827ada
Merge: d2c0551 a6892ab
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:16 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit d2c0551bb41185ca0a7c170b5eb625ce13fc3184
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:12 2024 -0700

    Move command from top level

commit 1c7f9eaf0e7f842999e5b0e2e107d54c2a53f3df
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:04 2024 -0700

    Handle fatal error for missing file

commit a6892abecfce5852a9644c70a30eded5c6ba2d3d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 14:02:03 2024 -0600

    some progress towards a working apply button

commit 6449addebc74863b2508a407f99a6ed8b136642e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:04:28 2024 -0600

    less word breaking

commit 1c0e2ea351e8274b435e067e4f612264a71fd13a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:01:21 2024 -0600

    backtranslation word wrap

commit 4a54baed95d7ac8e528d22c65ad6cb4cdc9a01b6
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:49:12 2024 -0600

    smart edits now get memory context

commit f332f802baf70b88f7ba10fbbf8d118a25b5d065
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:17:51 2024 -0600

    fixed prompt

commit 54b0984d41f1029f84e79815782fe20c104b5984
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:13:25 2024 -0600

    rename to be more clear

commit 4dc337ee20db9a7ae49e8f0ff2da6b5c91ebbbee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:14:53 2024 -0600

    search settings and pin all

commit ddab14a8b4d919d51f958ce18e327c313876db50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:04:59 2024 -0600

    more padding for checkbox

commit ec7987dc3914e61cbe3e7c850703081af9175a36
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:02:51 2024 -0600

    better index for searching

commit 5462ad730e7167ab7e6dd5b49b53aace519c7b92
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:08:24 2024 -0600

    clearer UI for context

commit aa34cbe48e4857c1d71cfce881ae9281654520d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:07:38 2024 -0600

    updated assistant about the new tab

commit d43794975fd0e4da39f8b7a4805e1eff2caf3018
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:01:41 2024 -0600

    some bug fixes

commit 3a7fbe424bd1b3a75085dc17c077e4a2c3deb303
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 21:32:50 2024 -0600

    much better memory management

commit f414808c4b837ba9353b2b27699202f6c6f14b57
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 20:23:51 2024 -0600

    unified styles for both tabs, better chat etc...

commit 49b5f88d445ee79b3b41e4cfb78200a1957bba75
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 18:34:50 2024 -0500

    remove builds with nothing to build

commit cf5da90733be6f738f48bf9b9aa7fbbf22f88e64
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:40:16 2024 -0600

    navigate to next cell

commit 91e25eeea2e0a833c4d71a5e051874463fb684a9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:45 2024 -0600

    somewhat more stable

commit 69acedff6572d624228fff761282793f44ceff7d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:05 2024 -0600

    new command for finding the next untranslated source text

commit 92bfaf3d1ac41033b5066cbbada9529de2014ba4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 15:01:25 2024 -0600

    skeleton loader and clearer UI

commit 3ab2112b2756a423e80d7a9dd61ddc72dc8cb94a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:56:23 2024 -0600

    UI a bit better

commit 8529a05814fe234db4a171ff4d1ff7433f2869ab
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:47:18 2024 -0600

    working with untranslated verses

commit e0accd726d7c5cd21d0875c9c26c4e4f7bae7180
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:50:02 2024 -0600

    pickable target passage

commit 5c3ee120d25cbfb703fb1dbb8d7113c95524df1c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:25:06 2024 -0600

    better UI for silver tab

commit b8bf1ee040aa66871840865eab91bc87563c5fb5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:43:43 2024 -0500

    remove build commands that don’t have folders any more

commit 0a8589ceadc07212d78f64c06fed31c5b52c2f5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:14:49 2024 -0500

    remove unused code

commit cba5ce42dc900c3b8b664daff3ab6c33a3bfdd04
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 10:44:21 2024 -0500

    rename vars for calrity and return indecis to extesion for use

commit 6020e97fed9d61c19f7ab2d4d559d2d7b42fb9ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 17:05:04 2024 -0500

    index tsvs

commit ec3d1c8cf417e2701d1a7a0683a202c506c90472
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 16:17:36 2024 -0500

    init add logic for indexing tsvs

commit adc76961d82f085ff9727eb8db03135a523b0715
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:17:21 2024 -0600

    new tab and css file for chat input

commit f1f83f911262f0ecc8c7ddf2f76dd6fe2bf9132b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:16:43 2024 -0600

    start on silver path

commit 50da7998b13d1b8d07a1f0544fe9b0fdbf0a70f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 16:26:49 2024 -0600

    better organization for codexCellProvider

commit 0b5943eb8a1784edd799a11422b11f8d5746da9b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 15:55:41 2024 -0600

    better memory management

commit 982c26d0122ed3a0bba88bc11344334dac041856
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:47:35 2024 -0600

    silver path start

commit e6f7538c95d60113c05c2b3bb18c93151641e207
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:20:07 2024 -0600

    improved system prompt

commit 80fee48c36827af4c77e92db6360df6dbd73d8d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 13:04:53 2024 -0600

    better look for quoted text

commit 24f86b857236061eeef7679e5dd6f75b728db4cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:52:52 2024 -0600

    fixed json bug

commit 306ffb68a072e7c1723bcd1504fa09780e5c70a5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:42:06 2024 -0600

    better prompts

commit c9f8a861b2152075961c7cf716de0b5d98d43bf4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 23:27:32 2024 -0600

    better backtranslations

commit 7f7d07d8d2d2f659928a9dfd9dfc0312f7946eaa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 20:29:16 2024 -0600

    better ui for backtranslation

commit 55979af809e57b82745c6eff4ea4a1ec3b0739e0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 19:12:54 2024 -0600

    working backtranslation

commit 24cfc273edffef93efaf198651b4f10e77aae9a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 17:14:11 2024 -0600

    new command

commit 07101d5fb50d500f2a6034c258105248f4306ae5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 16:27:48 2024 -0600

    backtranslation

commit f6401b245f3b0c2a8820624e1a6c96df3965fc50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 15:15:39 2024 -0600

    token saving context

commit 5e116e9453edb8770524886235e80f0f921aa773
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:33:27 2024 -0700

    better cellID display in chat

commit c9ec863cec12a683d35b60601cd719f376cc4a42
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:04:44 2024 -0700

    better system prompt

commit ee7588f5e932ba3aea70789e5c17978a844037b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:57:09 2024 -0700

    working reload button

commit b5fd44734b5c2a2eb7eb443261728de4043373c5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:30:42 2024 -0700

    fixed bug where dictionary didn't update until a refresh of the app

commit 95071c292f8a45c6b0e1cbaed4c047e427c13d53
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 11:54:58 2024 -0700

    some improvements to tabs

commit 05ded57fe0ab6042f1ab56b34023b2c78beb5694
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:14:16 2024 -0700

    small style change

commit 5d56a69b2a7aeab4c61f047b14d1aa400a0a3d09
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:07:08 2024 -0700

    better organization of parallel view components

commit fd2980a8148b338f02a08f452bffc6b8ac4b8fdc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:28:28 2024 -0700

    better styling

commit 1b8d2551876d3baaefc6a75e1259135d3c5bfc0f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:22:17 2024 -0700

    codex help

commit cb4de766b77155a6c993f98ccebc43632be4eddd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 15:48:50 2024 -0700

    universal pinned prompts

commit e902bad3323b50e55e23c8da920ba3cc9c4df52d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 14:22:25 2024 -0700

    save generated prompts

commit 74aac37fc2d7f436eff14f24d93f436811dc9318
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 15:16:37 2024 -0500

    restore needed css file and reduce button height

commit a502d88bbe3000507112c8b2a408f1c1492690d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 13:05:07 2024 -0700

    better organization

commit fc11fd8774a94c37006e4c66119aee44219b7fb5
Merge: 1f470ad 0c9e677
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:18 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 1f470ad012d02f48b2bfdeb253bc377106cde5cd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:01 2024 -0700

    A bit more comments style cleanup

commit 0c9e6775a4ba5e3dea4136992223420289cc4488
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 14:40:57 2024 -0500

    allow user to change video player height

commit ee44a7248ab3753e300f80cca1697ceb5f2b3b4d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 12:08:34 2024 -0700

    components for prompts

commit 6f09e260fc48120116193e34cbe001a55b4255b4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 11:53:55 2024 -0700

    New component file

commit 719408684c760d8cacf947bf14ffb7571dcfe309
Merge: dc17e7a c75b57d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 11:47:59 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit dc17e7acb4830e0206a27494a0110bf605a8440a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 23:35:57 2024 -0500

    WIP: Add expandable comment threads

commit a09af37a12c018218327c7b9771075ec44e57ee8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:29:28 2024 -0500

    Tighten up some styles

commit ed39dbbf1adaff4d3c7af1628ec6af37a5f6d622
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:22:16 2024 -0500

    Add icons to comment tabs

commit ea0cc154f48d808a8e309f050e3e03a5a7113360
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:05:56 2024 -0500

    Add tabs to comments view

commit 12303ddbffee26a2e55cf0e4e0ff46bc826e4817
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 21:51:30 2024 -0500

    Update comments view styles

commit c75b57df8eb77feb1d4aa83666a4b7c61ebe6465
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 21:45:06 2024 -0500

    fix unsaved changes prompts

commit f0685d10004a53294361eafe82b3623fb9eaea9e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 19:35:33 2024 -0700

    pin verses from editor to parallel view

commit 7c53dc19b186a319eb61e73f4178b0d3b2d14c41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:59:16 2024 -0700

    force activity bar open

commit adbb6ee1eae3a6432b0ed02651d3126a29196bd4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:03:14 2024 -0700

    better source text

commit 025c0366be1eff44835c54ed1ca07fd9c39a85cc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 17:18:17 2024 -0700

    show source text in editor

commit 4b745f827c5bad1ebd8e2a36f6047a47c0765eb9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:57:00 2024 -0700

    don't show needless revisions

commit d0b3c7e270ca839b5b3fd919e450e86f873f1969
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:39:34 2024 -0700

    return void

commit 4ee7f30f58bd44a26fb153aa7125760ad5cffd5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:35:54 2024 -0700

    third person was weird

commit 1bbb4a72fc2aa6f12a8f8bd07d03336f0424ba0d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:23:33 2024 -0700

    better UI, and prompts

commit bf60e4b572ca667e6d795689fbf7b4d5a77aff33
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 15:43:21 2024 -0700

    much better chat in parallel view

commit 9647f6c16c0649d21aff00c47e292d4d44fb291b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:59:36 2024 -0700

    better buffering (aka no buffering)

commit f95c348fc0240548610fb3f1643df0ce9e30fb19
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:50:37 2024 -0700

    Way more consistent smart edits that don't magically vanish

commit bd157a18e8608673a0ab1870bff9a39ae3d157cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:37:22 2024 -0700

    removed buggy cellChanged toggle

commit f83aa5633c2a604e3f6229751c265e4ad0d9b469
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:06:56 2024 -0700

    less padding

commit 72e758384d70b79561c1ff46f370e8c118cef8da
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 16:03:12 2024 -0500

    webvtt filter out cells with no timestamps

commit 35dd7ad581b10639fecbd1919a465fead84a4153
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:52:59 2024 -0700

    save button

commit 95150e9589a0fb61b117eade6a26852f4a5bc0a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:28:27 2024 -0700

    Revert "fixed(ish) save button"

    This reverts commit 2dc417830df86959d77057ef9740d93dd68f9216.

commit a9169253cbc0efbdf2e0278db839e27dd6c7d933
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:27:09 2024 -0700

    Revert "Revert "allow user to add paratext cells above or below""

    This reverts commit c2f96bc60aad976c22d7ef2679f615c35916ad30.

commit c2f96bc60aad976c22d7ef2679f615c35916ad30
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:21:42 2024 -0700

    Revert "allow user to add paratext cells above or below"

    This reverts commit 459beea4c93788af0ecd5f361258630a7764455f.

commit 2dc417830df86959d77057ef9740d93dd68f9216
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:10:27 2024 -0700

    fixed(ish) save button

commit 459beea4c93788af0ecd5f361258630a7764455f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 14:42:17 2024 -0500

    allow user to add paratext cells above or below

commit 0d8fdec3b385581ce124cf00a665d03994d4cc5e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 12:03:28 2024 -0700

    hamburger menu

commit 654918290c8965b4de34a4258a913c8b56105868
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 11:39:27 2024 -0500

    fetch more spell check responces for better spell check results

commit ac17de15b031e9e4857bc704b5c1bc8593436e73
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 19:17:26 2024 -0700

    more search results

commit 9d3bf671a95754b5689fa022eae6f71b6754fa15
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 18:33:14 2024 -0700

    fixed autocomplete and dictionary buttons

commit 7c9c6483afdde181762d3c70069c1ef770cca22a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 18:29:15 2024 -0500

    speed up spell checking by slowing it down

commit c0eca8af77c73d7251a38e69c685fa9f5b272c89
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:22:27 2024 -0700

    new UI for suggested prompts

commit ea9313eab138a8ac3df217f51f0b4e2c7aa6eebd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:58 2024 -0700

    removed old style

commit 48fc1960fda56c08a007a0fd5ff1cde811d32c82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:44 2024 -0700

    fixed the way smartEdits reads paths (i hope)

commit 04377ec8c99e4a51f1684cabb05e890697528e59
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 15:59:00 2024 -0700

    much better toolbar text slider

commit d15e38b23769e9d8feaecfcfad2b69ab41f4059a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:31:15 2024 -0700

    fixed width of textarea

commit 09f4dc87316078ecb8f10a1c38a755133cdd1dd7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:18:35 2024 -0700

    removes html using the util

commit c0cf03d70a03b7a70fc9a6410af5a87b15d5a302
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:09:10 2024 -0700

    fixed bug where words are removed

commit e438d5636d85aadf1d7ddd7d785ab7e252b9ec76
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:01:18 2024 -0700

    some better more compact styles

commit 524954358cab2f9a0b101885a9520ee832944a5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:42:51 2024 -0700

    removed debounce

commit a49134842e07c5490c3d9278415d627e671d5971
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:39:50 2024 -0700

    fixed cell wrapping problems

commit 48426bae8ee9ebfa1bf98721061b0d2d0ddeeae0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:54:38 2024 -0700

    hide alert bubbles in inline

commit cf48eea9754c670886415e05a395e6d939e7b1e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:33:41 2024 -0700

    filter html before saving

commit 7eb2f79f1c5b7b55da4fe26da2b3ca5eb0596976
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:35:22 2024 -0500

    turn off debug logs

commit 6d76ccbcad2ed06cb76b76de209d80c6e0c928d7
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 13:33:58 2024 -0500

    remove unused logs

commit 0dc340318067fc33487686d8897852c32a07237c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:56:45 2024 -0500

    fix logic blocking spellcheck

commit 6bf27ffff9e047ee264e85c4d6c556b6d03aa80f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 11:55:21 2024 -0500

    fix error caused by missing import

commit ef8f47e2da45dc54d0c72f243c004bf4f6a64f62
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:40:51 2024 -0500

    remove log

commit 001a608cdb7970009a785ee813c0a85b3f61b739
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 09:37:16 2024 -0500

    save dictionary query state

commit 9483e0b9bdbe30676d95331b2a9be600f6ce8e41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 23:22:00 2024 -0700

    slightly more condensed UI

commit 37dc81f43b77bf70fb20e791dc3a47b8bf4eda5c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 22:40:57 2024 -0700

    added back removed listener in quill

commit 69489bdd3b948121e77487479f55d65bfedd8f9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 23:04:56 2024 -0500

    allow user to edit dict entries

commit 7935b5a7a304e5ecce46f61d443b97c7878ac4a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 15:27:13 2024 -0700

    more concise editor

commit af2465658e6d017a39ea591a5dc3ebdca76ec9a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:27:23 2024 -0700

    pins instead of locks, better scrolling

commit 20faf1e5d493fc1a298493202250520eb3918e44
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 14:26:23 2024 -0700

    fixed bug in autocomplet

commit 26d862dd120666771ca6ae168f8264370c27cb2e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 12 12:17:30 2024 -0700

    streamed responses

commit 9828768f3403281f104d6992cfa13f74cc208dbc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 10:01:37 2024 -0500

    export user entries to project dictionary when updating and adding new

commit a9e65d1a2c6a6ed8b803838d112eaa97fa31390f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 12 09:17:32 2024 -0500

    fix type error

commit 9176c970f2c4e00008b1cfd2e5329cdcc50dab48
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 22:39:49 2024 -0700

    better UI for input

commit d5006b198e64b9bc1914efd04ddba6ed46c15929
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 23:35:49 2024 -0500

    fix issues with dictionary including crashing with large db

commit 51f503543ffa878f538f2d50fbd56f340d4d053b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:46:43 2024 -0700

    potentially interesting parallel passages chat

commit 819b000c55b24bdc7d2470ab79cad2c5c10920b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:20 2024 -0700

    added missing return

commit 3363666eb0111987409225fa1af6644556fca537
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 17:45:08 2024 -0700

    added react markdown

commit 2e82a47b193fac3335d6990a5f35764112c424f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:25:12 2024 -0700

    improved UI for parallel passages

commit af7b94bf58ce939abc3e91b31b8175fbccdfeece
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 15:10:04 2024 -0700

    locked results in search

commit 6b1857985a454d09ee37fe677f3f4435a99746c7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:54 2024 -0700

    fixed typo

commit 51312fd62274dd24fe7abe82082e1511caed7e3f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 14:58:14 2024 -0700

    some fixes in webview

commit b41be08ac2b0917c68f55eceba3a6dc9b7620caa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 13:34:06 2024 -0700

    some better UI

commit 0412df643c80a6c860d5061b18c8630283d0c4d5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 11 12:08:07 2024 -0700

    removed some logs

commit 5006f6dfa44ec2d744e94012c8f3c7bf4aa3b787
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 12:29:19 2024 -0500

    fix height issues in dictionary editor

commit e2417cc5dcd2f875f7f6cb8f0312b54d4f7bc0b2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 11 10:12:42 2024 -0500

    remove all undused code related to resource in bible translation

commit b984400380ac8d58645faa7e44419c18685c632a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:57:57 2024 -0500

    remove unused video player provider

commit 777f6c07afa48a277b9ef6102c578b86c10ad731
Merge: 4b1808c 0ed9696
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 8 12:55:10 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 0ed96966ccdf6cf1d47b046488abeb270f03af5d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 8 14:54:31 2024 -0500

    remove dict side panel

commit 11f7e997a0585bfeacb0d6a6d41ccc9cd06680e2
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 10:53:36 2024 -0500

    Added ability to add a perspective to the Reflection.

commit 5bb551e6040efc1f07c54977097ef09f7718420e
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 8 09:14:56 2024 -0500

    Added a reflection spinner.

commit 45f50e96734da913118f1a8fd20c299c0d4de34d
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 16:19:05 2024 -0500

    Added logging output.

commit f0c1b8399b5234217aa9b7c2b821066cf73f97ba
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:34:52 2024 -0500

    Added setting to turn on and off the reflection.

commit a2c8eed25bf66796c3bc2b977de8a1b52c8907fa
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 15:11:31 2024 -0500

    Fixed the problem of it embellishing with "personal" stories.

commit 1a1153f92e8dc144e0c97fbcefebd8c9ae70b750
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Thu Nov 7 09:27:23 2024 -0500

    Attempted with bullet points that didn't work.

commit cc7febbb4a6c7ee4fa0868f1bcb7078aa2856ce3
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Nov 5 16:38:14 2024 -0500

    Reflection works but greatly expands the generated result.

commit 5ceb7360eb42ab0ecde971ba4bed65b03f72c59a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:58:58 2024 -0400

    Adding missing events package.

commit 49d6d557aa3b820b1a04e99b1c2d16e2ffcd7b8a
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Tue Oct 22 12:29:07 2024 -0400

    Adding enableGrading to missed useEffect.

commit b89ddc882ab8e1add2fd3d3cbac440195a3e84a8
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 7 15:24:47 2024 -0500

    Ignore casing in spell check

commit a57ddb5bb1155e66e95bc6a2f01f6acff1d4820f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:57:12 2024 -0500

    add pagination to dictionary

commit 8ce8022e11835e3a31e3a30985ffb8d021e9e6c5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 13:47:36 2024 -0500

    change dictionary ui to use database

commit 4b1808cc54c863d0b5dd85e8af1f5c2f1f89c547
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:15 2024 -0700

    Bump to 0.0.67

commit 6d8a99744016bd46f56dd1dcab956ee4c5ad587d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Nov 6 07:41:14 2024 -0700

    Remove some messages

commit 94c9fe22da119c0aa79f1ecdd74648ca3dc658e3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 6 09:10:52 2024 -0500

    speed up spell check with sql call

commit e1deda80ffa2a40ea1415c7f77fbf1f76eceda7e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:57:55 2024 -0500

    user now selects where to export to

commit e54e7de22e425c8ad449b4d3cc9666c35cabb693
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 14:55:07 2024 -0500

    export web vtt file

commit c7160673c3e14dd872390161664dfce01924a3b4
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 10:53:56 2024 -0500

    multi line system prompt

commit 575e6d86c36ea69bcc490419e2025417560da2dd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:29:17 2024 -0700

    Bump to 0.0.67

commit e4157001da61eb51ab8fb39cc276e0a3d4d116e5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:28 2024 -0700

    Remove some messages

commit 596fe4aa8911057930487f0c64e4ae9f68ad2702
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 5 00:28:17 2024 -0700

    Clean up project manager view logic further

commit 8b7b662203d20982d6e337ae414fca4bff180d95
Merge: 08c4985 255b39b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:46 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 08c4985e5c4209ac6beaf50f4aaf2881aa39d16d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:40 2024 -0700

    Fix project overview display logic

commit 1a64bcbb361b1f614138611a8f8f0e4f26288dd0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 23:07:37 2024 -0700

    Silence logs

commit 255b39b21375e928cd8cd3d4c25970c015b209ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 5 00:36:20 2024 -0500

    save dictionary to sqlite db when upload is done and prompt user to save after accepting spell check

commit c8f8acc73410016ef428d0cd46c7a03bf9057900
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 22:01:16 2024 -0700

    Fix types, quiet logs, bump version

commit 5d3be097fde748645f00361ebf9cdf6f0ec7d8d0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 23:10:05 2024 -0500

    fix webpack issue that crashed server

commit a03c777ea286c13addb22770d56b1d7e1fa908a9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:54 2024 -0700

    Bump version

commit 1a1904c70dbac87453bb2ad06962aaebada370b0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 16:46:12 2024 -0700

    Better null checking

commit 856987e5acec36a6d66e5cc6d94e462df55caee0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 13:37:11 2024 -0700

    Clean up ChatView buttons

commit 485ed93666e2d746d83ca493ac2c21358385b51c
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:44 2024 -0700

    Don’t use ‘video’ corpus tag by default

commit b71ab2a72b88faded9c06892e59768b42b4bfb2e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 12:29:08 2024 -0700

    Add force reindex command to status bar

commit 0c6fa0de7d1863436564603cee50be57d73edf9a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 4 11:55:02 2024 -0500

    get alerts all at once and update them when appropriate

commit b85649517bbf9cfd88d47234a9d673bd4c3b0047
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 4 09:00:57 2024 -0700

    Fix importing sql.js and bump to .63

commit e22fbf5f534bdc55565f4d9a599e358ef7e13d8a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:38 2024 -0600

    Ensure chat threads file exists

commit 2a69ccc14586bf42f84862a91c8b877c24277b82
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Nov 3 01:33:19 2024 -0600

    Handle project manager empty workspace state better

commit 5e14add1f2b1b78cda8531d81f766a7572564f5b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:22:04 2024 -0600

    Bump to 0.0.62

commit 1e60f8e1813beac11e0814ff9e68020d54f7cf6e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 20:21:36 2024 -0600

    Include sqldb in build

commit cd06948270a0b9d2fcd9b3af06835e3d407435cc
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:54:57 2024 -0600

    Resolve some type issues and bump version

commit 1fa18bbd1375446e8f12cb836e6973c43e3027b7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sat Nov 2 19:48:46 2024 -0600

    Improve initial data population in project manager

commit 87d835fb7c8eaba263f1b76bbc5a5d49293a93da
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 1 15:46:37 2024 -0600

   …
ryderwishart added a commit to genesis-ai-dev/codex-editor that referenced this issue Jan 16, 2025
commit d16d35031e1175462c49d3430fde837779e3e456
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 19:47:58 2025 -0700

    Bump to 0.1.10

commit 41554dae4cf2bc0577f9c319a5aa3810353bbe68
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 13:44:48 2025 -0700

    Clean up generate bible cell labels

commit 37cbcd3c34d87f119beb9ea150fb7a5bc3879913
Merge: 2b0de09 3816123
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 11:01:19 2025 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 2b0de093f9ca6f0418a6683dae03be80de2a7343
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 11:01:10 2025 -0700

    Add cellLabel property to various transactions and tests

    - Introduced cellLabel property in CodexCellEditor and CodexCellEditorProvider tests to enhance cell identification.
    - Updated DownloadBibleTransaction, UsfmSourceImportTransaction, and UsfmTranslationImportTransaction to include cellLabel derived from IDs.
    - Modified utils and validation files to support cellLabel in cell data structures.
    - Adjusted CellList component to handle default cellLabel values.

    These changes improve the clarity and usability of cell data across the application.

commit b72bd5aee4aa3c959ecbdfce408b3b6835f0ae35
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 10:58:20 2025 -0700

    Ensure smart edits can be rejected

commit 3816123404e69417881a8a203156f46583222485
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Jan 15 12:47:10 2025 -0500

    fix error where paragraph tags got saved back into the file

commit d48eb97f03a9b9599f3050a918d5fb6c02c6d04a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 10:39:27 2025 -0700

    Save complete edit history

commit ac78acdc1bdfe73244a1a9e2407a62b3601c87a9
Merge: c1e964d 5f30f24
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 10:11:31 2025 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit c1e964d4008f1fd42eff126af52db2934e25f14b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 10:11:23 2025 -0700

    Enable rejecting ice edits

commit b413839524eb2057362bb761d79b73b111198377
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 09:22:46 2025 -0700

    Enhance ICE edits functionality and improve command handling

    - Updated `getIceEdits` to return detailed suggestions with left and right tokens.
    - Improved logging for ICE edits retrieval and rejection processes.
    - Refactored command registration in `registerSmartEditCommands` to include logging of suggestions.
    - Modified `spellCheckText` command to accept `cellId` for better context handling.
    - Adjusted various components in the webview to ensure consistent type handling for `setContentBeingUpdated`.
    - Enhanced UI elements in the spellcheck popup for better user experience.

    These changes collectively improve the handling of ICE edits, enhance logging for debugging, and ensure better integration with the webview components.

commit 5f30f24e29e576c9104c65aaac4302c33726b807
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Jan 15 10:34:16 2025 -0500

    ensure that ai edits are saved as value

commit 29da69f9d516bbc6707c49bd3cf8e2b229274699
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Jan 15 09:38:38 2025 -0500

    use dirty state not dif to show save button

commit d4447a70700326c09cb7923a5d9b77c78eb2d708
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Jan 14 16:07:42 2025 -0500

    add addHtmlToText to useQuillTextExtractor.ts

commit 7c30f0026bc8642ac8c5fe3f5fdcd0970588a88e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Jan 14 16:06:10 2025 -0500

    add html to llm completions

commit aaf5a62729c55f6e761c6abef4f04c117cfe1d3f
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 17:45:18 2025 -0700

    Bump to 0.1.9 for hotfix

commit d28e33fc23abf3c28a0c44e7a1fe21dfe7384a4f
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 16:42:35 2025 -0700

    Refactor DownloadBibleTransaction to improve code structure and update Bible content URL

    - Reformatted import statements for better readability.
    - Updated the URL for fetching Bible content to a specific commit for stability.
    - Removed unnecessary whitespace in error handling for improved clarity.

commit 25175e4a24920abace985acf36b2a939d995cbad
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 16:27:01 2025 -0700

    Enable rejecting ICE edits

commit 4ec047506f658851f3860ce265cf7f81fdb0e448
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 14:42:51 2025 -0700

    Update warning and info quill blot colours

commit 7a0fcc37916b5106d14d1062ad0f4563590717df
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 14:37:22 2025 -0700

    Refactor save event handling and enhance ICE edits functionality

    - Updated save event handling in `extension.ts` to improve readability.
    - Added logic to `codexCellEditorMessagehandling.ts` for recording ICE edits only when content changes.
    - Introduced a new method in `codexDocument.ts` to retrieve cell content.
    - Implemented HTML stripping and diffing in `iceEdits.ts` for better edit tracking.
    - Registered a new command for recording ICE edits in `registerSmartEditCommands.ts`.
    - Enhanced text tokenization in `nlpUtils.ts` to handle HTML whitespace characters.

    These changes improve the overall functionality and maintainability of the codebase, particularly in relation to ICE edits and document save events.

commit 225afbdbca0e01a11be800cead7525972a6fc579
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 10:44:52 2025 -0700

    Initial ICE edits functionality

commit 7ab9bdb098577ca1100f422715d97d497c5af255
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Jan 14 11:53:21 2025 -0500

    fix webview type and config issues

commit c3e74438500617eb257922ccec4fe68df38379d1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Jan 14 10:54:50 2025 -0500

    add chatview back

commit 8513a5583259dbe3ceb6efd3a022c85c5e9012a9
Merge: e9a7238 cfff431
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 09:30:53 2025 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit e9a7238b8d7e84637298f23e6561c45f229247ec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 08:53:01 2025 -0700

    Cleanup

commit cfff431bf87408b393201e5e7b633d9462a12664
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Jan 13 14:59:25 2025 -0500

     remove the unique id from the project name if it exists for project list

commit bc354593e08ae667dc514149403db6c47dc3ddb2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Jan 13 13:50:42 2025 -0500

    use project name instead of folder name when local project is show in list

commit ebc034c84133fc14d9eb15fabbc45b754da31fc9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 13 07:03:03 2025 -0700

    Enhance FileDropzone component with improved drag-and-drop functionality. Added event handlers for drag events and updated input handling for file selection. Refactored layout to ensure better user experience when selecting multiple files.

commit c89b15d1abe16a9830a19ccc5837d62054425d32
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 13 07:02:45 2025 -0700

    Enhance file search and project creation logic in TranslationImportTransaction and UsfmTranslationImportTransaction. Improved codex file name handling with regex replacements and added detailed logging for file searches. Refactored project creation to sanitize project names and streamline folder selection process.

commit 16167640bb51dc07b507155064a02b8ec61bb758
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 13 07:01:41 2025 -0700

    Refactor SmartEdits class to use vscode.Uri for file paths instead of string paths, improving path handling and consistency. Update ensureFileExists and file reading methods to utilize the new Uri structure.

commit 8ec79391570394f8331aebbaa3776f27027bf984
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Jan 12 20:30:31 2025 -0700

    Update version to 0.1.8 in package.json and refine command titles for clarity in Translators Copilot section

commit 2f2306da90c46c40494c85028fa8e1ffd81e8f39
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 16:09:49 2025 -0700

    Don’t get webview to type-check src, types, etc.

commit 9ce812084a77d91ac2a051598822967b5daaea8d
Merge: 47d22da 92755bf
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 15:46:24 2025 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 47d22da422e70b8f72c9f3f11d601b2802801738
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 15:46:11 2025 -0700

    Refactor llmCompletion output formatting to remove HTML tags from target cell content and simplify output structure

commit 064e9dc250a165845099ff04be82f646adb10fbb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 15:46:04 2025 -0700

    Refactor file path handling in save events and transactions to use relative paths. Update commit messages and labels to improve clarity and consistency across the application.

commit 2dac144d7d95550e9a556f17f8b85a38e4d073d7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 15:45:12 2025 -0700

    Update GitLabProjectsList component to adjust height properties for better visibility of projects

commit 92755bffbe9e0f2151c8a46a8ba7749b61e829e2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 17:00:14 2025 -0500

    hide error if no remote is connected

commit 90ed39bfba44eb9765411bd45091c032f2472a18
Merge: 92dd779 d3413c5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 14:39:12 2025 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 92dd779cb108e6327985e427d008851387aecaed
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 14:38:57 2025 -0700

    Update version to 0.1.6 in package.json

commit aa35b15e4c2cc1819ce18a1ee45412a3a7d1f41a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 14:38:52 2025 -0700

    Refactor llmCompletion result formatting to remove unnecessary cell IDs from output

commit d3413c59564023bd5a16322f5be701b23a60aadc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 16:22:07 2025 -0500

    create unique project name that is sanitized for git lab

commit f5f965676ecfa739bbbde738b94160d503f2012c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 14:49:12 2025 -0500

    replace manual sync code with frontier.syncChanges command

commit cf52b9f2aa5367ae2eba3c9078f4fc505adf0e9d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 14:28:31 2025 -0500

    fix type error

commit 64a00c719f5a95b9b981f9df42e97c86ce9abcd2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 11:26:59 2025 -0500

    fix async issue when loading workspace with no auth extension

commit 2a88272ff91b4b24cb898a8e607d6f0e68102c5f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 01:21:34 2025 -0500

    close statup flow after loging in if the project is setup

commit bbf38b867623baca18325fa7ac3a52db57b5caea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 01:10:59 2025 -0500

    fix issues in startup flow

commit a25948d091272e7b4ab9a7060677becd7cb9390f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 00:30:30 2025 -0500

    ensure user sets up critical project details

commit 6ba734125eb843f83468be201dba2668d164fa9c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 00:10:01 2025 -0500

    added project details component

commit 266d5f5d3e5732cf71bb5a25ddf2f4d426ec59c5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Jan 9 23:59:36 2025 -0500

    correctly show login step if not logged in

commit 3d7763befd81d37d5a89192e58f321b7803a7df9
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Jan 9 20:54:59 2025 -0500

    move state machine to provider

commit b13e6e09ed5290c35fdbb7cee58681a6c557e35b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Jan 9 15:04:46 2025 -0500

    start modifying startup flow

commit 5733e84415a4de242d62c8e0af5d599180264c00
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 17:15:20 2025 -0700

    Bump to 0.1.5

commit d85eeace0e7399eccfe8ea7c03ae3f98649fc6db
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 17:14:50 2025 -0700

    Enhance Copilot settings webview with instruction generation feature

    - Added functionality to generate linguistic instructions for translation between source and target languages.
    - Integrated LLM API call to fetch generated instructions based on user-defined parameters.
    - Updated webview content to include buttons for generating instructions in both workspace and user settings.
    - Improved handling of project language configurations for better context in instruction generation.

commit 03bd98619347616be0bec985845638245748a316
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 14:36:14 2025 -0700

    Refactor Copilot settings webview for improved user experience

    - Updated the handling of workspace and user system messages to ensure type safety.
    - Removed unnecessary console log statements for cleaner code.
    - Enhanced the webview content by adding a header for instructions and clarifying the descriptions for workspace and user settings.
    - Improved tab switching functionality for better user interaction.

commit 2d5d9665e9d71c0f9cef1c7ceeab1507a0aa90c3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 14:07:11 2025 -0700

    Add system message editor for Copilot settings

    - Introduced a new webview panel for editing system messages in the Copilot settings.
    - Implemented functionality to save workspace and user-specific system messages.
    - Enhanced user interface with tabbed navigation for workspace and user settings.
    - Integrated the new editor into the project manager commands for easy access.

commit 68f2521631a4b572741b815b8f1de4804e7f5413
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 17:59:32 2025 -0700

    Add a planning doc

commit a676914b0e9a2d24047e83a8bcebe1d5a39775e9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 17:59:26 2025 -0700

    Fix test ts errors

commit 93ad687776359323c7c001c3eff16210546bf66b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:54:05 2025 -0700

    Use built in performance hooks

commit 0a15874c2f4ef7773ee0a112c8014a45b20de9cb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:36:05 2025 -0700

    Bump to 0.1.4

commit 46bc2a086df31d372fb731c7ea406ce32abea4e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:35:40 2025 -0700

    Refactor Chatbot initialization and enhance SmartEdits file handling

    - Updated Chatbot class to initialize OpenAI instance in a separate method, retrieving LLM endpoint and auth token from the auth API if available.
    - Added ensureFileExists method in SmartEdits class to check for the existence of required files and create them if they do not exist.
    - Improved file reading logic to handle empty file cases gracefully across multiple methods in SmartEdits class.

commit 0143daa414af73a15be8ad6da3a2242cf93e1e55
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 20 13:23:50 2024 -0500

    fix webvtt import so spaces in file name are ignored and remove some dead code

commit 3736d2cbf2197f170eb7f26cde926c0fddeb5ffe
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 19 17:51:34 2024 -0500

    properly step to init step if a workspace is open but not initilized

commit c868e0f306189db41dc486843c8cbce5118a8835
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 18 13:02:45 2024 -0500

    fix statup flow so it show the correct steps if the auth extension is installed

commit 268e28e54b2c37ee6840487f2f3c9268730f7073
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 17:40:39 2024 -0500

    Update TypeScript configuration and VSCode launch settings: Remove test folder from exclusion list in tsconfig.json and eliminate web extension development argument in launch.json for cleaner setup.

commit 7c81387fb4e3763298c482b9237a80c96bcb3d9f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 17:00:09 2024 -0500

    Update webpack configuration: Add process/browser polyfill, set global node option, and define NODE_ENV for improved compatibility and environment management.

commit c7e079fa08424730562a6e1f63c228e30b844796
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 19 16:46:50 2024 -0500

    correctly add user as auth on for git comits

commit dd607fc7b25f21f1038d7655eef635469d748a3c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 19 13:13:49 2024 -0700

    a start on removing extra css

commit a95893ad3f4d13784771d79c0438bc917e433f6c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 19 13:06:06 2024 -0700

    fixed copy button in parallel search

commit 6814c3f69baf39091be09e79d994dcae021d7b61
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 08:16:38 2024 -0700

    Add benchmarking code

commit f4b51c5b5ca912583e8a82cacd5fe997220ecba3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:59:10 2024 -0700

    Bump to 0.1.3

commit cc5eda1b77046aaf56f6b54e6890eadfa1c2bc58
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:56:18 2024 -0700

    Use corpus marker to group navigation items

commit 16cf6299ff6c863f065168ddd1d657080b93fc89
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:48:52 2024 -0700

    Drop old navigation; add a new one

commit b8df3850b701be03c877b35aee5d1089de855083
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 22:34:13 2024 -0700

    Minor type fix for v0.1.2

commit 73fec2732f345a7e554a77de4843cf23c52b1033
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:15:03 2024 -0700

    Bump to 0.1.2

commit 149ae03acd66cbb5c44dd4b677a1008449a08b19
Merge: a100f37 cc3ca77
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:14:14 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit a100f3721244b496920a4feb76219d654441b421
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:03:35 2024 -0700

    Update version to 0.1.2 and enhance API key description; comment out unused state store update logic in inlineCompletionsProvider.ts

commit 2d418dd4fdadc2d9f2f0a4787f330d5b925fbfc0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 16:52:18 2024 -0700

    Use custom auth-defined llm endpoint if available

commit cc3ca7790434775194d427eb8e4084a4c0b1376b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 16:43:52 2024 -0500

    Refactor llmCompletion function: Remove early return for no similar source cells and fix comment formatting for clarity.

commit a24e2662a40ca48dba22781b64ef92b9b27bf73a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 15:57:04 2024 -0500

    Ensure chat threads file check only occurs if workspace folders are present in CustomWebviewProvider constructor

commit 0b06069d3fb234b41d72bdc89acd1e4d630f815b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:44 2024 -0500

    Update version to 0.1.1 in package.json for release

commit 84a6dd188903220a4b5c7023dd45870074479dca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:18 2024 -0500

    Enhance password validation logic in LoginRegisterStep component to ensure confirmation check only occurs during registration.

commit b5eedbb49a97af2d8eb7bc54d3ddc991faa0195a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:26:59 2024 -0500

    Update version to 0.1.0 in package.json for release preparation

commit 02fcdcdcfb599d6e2daee93ea270240110d81b74
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:18:20 2024 -0500

    fix absolute path. Use generated local path instead

commit f5bce323d14af0aa2b4c3618f990e386952be6aa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:45:59 2024 -0500

    Refactor LoginRegisterStep component: Remove password validation during registration and adjust password strength color logic for improved clarity.

commit 5900b8f2e53322f664b6e0ceae5c3066755c1e76
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:30:42 2024 -0500

    Refactor LoginRegisterStep component: Introduce centerBumpValue for margin adjustments, update confirm password validation display, and change onChange to onInput for confirm password field.

commit cc3e453a65e7608ae269efb89a3ae1ce68518c27
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 12:12:27 2024 -0500

    pasword strength shown as popover

commit 331f1b7fddadd325510992e15d8440127731b9cc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 11:37:13 2024 -0500

    add show pasword button to login and register

commit 4c11e2a22ba183c9f4f580937aa6fb807fa1a0ca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 17:02:50 2024 -0500

    Refactor stageAndCommitAllAndSync function to remove workspaceFolder parameter and improve error handling; add syncProject command to project manager and UI for syncing projects.

commit 5cad490f820961405fe3a7cbe556a8ac5c1f695e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 15:07:51 2024 -0500

    fix compile errors

commit 22c498735eb6748fcdfcf1920762676fc2e11a6a
Merge: 3bdf889 64505b6
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:17 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 3bdf8899275bdc3cffaeed636867d5b8dc13b5fa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:05 2024 -0700

    Hide new chat in parallel passages for now

commit 64505b61cf95649130e1910e74e76b7b9bb255f1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 14:46:22 2024 -0500

    resurrect chat

commit ad7c6e99b47f43bc67f9994dda57adb6f8655784
Merge: eb50c13 4071c43
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:56:25 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit eb50c13eb645d217bc1f21df2fc0cf2b9731cdb7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:53:25 2024 -0700

    Add fixme

commit 1243bc80008f3150b4b88d75509b605db8b618c4
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:44:32 2024 -0700

    Enhance llmCompletion function to filter out current cell ID from similar source cells. This prevents re-predicting and generating duplicate content from previous edits.

commit 957f0eac8713adba44b9dc376e33591b8924cbec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:42:26 2024 -0700

    Remove commented-out source control provider registration from registerProviders.ts

commit 4071c43811fdd8cbce63bf227dc0aaa95db89c10
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 12:41:55 2024 -0500

    rerevert source blocking changes

commit e35d394e564bc810d394d6bffa41b37b3e4714a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 12 21:04:35 2024 -0600

    fixed merge

commit 7c0af25c008342d1993a9d3185e0c56034e02836
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 15:54:52 2024 -0500

    remove place holder name

commit 5ca1f27fb50da35a35484c5d905ba41383ec3a87
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 10:30:25 2024 -0500

    user name and email now come from auth

commit 0e3191126183eb2a9e4c3ee28c0f2412c42338c3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 11 11:55:49 2024 -0500

    Revert "Ensure source doesn't listen to matching codex updates"

    This reverts commit 182251e018b9022174b3917e75d99770c94f357b.

commit 182251e018b9022174b3917e75d99770c94f357b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 10 10:47:18 2024 -0700

    Ensure source doesn't listen to matching codex updates

commit f09441055ed8f33706368286fbcd267cde3c29b0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:13:29 2024 -0500

    properly dispose of webview in startup flow

commit 5521a408669445575fb6fb786734c1e8e09c2173
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:12:56 2024 -0500

    If a file does not exist ignore it in the commit

commit 6a1c1c599118709ac28d795ead6eb904386a8dee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 9 11:09:01 2024 -0600

    updated global message type

commit f4bd30a4c332db347e10ac388df018565a11238b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 17:13:44 2024 -0500

    Refactor startup flow and metadata handling

    - Updated the extension initialization to conditionally show project overview based on authentication status.
    - Removed redundant checks for codex notebooks in the initialization phase.
    - Enhanced the startup flow to check for authentication before sending metadata responses.
    - Adjusted state transitions in the startup flow machine to prompt user for project initialization when creating an empty project.

commit 61e97621dceccaf2fd4fb5954eeeb7515c4626dc
Merge: 4dfe25c 639aef8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:33 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4dfe25cbc7937b9248c69de573232a97feb1a555
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:26 2024 -0700

    avoid unnecessary ENOENT errors

commit 639aef8ae327052b132df8123609a76960d55f9b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:31:40 2024 -0500

    close startupflow if state reaches already working

commit 3089ba28180de3687df8ad979ea89adbb5fa22e1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:14:49 2024 -0500

    show init screen in startup flow

commit 79e20914d92e127a6d66bc59da053b02d00a5fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 23:36:29 2024 -0500

    feat: block git commiting if no remote

commit 3e1f76f89e0b4f0c3ca4ea7c7fe37172d5eb8fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 22:10:29 2024 -0500

    Use top level refrence for auth store and add password validation

commit af19c3f511bb06a6dbb5068659e547e621869f43
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 17:13:38 2024 -0600

    hide empty messages

commit 55b294b542ea7b964c39dd9f520a15e479405de4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 13:06:45 2024 -0600

    Chat can coninue after pinning verses

commit a8400180b74dd007cbe3b13d44df68702d219b6d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:23:07 2024 -0600

    better spacing

commit d8408d323435b17f86365ff1332eec997ffafbc9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:22:34 2024 -0600

    file save fix

commit e1c00822833a558b5dcf1dcbb5039c95051c5908
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:16:53 2024 -0600

    Chat can now pin on it's own

commit 8cabc60df9509872ab28fbaf363dcf7086f2e9eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:37:42 2024 -0600

    Global message with destination

commit 75400a7635e125f5de8b639f7181b47183d870b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:51:33 2024 -0600

    merge

commit ff7be46cf41c354f774835b4b22b9c9e04c69dc2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Dec 4 15:02:03 2024 -0600

    global provider

commit 65e73b467fe92c675d32c3d09be63c74d7b24905
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 22:27:47 2024 -0500

    add email to project management so we can commit

commit 0fe9ce94e88e57cc48cb19765a42d6fc654786b5
Merge: 326582b 6ef8072
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 13:27:32 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 326582bf83ba81f74048817020b4a9fd70135c75
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:58 2024 -0700

    Add mock classes and context creation for testing NotebookMetadataManager and TranslationTextImporter

    This commit introduces mock implementations of Memento, SecretStorage, and EnvironmentVariableCollection to facilitate testing of the NotebookMetadataManager and TranslationTextImporter. The changes include the creation of a `createMockContext` function to provide a consistent testing environment. Additionally, the usage of the singleton pattern for NotebookMetadataManager is reinforced in the test suites, ensuring proper initialization and state management during tests.

commit bb2d4a8bedba29eb95b64b09921e324eec2693c9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:52 2024 -0700

    Refactor NotebookMetadataManager usage across multiple files to utilize the new getNotebookMetadataManager function, replacing direct instantiation with a singleton pattern. This change enhances consistency and reduces redundancy in metadata management. Additionally, minor adjustments made to comments for clarity.

commit 6ef807269412305d38e6bea782467c87111ab70e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:59:24 2024 -0500

    fix type errors and make git commit command

commit df5630a9730347b0fedb0c4453805a31e7166529
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:05:46 2024 -0500

    renamve test file

commit 3d5406dc33beaa77accc4af98ae5d13b6dee50c9
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 08:49:54 2024 -0500

    fix message posting and add stage and commit util

commit aa0bde14d989e5c8438e0b6f1954e59442e24586
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 3 16:48:51 2024 -0500

    init git when initing project

commit 4409656a4bc2b80b60c10fda723206f070e3bfec
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 14:20:07 2024 -0500

    show publication button only if repo has remote

commit 478917e456b6e5d72805be536d0c221742d39606
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:16:36 2024 -0700

    Fix import path

commit 5bf45734c192405f39e70b567ea1bb6b325d598d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:15:58 2024 -0700

    Use singleton pattern for NotebookMetadataManager

commit da95948c7353977768fa443a819f1ea3258c02e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:07:10 2024 -0700

    Ensure uppercase format for consistency

commit 56930abb92f4430bb1b40b89dc34843eb51f14bd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:04:01 2024 -0700

    Enhance error handling in UsfmSourceImportTransaction for file reading, decoding, and parsing. Added validation for book code format and chapter content, ensuring robust processing of USFM files. Improved error messages for better debugging and user feedback.

commit 1a7812e26c296fb203b029563930106783690287
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:48:53 2024 -0700

    Improve error handling and transaction processing in SourceUploadProvider

commit 8ab3a139be7393345c699ae101b0ed795ede87b5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:36:43 2024 -0700

    Refactor SourceUploadProvider to support USFM file types

commit 6fb31b3d3242adc26d1baebbb8e53d87367434e3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:31:00 2024 -0700

    Add UsfmTranslationImportTransaction class for importing and processing USFM translation files

commit 2b2d15445bf0a0c6d99490052c5e503b87be25ec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:53 2024 -0700

    Add UsfmSourceImportTransaction class for USFM file import and processing

commit e109dfc727cf1ab9f1ae180e24c10956afbeca74
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:31 2024 -0700

    Enhance LLM completion by filtering similar source cells for overlap. Added tokenization to improve example selection and log dropped examples for better debugging.

commit 23adf482a52fcc6d7278a08dade445daa9c1a868
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:51:47 2024 -0500

    Reindex after importing a file

commit 22c2846a5be5787c2dd23e45c33666f88b916a47
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:45:24 2024 -0500

    Hide all projects from project overview

    This functionality is now handled in the startup flow webview

commit d985070dd9fd7b1fce52de0ca3d66ec6806e4462
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:21:20 2024 -0600

    Revert "Chat enabled autocomplete (work in progress)"

    This reverts commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b.

commit 029c4c1af7165946971e8850d14879fb66254f99
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:48 2024 -0600

    Revert "some progress towards chatbot entry"

    This reverts commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd.

commit 0c361f1c000bab0dc07dc994242f27446ba22d8b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:45 2024 -0600

    Revert "chat tab as default"

    This reverts commit 13b62d2a54a4859a862a8b56d923850f8170e463.

commit 52f542ec2d4d0c00beca8a75d308db39f9ed03a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:38 2024 -0600

    Revert "fixed editing"

    This reverts commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9.

commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 16:04:22 2024 -0600

    fixed editing

commit 13b62d2a54a4859a862a8b56d923850f8170e463
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:46:00 2024 -0600

    chat tab as default

commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:17:08 2024 -0600

    some progress towards chatbot entry

commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 16:45:35 2024 -0600

    Chat enabled autocomplete (work in progress)

commit 1bdf4f2b7dbd100212668191c44987178937e81f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 10:40:25 2024 -0500

    move project create to a util and skip setup if project is already setup

commit a9288611a03a8e48fb1965290842cb355848409c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 29 10:32:30 2024 -0500

    fix types and styling

commit f8fcfedfc169543559adbc727b522673047b4a5b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:16:16 2024 -0500

    load local files if there is no auth

commit 95b33d747491b3e5543f0594934af2117632b884
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:07:07 2024 -0500

    users can now open a existing project from the start up flow

commit 308d669aaffa60c2b8980e3f9d967d8d88a9d39d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 11:47:16 2024 -0500

    finish clone process in startup flow

commit 0c95b8e8ac2fd6da3b002b2f6d26b1984231ffaa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 27 00:00:15 2024 -0500

    fix content security policy in startup flow provider

commit 82bba59aa29d3c2a0b46546c95cc40adbc6ea963
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 22:46:43 2024 -0500

    fetch list of projects in startup flow

commit 33fd4b0e7be17780bd13d4b13dcdba5ccf11f139
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 14:15:48 2024 -0500

    render project list

commit 6336ba6dd6cedac70f3a378cf7a0e18aafdf8703
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:46:16 2024 -0500

    list projects in project view

commit 1f81adb23b9d5cf46713a245b7fac7fb99e504f7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:43:59 2024 -0600

    much better apply button

commit 4ffaaea21bf6692d3ff4da55856b2ce9a45b352b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:42:09 2024 -0600

    fixed bug with old prompting

commit afc6b00175ecd12c7d539392d5c73fe01c2a07eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:07:36 2024 -0600

    chat menu opens by defualt

commit 3683b067ec14759b98426959892caaa834fa42ea
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:04:12 2024 -0600

    fixed blank message bug

commit 107b401502dc644988312226db179fe4f220b8a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:51:58 2024 -0600

    fixed some streaming problems

commit b2563854f5902bc9c0da7677edadf19bedd3b994
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:34:23 2024 -0600

    less radius

commit 8b5fb8c871f276c0f332250eb591e112be15e573
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:30:35 2024 -0600

    fixed styl

commit 722e43ca30e5b1b66119667b959e6676763020bf
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:25:19 2024 -0600

    feedback on suggested translations

commit 902a94680bd4a1e20d7bb69b4735af891b2d4498
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:01:44 2024 -0500

    fix preflight command names

commit ee77a7c61635dd2f66fe53321663bf26d6c8e6ad
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 12:20:45 2024 -0500

    skip workspace setup if one is open

commit d4a08c2448ace427b56f8e5aada5fd25454f1c4d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 26 08:45:53 2024 -0700

    Change default llm model; increment version

commit 5636e480085d498e4a8104a3f45cd3a1f53f5619
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:38:10 2024 -0600

    removed chat webview

commit 4f8b697893ae0641e12bd3b183e1d6d67d18ab50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:26:15 2024 -0600

    removed prompting

commit c71025165a082208f08c47044d8c515fbd8bc399
Merge: 40db83d 000c084
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:39 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 40db83d820b46563cd359d159ee37e1e058b181e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:26 2024 -0700

    Clean up state sharing across activation, provider, webview

commit 78745f0567d5f14f4236f8093aa35d08fba7cbf2
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:04:39 2024 -0700

    Overhaul of startup webview

commit 000c0840408730cd61e8eafa223cb28cda5168a2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 21:43:03 2024 -0600

    delete old chats

commit 5ebe8a519df84c22ca849a1cccbffa322d839cb5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:49:06 2024 -0600

    better alignment

commit 50a3c1c59294c626ca722ff39bcb864e7be57e87
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:45:45 2024 -0600

    slightly improved session management

commit 940b16dd180b92751c2fca7184c158016456ae7f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:21:08 2024 -0600

    loading and saving chat history

commit a75b59189c9b8476ca03ee5d45fdbbcc3645845f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:27:06 2024 -0600

    merge

commit aa692ce62642e451ae28257602e485fd717d5d8f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 16:56:06 2024 -0600

    removed ChatView

commit 6f0bafc636c33bd1c97ca8afbfbdf847e8739faa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:44:54 2024 -0700

    Align preflight with startup state machine

commit 411ae7cda7867d0dcd536cdae10a449002c56f1d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:40:54 2024 -0700

    open startup flow using state machine logic

commit 084234398485b63791a66c6a89e6ba80a8120cdf
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:54:57 2024 -0700

    Handle test suite compile errors

commit 09463e61c522d49a9fa7170fdf680f9d99621b38
Merge: 4b22e1c 1d9d551
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:21 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4b22e1c4d09027034f89ab8dfb4e610ac5696adb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:18 2024 -0700

    fix build webviews command

commit 1d9d551db3424d0a80cf5ed93de414dc8aff0474
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 15:53:31 2024 -0500

    add startup flow

commit c0c15f1d87d9646fcfe8e4ded84b2a4f8396de25
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:22:17 2024 -0500

    revert type changes

commit d6a1b804625bc16398bad23e1c28f0609bdfb521
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:19:21 2024 -0500

    revert changes to source uploader webview

commit dfb56143ed169876fa9de312a66b1849005a5aa0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:46 2024 -0500

    move logic to startup flow provider

commit 9749771a23422074b6447ec62183ccb353820450
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:28 2024 -0500

    revert SourceUploadProvider.ts

commit 2a7b9da01dd60a1489d09c1c81bd1dfa3b51ea30
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:32 2024 -0500

    add startup flow to build

commit bcfd8822b01b9f20a0b9cfa7313241e5ab8fbbdd
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:13 2024 -0500

    register startup flow

commit 27f48552ca561e026a7b32460001dfcd1c93bd5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:00 2024 -0500

    add start startup flow

commit 791cab17674f8a9adaeb4594e5dece9129bfd80b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 13:39:01 2024 -0500

    add password confirmation and fix ui

commit 1f418fdc79d044180e0cba92884292711ce0deae
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:38:03 2024 -0500

    setup signup

commit aca437967f8201c2bb320fcb1bf69a667b4eef40
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:01:58 2024 -0500

    fixes to show auth step

commit 2be23ac631d86d965214e5a9d1c0aff3683b7534
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 15:55:49 2024 -0500

    work on showing auth in setup flow

commit d615679856af1cbbc760e28741b1ea3e2b74736c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 12:10:31 2024 -0500

    add check and change command names

commit 036f5f4f7cc9d733cbbdaa9152afea94e5c1ce9c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 11:20:40 2024 -0500

    start auth flow in upload provider

commit 3e8b8bb943fe583ad3d74b9c8deaa5391691e0c1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:27:35 2024 -0600

    better video ui

commit 15695ec8253af9e5260033906e4f40ef7ff8b16d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:16:22 2024 -0600

    working video player

commit d3567a051800ad9d0a8b530d325d58085738f6c9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:15:50 2024 -0600

    bible project urls

commit 10efef06a54590908a2e64c41e9ec55e2c539e82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 18:33:27 2024 -0600

    removed old tab

commit e87922df4ca39da7dd1b675dd7d4408c6bb573e4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 16:25:15 2024 -0500

    Added CodexCellDocument webview only update event _onDidChangeForWebview for proper revert functionality.

commit 99b9d69babcde4ba0c6f17014c31c2ae6e007e2f
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 15:18:28 2024 -0500

    Added watch for file change to reload.

commit 6d6b236bac0bbc5a30e3bd20dc8cffeba0afc9f1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 15:26:31 2024 -0600

    edited user prompt

commit b887039bb2de370bda8b1e303e401cb0a39c8285
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 14:10:58 2024 -0600

    uses language config

commit 57f4ae1f33333043996f0c054a8447c963ed8dc8
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 13:57:39 2024 -0600

    better prompts

commit a5439914f6164a43c14ba47ceefb36510891acca
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 22 11:49:14 2024 -0700

    Disable workspace trust call for theia trust compatibility

    Cf. https://github.com/eclipse-theia/theia/issues/10472

commit b90b464ff386e4c6723a98571d58cc959d7a8ea4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 10:27:30 2024 -0500

    Resolved compile errors in the test config target.

commit ca78a7bade0fe1571b48fb046fe6555a24a92a50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 01:55:14 2024 -0600

    better prompts, ui, searching, and saving (but that part is still a bit buggy

commit 09eec8a33bb6bcba66a60da7a61011bdb3833210
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:47:13 2024 -0600

    Chat now predicts the next prompts

commit 9e7a747690250bc2da560bccdcd737e21ee1db06
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:34:04 2024 -0600

    Removed Teach tab, more combined into the chat tab

commit 0fc51a04d068330efb570c9dd70b410075c3606a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 22:04:59 2024 -0600

    apply

commit 3cdd5adfc3ea9be486335bb3469a757a90b96832
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:45:29 2024 -0600

    more than one TranslationResponse cell, and more extensive regex

commit 037bad6fbe76d6198251048b67a76174978c6bf0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:20:43 2024 -0600

    toward a unified chat

commit 84f65c09b5dcf4dd04dcf9d7eb000e8c291a459f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 15:17:06 2024 -0600

    hide navigate button

commit a02439aedaeec9f717bad6763f85ef858df3bbde
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 15:11:24 2024 -0700

    Some copy updates

commit 57388274f8a471b217621be2e7f53f0b59962a7a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:45:05 2024 -0700

    Ensure navigation treeview is not mutating data

commit 3e152ab251d5b4f617befdc50b6c6741fa827ada
Merge: d2c0551 a6892ab
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:16 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit d2c0551bb41185ca0a7c170b5eb625ce13fc3184
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:12 2024 -0700

    Move command from top level

commit 1c7f9eaf0e7f842999e5b0e2e107d54c2a53f3df
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:04 2024 -0700

    Handle fatal error for missing file

commit a6892abecfce5852a9644c70a30eded5c6ba2d3d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 14:02:03 2024 -0600

    some progress towards a working apply button

commit 6449addebc74863b2508a407f99a6ed8b136642e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:04:28 2024 -0600

    less word breaking

commit 1c0e2ea351e8274b435e067e4f612264a71fd13a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:01:21 2024 -0600

    backtranslation word wrap

commit 4a54baed95d7ac8e528d22c65ad6cb4cdc9a01b6
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:49:12 2024 -0600

    smart edits now get memory context

commit f332f802baf70b88f7ba10fbbf8d118a25b5d065
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:17:51 2024 -0600

    fixed prompt

commit 54b0984d41f1029f84e79815782fe20c104b5984
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:13:25 2024 -0600

    rename to be more clear

commit 4dc337ee20db9a7ae49e8f0ff2da6b5c91ebbbee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:14:53 2024 -0600

    search settings and pin all

commit ddab14a8b4d919d51f958ce18e327c313876db50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:04:59 2024 -0600

    more padding for checkbox

commit ec7987dc3914e61cbe3e7c850703081af9175a36
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:02:51 2024 -0600

    better index for searching

commit 5462ad730e7167ab7e6dd5b49b53aace519c7b92
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:08:24 2024 -0600

    clearer UI for context

commit aa34cbe48e4857c1d71cfce881ae9281654520d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:07:38 2024 -0600

    updated assistant about the new tab

commit d43794975fd0e4da39f8b7a4805e1eff2caf3018
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:01:41 2024 -0600

    some bug fixes

commit 3a7fbe424bd1b3a75085dc17c077e4a2c3deb303
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 21:32:50 2024 -0600

    much better memory management

commit f414808c4b837ba9353b2b27699202f6c6f14b57
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 20:23:51 2024 -0600

    unified styles for both tabs, better chat etc...

commit 49b5f88d445ee79b3b41e4cfb78200a1957bba75
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 18:34:50 2024 -0500

    remove builds with nothing to build

commit cf5da90733be6f738f48bf9b9aa7fbbf22f88e64
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:40:16 2024 -0600

    navigate to next cell

commit 91e25eeea2e0a833c4d71a5e051874463fb684a9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:45 2024 -0600

    somewhat more stable

commit 69acedff6572d624228fff761282793f44ceff7d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:05 2024 -0600

    new command for finding the next untranslated source text

commit 92bfaf3d1ac41033b5066cbbada9529de2014ba4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 15:01:25 2024 -0600

    skeleton loader and clearer UI

commit 3ab2112b2756a423e80d7a9dd61ddc72dc8cb94a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:56:23 2024 -0600

    UI a bit better

commit 8529a05814fe234db4a171ff4d1ff7433f2869ab
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:47:18 2024 -0600

    working with untranslated verses

commit e0accd726d7c5cd21d0875c9c26c4e4f7bae7180
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:50:02 2024 -0600

    pickable target passage

commit 5c3ee120d25cbfb703fb1dbb8d7113c95524df1c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:25:06 2024 -0600

    better UI for silver tab

commit b8bf1ee040aa66871840865eab91bc87563c5fb5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:43:43 2024 -0500

    remove build commands that don’t have folders any more

commit 0a8589ceadc07212d78f64c06fed31c5b52c2f5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:14:49 2024 -0500

    remove unused code

commit cba5ce42dc900c3b8b664daff3ab6c33a3bfdd04
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 10:44:21 2024 -0500

    rename vars for calrity and return indecis to extesion for use

commit 6020e97fed9d61c19f7ab2d4d559d2d7b42fb9ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 17:05:04 2024 -0500

    index tsvs

commit ec3d1c8cf417e2701d1a7a0683a202c506c90472
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 16:17:36 2024 -0500

    init add logic for indexing tsvs

commit adc76961d82f085ff9727eb8db03135a523b0715
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:17:21 2024 -0600

    new tab and css file for chat input

commit f1f83f911262f0ecc8c7ddf2f76dd6fe2bf9132b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:16:43 2024 -0600

    start on silver path

commit 50da7998b13d1b8d07a1f0544fe9b0fdbf0a70f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 16:26:49 2024 -0600

    better organization for codexCellProvider

commit 0b5943eb8a1784edd799a11422b11f8d5746da9b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 15:55:41 2024 -0600

    better memory management

commit 982c26d0122ed3a0bba88bc11344334dac041856
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:47:35 2024 -0600

    silver path start

commit e6f7538c95d60113c05c2b3bb18c93151641e207
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:20:07 2024 -0600

    improved system prompt

commit 80fee48c36827af4c77e92db6360df6dbd73d8d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 13:04:53 2024 -0600

    better look for quoted text

commit 24f86b857236061eeef7679e5dd6f75b728db4cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:52:52 2024 -0600

    fixed json bug

commit 306ffb68a072e7c1723bcd1504fa09780e5c70a5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:42:06 2024 -0600

    better prompts

commit c9f8a861b2152075961c7cf716de0b5d98d43bf4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 23:27:32 2024 -0600

    better backtranslations

commit 7f7d07d8d2d2f659928a9dfd9dfc0312f7946eaa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 20:29:16 2024 -0600

    better ui for backtranslation

commit 55979af809e57b82745c6eff4ea4a1ec3b0739e0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 19:12:54 2024 -0600

    working backtranslation

commit 24cfc273edffef93efaf198651b4f10e77aae9a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 17:14:11 2024 -0600

    new command

commit 07101d5fb50d500f2a6034c258105248f4306ae5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 16:27:48 2024 -0600

    backtranslation

commit f6401b245f3b0c2a8820624e1a6c96df3965fc50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 15:15:39 2024 -0600

    token saving context

commit 5e116e9453edb8770524886235e80f0f921aa773
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:33:27 2024 -0700

    better cellID display in chat

commit c9ec863cec12a683d35b60601cd719f376cc4a42
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:04:44 2024 -0700

    better system prompt

commit ee7588f5e932ba3aea70789e5c17978a844037b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:57:09 2024 -0700

    working reload button

commit b5fd44734b5c2a2eb7eb443261728de4043373c5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:30:42 2024 -0700

    fixed bug where dictionary didn't update until a refresh of the app

commit 95071c292f8a45c6b0e1cbaed4c047e427c13d53
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 11:54:58 2024 -0700

    some improvements to tabs

commit 05ded57fe0ab6042f1ab56b34023b2c78beb5694
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:14:16 2024 -0700

    small style change

commit 5d56a69b2a7aeab4c61f047b14d1aa400a0a3d09
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:07:08 2024 -0700

    better organization of parallel view components

commit fd2980a8148b338f02a08f452bffc6b8ac4b8fdc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:28:28 2024 -0700

    better styling

commit 1b8d2551876d3baaefc6a75e1259135d3c5bfc0f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:22:17 2024 -0700

    codex help

commit cb4de766b77155a6c993f98ccebc43632be4eddd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 15:48:50 2024 -0700

    universal pinned prompts

commit e902bad3323b50e55e23c8da920ba3cc9c4df52d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 14:22:25 2024 -0700

    save generated prompts

commit 74aac37fc2d7f436eff14f24d93f436811dc9318
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 15:16:37 2024 -0500

    restore needed css file and reduce button height

commit a502d88bbe3000507112c8b2a408f1c1492690d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 13:05:07 2024 -0700

    better organization

commit fc11fd8774a94c37006e4c66119aee44219b7fb5
Merge: 1f470ad 0c9e677
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:18 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 1f470ad012d02f48b2bfdeb253bc377106cde5cd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:01 2024 -0700

    A bit more comments style cleanup

commit 0c9e6775a4ba5e3dea4136992223420289cc4488
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 14:40:57 2024 -0500

    allow user to change video player height

commit ee44a7248ab3753e300f80cca1697ceb5f2b3b4d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 12:08:34 2024 -0700

    components for prompts

commit 6f09e260fc48120116193e34cbe001a55b4255b4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 11:53:55 2024 -0700

    New component file

commit 719408684c760d8cacf947bf14ffb7571dcfe309
Merge: dc17e7a c75b57d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 11:47:59 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit dc17e7acb4830e0206a27494a0110bf605a8440a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 23:35:57 2024 -0500

    WIP: Add expandable comment threads

commit a09af37a12c018218327c7b9771075ec44e57ee8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:29:28 2024 -0500

    Tighten up some styles

commit ed39dbbf1adaff4d3c7af1628ec6af37a5f6d622
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:22:16 2024 -0500

    Add icons to comment tabs

commit ea0cc154f48d808a8e309f050e3e03a5a7113360
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:05:56 2024 -0500

    Add tabs to comments view

commit 12303ddbffee26a2e55cf0e4e0ff46bc826e4817
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 21:51:30 2024 -0500

    Update comments view styles

commit c75b57df8eb77feb1d4aa83666a4b7c61ebe6465
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 21:45:06 2024 -0500

    fix unsaved changes prompts

commit f0685d10004a53294361eafe82b3623fb9eaea9e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 19:35:33 2024 -0700

    pin verses from editor to parallel view

commit 7c53dc19b186a319eb61e73f4178b0d3b2d14c41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:59:16 2024 -0700

    force activity bar open

commit adbb6ee1eae3a6432b0ed02651d3126a29196bd4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:03:14 2024 -0700

    better source text

commit 025c0366be1eff44835c54ed1ca07fd9c39a85cc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 17:18:17 2024 -0700

    show source text in editor

commit 4b745f827c5bad1ebd8e2a36f6047a47c0765eb9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:57:00 2024 -0700

    don't show needless revisions

commit d0b3c7e270ca839b5b3fd919e450e86f873f1969
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:39:34 2024 -0700

    return void

commit 4ee7f30f58bd44a26fb153aa7125760ad5cffd5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:35:54 2024 -0700

    third person was weird

commit 1bbb4a72fc2aa6f12a8f8bd07d03336f0424ba0d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:23:33 2024 -0700

    better UI, and prompts

commit bf60e4b572ca667e6d795689fbf7b4d5a77aff33
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 15:43:21 2024 -0700

    much better chat in parallel view

commit 9647f6c16c0649d21aff00c47e292d4d44fb291b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:59:36 2024 -0700

    better buffering (aka no buffering)

commit f95c348fc0240548610fb3f1643df0ce9e30fb19
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:50:37 2024 -0700

    Way more consistent smart edits that don't magically vanish

commit bd157a18e8608673a0ab1870bff9a39ae3d157cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:37:22 2024 -0700

    removed buggy cellChanged toggle

commit f83aa5633c2a604e3f6229751c265e4ad0d9b469
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:06:56 2024 -0700

    less padding

commit 72e758384d70b79561c1ff46f370e8c118cef8da
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 16:03:12 2024 -0500

    webvtt filter out cells with no timestamps

commit 35dd7ad581b10639fecbd1919a465fead84a4153
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:52:59 2024 -0700

    save button

commit 95150e9589a0fb61b117eade6a26852f4a5bc0a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:28:27 2024 -0700

    Revert "fixed(ish) save button"

    This reverts commit 2dc417830df86959d77057ef9740d93dd68f9216.

commit a9169253cbc0efbdf2e0278db839e27dd6c7d933
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:27:09 2024 -0700

    Revert "Revert "allow user to add paratext cells above or below""

    This reverts commit c2f96bc60aad976c22d7ef2679f615c35916ad30.

commit c2f96bc60aad976c22d7ef2679f615c35916ad30
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:21:42 2024 -0700

    Revert "allow user to add paratext cells above or below"

    This reverts commit 459beea4c93788af0ecd5f361258630a7764455f.

commit 2dc417830df86959d77057ef9740d93dd68f9216
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:10:27 2024 -0700

    fixed(ish) save button

commit 459beea4c93788af0ecd5f361258630a7764455f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 14:42:17 2024 -0500

    allow user to add paratext cells above or below

commit 0d8fdec3b385581ce124cf00a665d03994d4cc5e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 12:03:28 2024 -0700

    hamburger menu

commit 654918290c8965b4de34a4258a913c8b56105868
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 11:39:27 2024 -0500

    fetch more spell check responces for better spell check results

commit ac17de15b031e9e4857bc704b5c1bc8593436e73
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 19:17:26 2024 -0700

    more search results

commit 9d3bf671a95754b5689fa022eae6f71b6754fa15
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 18:33:14 2024 -0700

    fixed autocomplete and dictionary buttons

commit 7c9c6483afdde181762d3c70069c1ef770cca22a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 18:29:15 2024 -0500

    speed up spell checking by slowing it down

commit c0eca8af77c73d7251a38e69c685fa9f5b272c89
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:22:27 2024 -0700

    new UI for suggested prompts

commit ea9313eab138a8ac3df217f51f0b4e2c7aa6eebd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:58 2024 -0700

    removed old style

commit 48fc1960fda56c08a007a0fd5ff1cde811d32c82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:44 2024 -0700

    fixed the way smartEdits reads paths (i hope)

commit 04377ec8c99e4a51f1684cabb05e890697528e59
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 15:59:00 2024 -0700

    much better toolbar text slider

commit d15e38b23769e9d8feaecfcfad2b69ab41f4059a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:31:15 2024 -0700

    fixed width of textarea

commit 09f4dc87316078ecb8f10a1c38a755133cdd1dd7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:18:35 2024 -0700

    removes html using the util

commit c0cf03d70a03b7a70fc9a6410af5a87b15d5a302
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:09:10 2024 -0700

    fixed bug where words are removed

commit e438d5636d85aadf1d7ddd7d785ab7e252b9ec76
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 14:01:18 2024 -0700

    some better more compact styles

commit 524954358cab2f9a0b101885a9520ee832944a5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:42:51 2024 -0700

    removed debounce

commit a49134842e07c5490c3d9278415d627e671d5971
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 13:39:50 2024 -0700

    fixed cell wrapping problems

commit 48426bae8ee9ebfa1bf98721061b0d2d0ddeeae0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:54:38 2024 -0700

    hide alert bubbles in inline

commit cf48eea9754c670886415e05a395e6d939e7b1e9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 11:33:41 2024 -0700

    filter html before saving

commit 7…
ryderwishart added a commit to genesis-ai-dev/codex-editor that referenced this issue Jan 17, 2025
commit 4fad2cd6acd7eb904b0275a503608a995ca161c2
Merge: e7e18d0 520a740
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 17 13:45:23 2025 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit e7e18d083055b1a5068d698fc360c8dfa4c81d43
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 17 13:41:21 2025 -0700

    Bump to 0.1.11

commit c7538b3c23e698c6a2856ef9a8674eef89765399
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 17 13:40:54 2025 -0700

    Update Quill dependency and enhance clipboard handling in CodexCellEditor

    - Bumped Quill version from 2.0.2 to 2.0.3 in package.json.
    - Added a custom clipboard handler in Editor.tsx to track unsaved changes during pasting.
    - Removed unused PlainClipboard module to streamline code.
    - Updated QuillSpellChecker to emit text-change events without special character filtering.

    These changes improve the functionality and performance of the text editor component.

commit 576daee225f01cc674e7ef44daf4de45328a6b11
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 17 12:58:16 2025 -0700

    Clean up logs

commit 520a7404fc063d24a9d7909cf24ab013fe59bf22
Author: TimRl <tim.rahhal@gmail.com>
Date:   Fri Jan 17 10:31:59 2025 -0700

    Update package dependencies and build scripts

    - Added `xstate` dependency to the main `package.json` for state management.
    - Updated build scripts in `webviews/codex-webviews/package.json` to use `cross-env` for better cross-platform compatibility.

    These changes enhance the project's dependency management and improve the build process across different environments.

commit d16d35031e1175462c49d3430fde837779e3e456
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 19:47:58 2025 -0700

    Bump to 0.1.10

commit 41554dae4cf2bc0577f9c319a5aa3810353bbe68
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 13:44:48 2025 -0700

    Clean up generate bible cell labels

commit 37cbcd3c34d87f119beb9ea150fb7a5bc3879913
Merge: 2b0de09 3816123
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 11:01:19 2025 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 2b0de093f9ca6f0418a6683dae03be80de2a7343
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 11:01:10 2025 -0700

    Add cellLabel property to various transactions and tests

    - Introduced cellLabel property in CodexCellEditor and CodexCellEditorProvider tests to enhance cell identification.
    - Updated DownloadBibleTransaction, UsfmSourceImportTransaction, and UsfmTranslationImportTransaction to include cellLabel derived from IDs.
    - Modified utils and validation files to support cellLabel in cell data structures.
    - Adjusted CellList component to handle default cellLabel values.

    These changes improve the clarity and usability of cell data across the application.

commit b72bd5aee4aa3c959ecbdfce408b3b6835f0ae35
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 10:58:20 2025 -0700

    Ensure smart edits can be rejected

commit 3816123404e69417881a8a203156f46583222485
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Jan 15 12:47:10 2025 -0500

    fix error where paragraph tags got saved back into the file

commit d48eb97f03a9b9599f3050a918d5fb6c02c6d04a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 10:39:27 2025 -0700

    Save complete edit history

commit ac78acdc1bdfe73244a1a9e2407a62b3601c87a9
Merge: c1e964d 5f30f24
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 10:11:31 2025 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit c1e964d4008f1fd42eff126af52db2934e25f14b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 10:11:23 2025 -0700

    Enable rejecting ice edits

commit b413839524eb2057362bb761d79b73b111198377
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Jan 15 09:22:46 2025 -0700

    Enhance ICE edits functionality and improve command handling

    - Updated `getIceEdits` to return detailed suggestions with left and right tokens.
    - Improved logging for ICE edits retrieval and rejection processes.
    - Refactored command registration in `registerSmartEditCommands` to include logging of suggestions.
    - Modified `spellCheckText` command to accept `cellId` for better context handling.
    - Adjusted various components in the webview to ensure consistent type handling for `setContentBeingUpdated`.
    - Enhanced UI elements in the spellcheck popup for better user experience.

    These changes collectively improve the handling of ICE edits, enhance logging for debugging, and ensure better integration with the webview components.

commit 5f30f24e29e576c9104c65aaac4302c33726b807
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Jan 15 10:34:16 2025 -0500

    ensure that ai edits are saved as value

commit 29da69f9d516bbc6707c49bd3cf8e2b229274699
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Jan 15 09:38:38 2025 -0500

    use dirty state not dif to show save button

commit d4447a70700326c09cb7923a5d9b77c78eb2d708
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Jan 14 16:07:42 2025 -0500

    add addHtmlToText to useQuillTextExtractor.ts

commit 7c30f0026bc8642ac8c5fe3f5fdcd0970588a88e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Jan 14 16:06:10 2025 -0500

    add html to llm completions

commit aaf5a62729c55f6e761c6abef4f04c117cfe1d3f
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 17:45:18 2025 -0700

    Bump to 0.1.9 for hotfix

commit d28e33fc23abf3c28a0c44e7a1fe21dfe7384a4f
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 16:42:35 2025 -0700

    Refactor DownloadBibleTransaction to improve code structure and update Bible content URL

    - Reformatted import statements for better readability.
    - Updated the URL for fetching Bible content to a specific commit for stability.
    - Removed unnecessary whitespace in error handling for improved clarity.

commit 25175e4a24920abace985acf36b2a939d995cbad
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 16:27:01 2025 -0700

    Enable rejecting ICE edits

commit 4ec047506f658851f3860ce265cf7f81fdb0e448
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 14:42:51 2025 -0700

    Update warning and info quill blot colours

commit 7a0fcc37916b5106d14d1062ad0f4563590717df
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 14:37:22 2025 -0700

    Refactor save event handling and enhance ICE edits functionality

    - Updated save event handling in `extension.ts` to improve readability.
    - Added logic to `codexCellEditorMessagehandling.ts` for recording ICE edits only when content changes.
    - Introduced a new method in `codexDocument.ts` to retrieve cell content.
    - Implemented HTML stripping and diffing in `iceEdits.ts` for better edit tracking.
    - Registered a new command for recording ICE edits in `registerSmartEditCommands.ts`.
    - Enhanced text tokenization in `nlpUtils.ts` to handle HTML whitespace characters.

    These changes improve the overall functionality and maintainability of the codebase, particularly in relation to ICE edits and document save events.

commit 225afbdbca0e01a11be800cead7525972a6fc579
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 10:44:52 2025 -0700

    Initial ICE edits functionality

commit 7ab9bdb098577ca1100f422715d97d497c5af255
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Jan 14 11:53:21 2025 -0500

    fix webview type and config issues

commit c3e74438500617eb257922ccec4fe68df38379d1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Jan 14 10:54:50 2025 -0500

    add chatview back

commit 8513a5583259dbe3ceb6efd3a022c85c5e9012a9
Merge: e9a7238 cfff431
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 09:30:53 2025 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit e9a7238b8d7e84637298f23e6561c45f229247ec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 14 08:53:01 2025 -0700

    Cleanup

commit cfff431bf87408b393201e5e7b633d9462a12664
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Jan 13 14:59:25 2025 -0500

     remove the unique id from the project name if it exists for project list

commit bc354593e08ae667dc514149403db6c47dc3ddb2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Jan 13 13:50:42 2025 -0500

    use project name instead of folder name when local project is show in list

commit ebc034c84133fc14d9eb15fabbc45b754da31fc9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 13 07:03:03 2025 -0700

    Enhance FileDropzone component with improved drag-and-drop functionality. Added event handlers for drag events and updated input handling for file selection. Refactored layout to ensure better user experience when selecting multiple files.

commit c89b15d1abe16a9830a19ccc5837d62054425d32
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 13 07:02:45 2025 -0700

    Enhance file search and project creation logic in TranslationImportTransaction and UsfmTranslationImportTransaction. Improved codex file name handling with regex replacements and added detailed logging for file searches. Refactored project creation to sanitize project names and streamline folder selection process.

commit 16167640bb51dc07b507155064a02b8ec61bb758
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 13 07:01:41 2025 -0700

    Refactor SmartEdits class to use vscode.Uri for file paths instead of string paths, improving path handling and consistency. Update ensureFileExists and file reading methods to utilize the new Uri structure.

commit 8ec79391570394f8331aebbaa3776f27027bf984
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Sun Jan 12 20:30:31 2025 -0700

    Update version to 0.1.8 in package.json and refine command titles for clarity in Translators Copilot section

commit 2f2306da90c46c40494c85028fa8e1ffd81e8f39
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 16:09:49 2025 -0700

    Don’t get webview to type-check src, types, etc.

commit 9ce812084a77d91ac2a051598822967b5daaea8d
Merge: 47d22da 92755bf
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 15:46:24 2025 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 47d22da422e70b8f72c9f3f11d601b2802801738
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 15:46:11 2025 -0700

    Refactor llmCompletion output formatting to remove HTML tags from target cell content and simplify output structure

commit 064e9dc250a165845099ff04be82f646adb10fbb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 15:46:04 2025 -0700

    Refactor file path handling in save events and transactions to use relative paths. Update commit messages and labels to improve clarity and consistency across the application.

commit 2dac144d7d95550e9a556f17f8b85a38e4d073d7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 15:45:12 2025 -0700

    Update GitLabProjectsList component to adjust height properties for better visibility of projects

commit 92755bffbe9e0f2151c8a46a8ba7749b61e829e2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 17:00:14 2025 -0500

    hide error if no remote is connected

commit 90ed39bfba44eb9765411bd45091c032f2472a18
Merge: 92dd779 d3413c5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 14:39:12 2025 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 92dd779cb108e6327985e427d008851387aecaed
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 14:38:57 2025 -0700

    Update version to 0.1.6 in package.json

commit aa35b15e4c2cc1819ce18a1ee45412a3a7d1f41a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 10 14:38:52 2025 -0700

    Refactor llmCompletion result formatting to remove unnecessary cell IDs from output

commit d3413c59564023bd5a16322f5be701b23a60aadc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 16:22:07 2025 -0500

    create unique project name that is sanitized for git lab

commit f5f965676ecfa739bbbde738b94160d503f2012c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 14:49:12 2025 -0500

    replace manual sync code with frontier.syncChanges command

commit cf52b9f2aa5367ae2eba3c9078f4fc505adf0e9d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 14:28:31 2025 -0500

    fix type error

commit 64a00c719f5a95b9b981f9df42e97c86ce9abcd2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 11:26:59 2025 -0500

    fix async issue when loading workspace with no auth extension

commit 2a88272ff91b4b24cb898a8e607d6f0e68102c5f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 01:21:34 2025 -0500

    close statup flow after loging in if the project is setup

commit bbf38b867623baca18325fa7ac3a52db57b5caea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 01:10:59 2025 -0500

    fix issues in startup flow

commit a25948d091272e7b4ab9a7060677becd7cb9390f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 00:30:30 2025 -0500

    ensure user sets up critical project details

commit 6ba734125eb843f83468be201dba2668d164fa9c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Jan 10 00:10:01 2025 -0500

    added project details component

commit 266d5f5d3e5732cf71bb5a25ddf2f4d426ec59c5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Jan 9 23:59:36 2025 -0500

    correctly show login step if not logged in

commit 3d7763befd81d37d5a89192e58f321b7803a7df9
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Jan 9 20:54:59 2025 -0500

    move state machine to provider

commit b13e6e09ed5290c35fdbb7cee58681a6c557e35b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Jan 9 15:04:46 2025 -0500

    start modifying startup flow

commit 5733e84415a4de242d62c8e0af5d599180264c00
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 17:15:20 2025 -0700

    Bump to 0.1.5

commit d85eeace0e7399eccfe8ea7c03ae3f98649fc6db
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 17:14:50 2025 -0700

    Enhance Copilot settings webview with instruction generation feature

    - Added functionality to generate linguistic instructions for translation between source and target languages.
    - Integrated LLM API call to fetch generated instructions based on user-defined parameters.
    - Updated webview content to include buttons for generating instructions in both workspace and user settings.
    - Improved handling of project language configurations for better context in instruction generation.

commit 03bd98619347616be0bec985845638245748a316
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 14:36:14 2025 -0700

    Refactor Copilot settings webview for improved user experience

    - Updated the handling of workspace and user system messages to ensure type safety.
    - Removed unnecessary console log statements for cleaner code.
    - Enhanced the webview content by adding a header for instructions and clarifying the descriptions for workspace and user settings.
    - Improved tab switching functionality for better user interaction.

commit 2d5d9665e9d71c0f9cef1c7ceeab1507a0aa90c3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Jan 7 14:07:11 2025 -0700

    Add system message editor for Copilot settings

    - Introduced a new webview panel for editing system messages in the Copilot settings.
    - Implemented functionality to save workspace and user-specific system messages.
    - Enhanced user interface with tabbed navigation for workspace and user settings.
    - Integrated the new editor into the project manager commands for easy access.

commit 68f2521631a4b572741b815b8f1de4804e7f5413
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 17:59:32 2025 -0700

    Add a planning doc

commit a676914b0e9a2d24047e83a8bcebe1d5a39775e9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 17:59:26 2025 -0700

    Fix test ts errors

commit 93ad687776359323c7c001c3eff16210546bf66b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:54:05 2025 -0700

    Use built in performance hooks

commit 0a15874c2f4ef7773ee0a112c8014a45b20de9cb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:36:05 2025 -0700

    Bump to 0.1.4

commit 46bc2a086df31d372fb731c7ea406ce32abea4e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Jan 6 15:35:40 2025 -0700

    Refactor Chatbot initialization and enhance SmartEdits file handling

    - Updated Chatbot class to initialize OpenAI instance in a separate method, retrieving LLM endpoint and auth token from the auth API if available.
    - Added ensureFileExists method in SmartEdits class to check for the existence of required files and create them if they do not exist.
    - Improved file reading logic to handle empty file cases gracefully across multiple methods in SmartEdits class.

commit 0143daa414af73a15be8ad6da3a2242cf93e1e55
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 20 13:23:50 2024 -0500

    fix webvtt import so spaces in file name are ignored and remove some dead code

commit 3736d2cbf2197f170eb7f26cde926c0fddeb5ffe
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 19 17:51:34 2024 -0500

    properly step to init step if a workspace is open but not initilized

commit c868e0f306189db41dc486843c8cbce5118a8835
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 18 13:02:45 2024 -0500

    fix statup flow so it show the correct steps if the auth extension is installed

commit 268e28e54b2c37ee6840487f2f3c9268730f7073
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 17:40:39 2024 -0500

    Update TypeScript configuration and VSCode launch settings: Remove test folder from exclusion list in tsconfig.json and eliminate web extension development argument in launch.json for cleaner setup.

commit 7c81387fb4e3763298c482b9237a80c96bcb3d9f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 17:00:09 2024 -0500

    Update webpack configuration: Add process/browser polyfill, set global node option, and define NODE_ENV for improved compatibility and environment management.

commit c7e079fa08424730562a6e1f63c228e30b844796
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 19 16:46:50 2024 -0500

    correctly add user as auth on for git comits

commit dd607fc7b25f21f1038d7655eef635469d748a3c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 19 13:13:49 2024 -0700

    a start on removing extra css

commit a95893ad3f4d13784771d79c0438bc917e433f6c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 19 13:06:06 2024 -0700

    fixed copy button in parallel search

commit 6814c3f69baf39091be09e79d994dcae021d7b61
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 08:16:38 2024 -0700

    Add benchmarking code

commit f4b51c5b5ca912583e8a82cacd5fe997220ecba3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:59:10 2024 -0700

    Bump to 0.1.3

commit cc5eda1b77046aaf56f6b54e6890eadfa1c2bc58
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:56:18 2024 -0700

    Use corpus marker to group navigation items

commit 16cf6299ff6c863f065168ddd1d657080b93fc89
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Dec 19 06:48:52 2024 -0700

    Drop old navigation; add a new one

commit b8df3850b701be03c877b35aee5d1089de855083
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 22:34:13 2024 -0700

    Minor type fix for v0.1.2

commit 73fec2732f345a7e554a77de4843cf23c52b1033
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:15:03 2024 -0700

    Bump to 0.1.2

commit 149ae03acd66cbb5c44dd4b677a1008449a08b19
Merge: a100f37 cc3ca77
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:14:14 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit a100f3721244b496920a4feb76219d654441b421
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 17:03:35 2024 -0700

    Update version to 0.1.2 and enhance API key description; comment out unused state store update logic in inlineCompletionsProvider.ts

commit 2d418dd4fdadc2d9f2f0a4787f330d5b925fbfc0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 17 16:52:18 2024 -0700

    Use custom auth-defined llm endpoint if available

commit cc3ca7790434775194d427eb8e4084a4c0b1376b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 16:43:52 2024 -0500

    Refactor llmCompletion function: Remove early return for no similar source cells and fix comment formatting for clarity.

commit a24e2662a40ca48dba22781b64ef92b9b27bf73a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 17 15:57:04 2024 -0500

    Ensure chat threads file check only occurs if workspace folders are present in CustomWebviewProvider constructor

commit 0b06069d3fb234b41d72bdc89acd1e4d630f815b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:44 2024 -0500

    Update version to 0.1.1 in package.json for release

commit 84a6dd188903220a4b5c7023dd45870074479dca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 18:03:18 2024 -0500

    Enhance password validation logic in LoginRegisterStep component to ensure confirmation check only occurs during registration.

commit b5eedbb49a97af2d8eb7bc54d3ddc991faa0195a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:26:59 2024 -0500

    Update version to 0.1.0 in package.json for release preparation

commit 02fcdcdcfb599d6e2daee93ea270240110d81b74
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 15:18:20 2024 -0500

    fix absolute path. Use generated local path instead

commit f5bce323d14af0aa2b4c3618f990e386952be6aa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:45:59 2024 -0500

    Refactor LoginRegisterStep component: Remove password validation during registration and adjust password strength color logic for improved clarity.

commit 5900b8f2e53322f664b6e0ceae5c3066755c1e76
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 13:30:42 2024 -0500

    Refactor LoginRegisterStep component: Introduce centerBumpValue for margin adjustments, update confirm password validation display, and change onChange to onInput for confirm password field.

commit cc3e453a65e7608ae269efb89a3ae1ce68518c27
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 12:12:27 2024 -0500

    pasword strength shown as popover

commit 331f1b7fddadd325510992e15d8440127731b9cc
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 16 11:37:13 2024 -0500

    add show pasword button to login and register

commit 4c11e2a22ba183c9f4f580937aa6fb807fa1a0ca
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 17:02:50 2024 -0500

    Refactor stageAndCommitAllAndSync function to remove workspaceFolder parameter and improve error handling; add syncProject command to project manager and UI for syncing projects.

commit 5cad490f820961405fe3a7cbe556a8ac5c1f695e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 15:07:51 2024 -0500

    fix compile errors

commit 22c498735eb6748fcdfcf1920762676fc2e11a6a
Merge: 3bdf889 64505b6
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:17 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 3bdf8899275bdc3cffaeed636867d5b8dc13b5fa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 12:53:05 2024 -0700

    Hide new chat in parallel passages for now

commit 64505b61cf95649130e1910e74e76b7b9bb255f1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 14:46:22 2024 -0500

    resurrect chat

commit ad7c6e99b47f43bc67f9994dda57adb6f8655784
Merge: eb50c13 4071c43
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:56:25 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit eb50c13eb645d217bc1f21df2fc0cf2b9731cdb7
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:53:25 2024 -0700

    Add fixme

commit 1243bc80008f3150b4b88d75509b605db8b618c4
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:44:32 2024 -0700

    Enhance llmCompletion function to filter out current cell ID from similar source cells. This prevents re-predicting and generating duplicate content from previous edits.

commit 957f0eac8713adba44b9dc376e33591b8924cbec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 13 10:42:26 2024 -0700

    Remove commented-out source control provider registration from registerProviders.ts

commit 4071c43811fdd8cbce63bf227dc0aaa95db89c10
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 13 12:41:55 2024 -0500

    rerevert source blocking changes

commit e35d394e564bc810d394d6bffa41b37b3e4714a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 12 21:04:35 2024 -0600

    fixed merge

commit 7c0af25c008342d1993a9d3185e0c56034e02836
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 15:54:52 2024 -0500

    remove place holder name

commit 5ca1f27fb50da35a35484c5d905ba41383ec3a87
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 12 10:30:25 2024 -0500

    user name and email now come from auth

commit 0e3191126183eb2a9e4c3ee28c0f2412c42338c3
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 11 11:55:49 2024 -0500

    Revert "Ensure source doesn't listen to matching codex updates"

    This reverts commit 182251e018b9022174b3917e75d99770c94f357b.

commit 182251e018b9022174b3917e75d99770c94f357b
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 10 10:47:18 2024 -0700

    Ensure source doesn't listen to matching codex updates

commit f09441055ed8f33706368286fbcd267cde3c29b0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:13:29 2024 -0500

    properly dispose of webview in startup flow

commit 5521a408669445575fb6fb786734c1e8e09c2173
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 9 13:12:56 2024 -0500

    If a file does not exist ignore it in the commit

commit 6a1c1c599118709ac28d795ead6eb904386a8dee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 9 11:09:01 2024 -0600

    updated global message type

commit f4bd30a4c332db347e10ac388df018565a11238b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 17:13:44 2024 -0500

    Refactor startup flow and metadata handling

    - Updated the extension initialization to conditionally show project overview based on authentication status.
    - Removed redundant checks for codex notebooks in the initialization phase.
    - Enhanced the startup flow to check for authentication before sending metadata responses.
    - Adjusted state transitions in the startup flow machine to prompt user for project initialization when creating an empty project.

commit 61e97621dceccaf2fd4fb5954eeeb7515c4626dc
Merge: 4dfe25c 639aef8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:33 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4dfe25cbc7937b9248c69de573232a97feb1a555
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Dec 6 12:24:26 2024 -0700

    avoid unnecessary ENOENT errors

commit 639aef8ae327052b132df8123609a76960d55f9b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:31:40 2024 -0500

    close startupflow if state reaches already working

commit 3089ba28180de3687df8ad979ea89adbb5fa22e1
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Dec 6 12:14:49 2024 -0500

    show init screen in startup flow

commit 79e20914d92e127a6d66bc59da053b02d00a5fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 23:36:29 2024 -0500

    feat: block git commiting if no remote

commit 3e1f76f89e0b4f0c3ca4ea7c7fe37172d5eb8fc2
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Dec 5 22:10:29 2024 -0500

    Use top level refrence for auth store and add password validation

commit af19c3f511bb06a6dbb5068659e547e621869f43
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 17:13:38 2024 -0600

    hide empty messages

commit 55b294b542ea7b964c39dd9f520a15e479405de4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 13:06:45 2024 -0600

    Chat can coninue after pinning verses

commit a8400180b74dd007cbe3b13d44df68702d219b6d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:23:07 2024 -0600

    better spacing

commit d8408d323435b17f86365ff1332eec997ffafbc9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:22:34 2024 -0600

    file save fix

commit e1c00822833a558b5dcf1dcbb5039c95051c5908
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 12:16:53 2024 -0600

    Chat can now pin on it's own

commit 8cabc60df9509872ab28fbaf363dcf7086f2e9eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:37:42 2024 -0600

    Global message with destination

commit 75400a7635e125f5de8b639f7181b47183d870b7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Dec 5 00:51:33 2024 -0600

    merge

commit ff7be46cf41c354f774835b4b22b9c9e04c69dc2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Dec 4 15:02:03 2024 -0600

    global provider

commit 65e73b467fe92c675d32c3d09be63c74d7b24905
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 22:27:47 2024 -0500

    add email to project management so we can commit

commit 0fe9ce94e88e57cc48cb19765a42d6fc654786b5
Merge: 326582b 6ef8072
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 13:27:32 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 326582bf83ba81f74048817020b4a9fd70135c75
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:58 2024 -0700

    Add mock classes and context creation for testing NotebookMetadataManager and TranslationTextImporter

    This commit introduces mock implementations of Memento, SecretStorage, and EnvironmentVariableCollection to facilitate testing of the NotebookMetadataManager and TranslationTextImporter. The changes include the creation of a `createMockContext` function to provide a consistent testing environment. Additionally, the usage of the singleton pattern for NotebookMetadataManager is reinforced in the test suites, ensuring proper initialization and state management during tests.

commit bb2d4a8bedba29eb95b64b09921e324eec2693c9
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Wed Dec 4 11:31:52 2024 -0700

    Refactor NotebookMetadataManager usage across multiple files to utilize the new getNotebookMetadataManager function, replacing direct instantiation with a singleton pattern. This change enhances consistency and reduces redundancy in metadata management. Additionally, minor adjustments made to comments for clarity.

commit 6ef807269412305d38e6bea782467c87111ab70e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:59:24 2024 -0500

    fix type errors and make git commit command

commit df5630a9730347b0fedb0c4453805a31e7166529
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 11:05:46 2024 -0500

    renamve test file

commit 3d5406dc33beaa77accc4af98ae5d13b6dee50c9
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Dec 4 08:49:54 2024 -0500

    fix message posting and add stage and commit util

commit aa0bde14d989e5c8438e0b6f1954e59442e24586
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Dec 3 16:48:51 2024 -0500

    init git when initing project

commit 4409656a4bc2b80b60c10fda723206f070e3bfec
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 14:20:07 2024 -0500

    show publication button only if repo has remote

commit 478917e456b6e5d72805be536d0c221742d39606
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:16:36 2024 -0700

    Fix import path

commit 5bf45734c192405f39e70b567ea1bb6b325d598d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:15:58 2024 -0700

    Use singleton pattern for NotebookMetadataManager

commit da95948c7353977768fa443a819f1ea3258c02e0
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:07:10 2024 -0700

    Ensure uppercase format for consistency

commit 56930abb92f4430bb1b40b89dc34843eb51f14bd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 23:04:01 2024 -0700

    Enhance error handling in UsfmSourceImportTransaction for file reading, decoding, and parsing. Added validation for book code format and chapter content, ensuring robust processing of USFM files. Improved error messages for better debugging and user feedback.

commit 1a7812e26c296fb203b029563930106783690287
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:48:53 2024 -0700

    Improve error handling and transaction processing in SourceUploadProvider

commit 8ab3a139be7393345c699ae101b0ed795ede87b5
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:36:43 2024 -0700

    Refactor SourceUploadProvider to support USFM file types

commit 6fb31b3d3242adc26d1baebbb8e53d87367434e3
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:31:00 2024 -0700

    Add UsfmTranslationImportTransaction class for importing and processing USFM translation files

commit 2b2d15445bf0a0c6d99490052c5e503b87be25ec
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:53 2024 -0700

    Add UsfmSourceImportTransaction class for USFM file import and processing

commit e109dfc727cf1ab9f1ae180e24c10956afbeca74
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 22:27:31 2024 -0700

    Enhance LLM completion by filtering similar source cells for overlap. Added tokenization to improve example selection and log dropped examples for better debugging.

commit 23adf482a52fcc6d7278a08dade445daa9c1a868
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:51:47 2024 -0500

    Reindex after importing a file

commit 22c2846a5be5787c2dd23e45c33666f88b916a47
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Dec 3 20:45:24 2024 -0500

    Hide all projects from project overview

    This functionality is now handled in the startup flow webview

commit d985070dd9fd7b1fce52de0ca3d66ec6806e4462
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:21:20 2024 -0600

    Revert "Chat enabled autocomplete (work in progress)"

    This reverts commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b.

commit 029c4c1af7165946971e8850d14879fb66254f99
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:48 2024 -0600

    Revert "some progress towards chatbot entry"

    This reverts commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd.

commit 0c361f1c000bab0dc07dc994242f27446ba22d8b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:45 2024 -0600

    Revert "chat tab as default"

    This reverts commit 13b62d2a54a4859a862a8b56d923850f8170e463.

commit 52f542ec2d4d0c00beca8a75d308db39f9ed03a1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Dec 3 11:20:38 2024 -0600

    Revert "fixed editing"

    This reverts commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9.

commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 16:04:22 2024 -0600

    fixed editing

commit 13b62d2a54a4859a862a8b56d923850f8170e463
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:46:00 2024 -0600

    chat tab as default

commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Dec 2 15:17:08 2024 -0600

    some progress towards chatbot entry

commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 16:45:35 2024 -0600

    Chat enabled autocomplete (work in progress)

commit 1bdf4f2b7dbd100212668191c44987178937e81f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Dec 2 10:40:25 2024 -0500

    move project create to a util and skip setup if project is already setup

commit a9288611a03a8e48fb1965290842cb355848409c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 29 10:32:30 2024 -0500

    fix types and styling

commit f8fcfedfc169543559adbc727b522673047b4a5b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:16:16 2024 -0500

    load local files if there is no auth

commit 95b33d747491b3e5543f0594934af2117632b884
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 12:07:07 2024 -0500

    users can now open a existing project from the start up flow

commit 308d669aaffa60c2b8980e3f9d967d8d88a9d39d
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 28 11:47:16 2024 -0500

    finish clone process in startup flow

commit 0c95b8e8ac2fd6da3b002b2f6d26b1984231ffaa
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 27 00:00:15 2024 -0500

    fix content security policy in startup flow provider

commit 82bba59aa29d3c2a0b46546c95cc40adbc6ea963
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 22:46:43 2024 -0500

    fetch list of projects in startup flow

commit 33fd4b0e7be17780bd13d4b13dcdba5ccf11f139
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 14:15:48 2024 -0500

    render project list

commit 6336ba6dd6cedac70f3a378cf7a0e18aafdf8703
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:46:16 2024 -0500

    list projects in project view

commit 1f81adb23b9d5cf46713a245b7fac7fb99e504f7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:43:59 2024 -0600

    much better apply button

commit 4ffaaea21bf6692d3ff4da55856b2ce9a45b352b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 27 13:42:09 2024 -0600

    fixed bug with old prompting

commit afc6b00175ecd12c7d539392d5c73fe01c2a07eb
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:07:36 2024 -0600

    chat menu opens by defualt

commit 3683b067ec14759b98426959892caaa834fa42ea
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 16:04:12 2024 -0600

    fixed blank message bug

commit 107b401502dc644988312226db179fe4f220b8a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:51:58 2024 -0600

    fixed some streaming problems

commit b2563854f5902bc9c0da7677edadf19bedd3b994
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:34:23 2024 -0600

    less radius

commit 8b5fb8c871f276c0f332250eb591e112be15e573
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:30:35 2024 -0600

    fixed styl

commit 722e43ca30e5b1b66119667b959e6676763020bf
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 26 15:25:19 2024 -0600

    feedback on suggested translations

commit 902a94680bd4a1e20d7bb69b4735af891b2d4498
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 13:01:44 2024 -0500

    fix preflight command names

commit ee77a7c61635dd2f66fe53321663bf26d6c8e6ad
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 26 12:20:45 2024 -0500

    skip workspace setup if one is open

commit d4a08c2448ace427b56f8e5aada5fd25454f1c4d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Tue Nov 26 08:45:53 2024 -0700

    Change default llm model; increment version

commit 5636e480085d498e4a8104a3f45cd3a1f53f5619
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:38:10 2024 -0600

    removed chat webview

commit 4f8b697893ae0641e12bd3b183e1d6d67d18ab50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 22:26:15 2024 -0600

    removed prompting

commit c71025165a082208f08c47044d8c515fbd8bc399
Merge: 40db83d 000c084
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:39 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 40db83d820b46563cd359d159ee37e1e058b181e
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:18:26 2024 -0700

    Clean up state sharing across activation, provider, webview

commit 78745f0567d5f14f4236f8093aa35d08fba7cbf2
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 21:04:39 2024 -0700

    Overhaul of startup webview

commit 000c0840408730cd61e8eafa223cb28cda5168a2
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 21:43:03 2024 -0600

    delete old chats

commit 5ebe8a519df84c22ca849a1cccbffa322d839cb5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:49:06 2024 -0600

    better alignment

commit 50a3c1c59294c626ca722ff39bcb864e7be57e87
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 20:45:45 2024 -0600

    slightly improved session management

commit 940b16dd180b92751c2fca7184c158016456ae7f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:21:08 2024 -0600

    loading and saving chat history

commit a75b59189c9b8476ca03ee5d45fdbbcc3645845f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 17:27:06 2024 -0600

    merge

commit aa692ce62642e451ae28257602e485fd717d5d8f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 25 16:56:06 2024 -0600

    removed ChatView

commit 6f0bafc636c33bd1c97ca8afbfbdf847e8739faa
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:44:54 2024 -0700

    Align preflight with startup state machine

commit 411ae7cda7867d0dcd536cdae10a449002c56f1d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 15:40:54 2024 -0700

    open startup flow using state machine logic

commit 084234398485b63791a66c6a89e6ba80a8120cdf
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:54:57 2024 -0700

    Handle test suite compile errors

commit 09463e61c522d49a9fa7170fdf680f9d99621b38
Merge: 4b22e1c 1d9d551
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:21 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 4b22e1c4d09027034f89ab8dfb4e610ac5696adb
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Mon Nov 25 14:15:18 2024 -0700

    fix build webviews command

commit 1d9d551db3424d0a80cf5ed93de414dc8aff0474
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 15:53:31 2024 -0500

    add startup flow

commit c0c15f1d87d9646fcfe8e4ded84b2a4f8396de25
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:22:17 2024 -0500

    revert type changes

commit d6a1b804625bc16398bad23e1c28f0609bdfb521
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:19:21 2024 -0500

    revert changes to source uploader webview

commit dfb56143ed169876fa9de312a66b1849005a5aa0
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:46 2024 -0500

    move logic to startup flow provider

commit 9749771a23422074b6447ec62183ccb353820450
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 13:12:28 2024 -0500

    revert SourceUploadProvider.ts

commit 2a7b9da01dd60a1489d09c1c81bd1dfa3b51ea30
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:32 2024 -0500

    add startup flow to build

commit bcfd8822b01b9f20a0b9cfa7313241e5ab8fbbdd
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:13 2024 -0500

    register startup flow

commit 27f48552ca561e026a7b32460001dfcd1c93bd5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Mon Nov 25 12:07:00 2024 -0500

    add start startup flow

commit 791cab17674f8a9adaeb4594e5dece9129bfd80b
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 13:39:01 2024 -0500

    add password confirmation and fix ui

commit 1f418fdc79d044180e0cba92884292711ce0deae
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:38:03 2024 -0500

    setup signup

commit aca437967f8201c2bb320fcb1bf69a667b4eef40
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 22 11:01:58 2024 -0500

    fixes to show auth step

commit 2be23ac631d86d965214e5a9d1c0aff3683b7534
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 15:55:49 2024 -0500

    work on showing auth in setup flow

commit d615679856af1cbbc760e28741b1ea3e2b74736c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 12:10:31 2024 -0500

    add check and change command names

commit 036f5f4f7cc9d733cbbdaa9152afea94e5c1ce9c
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 21 11:20:40 2024 -0500

    start auth flow in upload provider

commit 3e8b8bb943fe583ad3d74b9c8deaa5391691e0c1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:27:35 2024 -0600

    better video ui

commit 15695ec8253af9e5260033906e4f40ef7ff8b16d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:16:22 2024 -0600

    working video player

commit d3567a051800ad9d0a8b530d325d58085738f6c9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 21:15:50 2024 -0600

    bible project urls

commit 10efef06a54590908a2e64c41e9ec55e2c539e82
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 18:33:27 2024 -0600

    removed old tab

commit e87922df4ca39da7dd1b675dd7d4408c6bb573e4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 16:25:15 2024 -0500

    Added CodexCellDocument webview only update event _onDidChangeForWebview for proper revert functionality.

commit 99b9d69babcde4ba0c6f17014c31c2ae6e007e2f
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 15:18:28 2024 -0500

    Added watch for file change to reload.

commit 6d6b236bac0bbc5a30e3bd20dc8cffeba0afc9f1
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 15:26:31 2024 -0600

    edited user prompt

commit b887039bb2de370bda8b1e303e401cb0a39c8285
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 14:10:58 2024 -0600

    uses language config

commit 57f4ae1f33333043996f0c054a8447c963ed8dc8
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 13:57:39 2024 -0600

    better prompts

commit a5439914f6164a43c14ba47ceefb36510891acca
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 22 11:49:14 2024 -0700

    Disable workspace trust call for theia trust compatibility

    Cf. https://github.com/eclipse-theia/theia/issues/10472

commit b90b464ff386e4c6723a98571d58cc959d7a8ea4
Author: Joshua Lansford <Joshua@lansfords.com>
Date:   Fri Nov 22 10:27:30 2024 -0500

    Resolved compile errors in the test config target.

commit ca78a7bade0fe1571b48fb046fe6555a24a92a50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 01:55:14 2024 -0600

    better prompts, ui, searching, and saving (but that part is still a bit buggy

commit 09eec8a33bb6bcba66a60da7a61011bdb3833210
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:47:13 2024 -0600

    Chat now predicts the next prompts

commit 9e7a747690250bc2da560bccdcd737e21ee1db06
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 22 00:34:04 2024 -0600

    Removed Teach tab, more combined into the chat tab

commit 0fc51a04d068330efb570c9dd70b410075c3606a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 22:04:59 2024 -0600

    apply

commit 3cdd5adfc3ea9be486335bb3469a757a90b96832
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:45:29 2024 -0600

    more than one TranslationResponse cell, and more extensive regex

commit 037bad6fbe76d6198251048b67a76174978c6bf0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 21:20:43 2024 -0600

    toward a unified chat

commit 84f65c09b5dcf4dd04dcf9d7eb000e8c291a459f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 15:17:06 2024 -0600

    hide navigate button

commit a02439aedaeec9f717bad6763f85ef858df3bbde
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 15:11:24 2024 -0700

    Some copy updates

commit 57388274f8a471b217621be2e7f53f0b59962a7a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:45:05 2024 -0700

    Ensure navigation treeview is not mutating data

commit 3e152ab251d5b4f617befdc50b6c6741fa827ada
Merge: d2c0551 a6892ab
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:16 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit d2c0551bb41185ca0a7c170b5eb625ce13fc3184
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:12 2024 -0700

    Move command from top level

commit 1c7f9eaf0e7f842999e5b0e2e107d54c2a53f3df
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 21 13:30:04 2024 -0700

    Handle fatal error for missing file

commit a6892abecfce5852a9644c70a30eded5c6ba2d3d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 14:02:03 2024 -0600

    some progress towards a working apply button

commit 6449addebc74863b2508a407f99a6ed8b136642e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:04:28 2024 -0600

    less word breaking

commit 1c0e2ea351e8274b435e067e4f612264a71fd13a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 13:01:21 2024 -0600

    backtranslation word wrap

commit 4a54baed95d7ac8e528d22c65ad6cb4cdc9a01b6
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:49:12 2024 -0600

    smart edits now get memory context

commit f332f802baf70b88f7ba10fbbf8d118a25b5d065
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:17:51 2024 -0600

    fixed prompt

commit 54b0984d41f1029f84e79815782fe20c104b5984
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 21 12:13:25 2024 -0600

    rename to be more clear

commit 4dc337ee20db9a7ae49e8f0ff2da6b5c91ebbbee
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:14:53 2024 -0600

    search settings and pin all

commit ddab14a8b4d919d51f958ce18e327c313876db50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:04:59 2024 -0600

    more padding for checkbox

commit ec7987dc3914e61cbe3e7c850703081af9175a36
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 23:02:51 2024 -0600

    better index for searching

commit 5462ad730e7167ab7e6dd5b49b53aace519c7b92
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:08:24 2024 -0600

    clearer UI for context

commit aa34cbe48e4857c1d71cfce881ae9281654520d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:07:38 2024 -0600

    updated assistant about the new tab

commit d43794975fd0e4da39f8b7a4805e1eff2caf3018
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 22:01:41 2024 -0600

    some bug fixes

commit 3a7fbe424bd1b3a75085dc17c077e4a2c3deb303
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 21:32:50 2024 -0600

    much better memory management

commit f414808c4b837ba9353b2b27699202f6c6f14b57
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 20:23:51 2024 -0600

    unified styles for both tabs, better chat etc...

commit 49b5f88d445ee79b3b41e4cfb78200a1957bba75
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 18:34:50 2024 -0500

    remove builds with nothing to build

commit cf5da90733be6f738f48bf9b9aa7fbbf22f88e64
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:40:16 2024 -0600

    navigate to next cell

commit 91e25eeea2e0a833c4d71a5e051874463fb684a9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:45 2024 -0600

    somewhat more stable

commit 69acedff6572d624228fff761282793f44ceff7d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 16:32:05 2024 -0600

    new command for finding the next untranslated source text

commit 92bfaf3d1ac41033b5066cbbada9529de2014ba4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 15:01:25 2024 -0600

    skeleton loader and clearer UI

commit 3ab2112b2756a423e80d7a9dd61ddc72dc8cb94a
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:56:23 2024 -0600

    UI a bit better

commit 8529a05814fe234db4a171ff4d1ff7433f2869ab
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 14:47:18 2024 -0600

    working with untranslated verses

commit e0accd726d7c5cd21d0875c9c26c4e4f7bae7180
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:50:02 2024 -0600

    pickable target passage

commit 5c3ee120d25cbfb703fb1dbb8d7113c95524df1c
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 20 13:25:06 2024 -0600

    better UI for silver tab

commit b8bf1ee040aa66871840865eab91bc87563c5fb5
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:43:43 2024 -0500

    remove build commands that don’t have folders any more

commit 0a8589ceadc07212d78f64c06fed31c5b52c2f5e
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 16:14:49 2024 -0500

    remove unused code

commit cba5ce42dc900c3b8b664daff3ab6c33a3bfdd04
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 20 10:44:21 2024 -0500

    rename vars for calrity and return indecis to extesion for use

commit 6020e97fed9d61c19f7ab2d4d559d2d7b42fb9ea
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 17:05:04 2024 -0500

    index tsvs

commit ec3d1c8cf417e2701d1a7a0683a202c506c90472
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Tue Nov 19 16:17:36 2024 -0500

    init add logic for indexing tsvs

commit adc76961d82f085ff9727eb8db03135a523b0715
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:17:21 2024 -0600

    new tab and css file for chat input

commit f1f83f911262f0ecc8c7ddf2f76dd6fe2bf9132b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 20:16:43 2024 -0600

    start on silver path

commit 50da7998b13d1b8d07a1f0544fe9b0fdbf0a70f3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 16:26:49 2024 -0600

    better organization for codexCellProvider

commit 0b5943eb8a1784edd799a11422b11f8d5746da9b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 15:55:41 2024 -0600

    better memory management

commit 982c26d0122ed3a0bba88bc11344334dac041856
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:47:35 2024 -0600

    silver path start

commit e6f7538c95d60113c05c2b3bb18c93151641e207
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 14:20:07 2024 -0600

    improved system prompt

commit 80fee48c36827af4c77e92db6360df6dbd73d8d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 13:04:53 2024 -0600

    better look for quoted text

commit 24f86b857236061eeef7679e5dd6f75b728db4cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:52:52 2024 -0600

    fixed json bug

commit 306ffb68a072e7c1723bcd1504fa09780e5c70a5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Tue Nov 19 12:42:06 2024 -0600

    better prompts

commit c9f8a861b2152075961c7cf716de0b5d98d43bf4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 23:27:32 2024 -0600

    better backtranslations

commit 7f7d07d8d2d2f659928a9dfd9dfc0312f7946eaa
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 20:29:16 2024 -0600

    better ui for backtranslation

commit 55979af809e57b82745c6eff4ea4a1ec3b0739e0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 19:12:54 2024 -0600

    working backtranslation

commit 24cfc273edffef93efaf198651b4f10e77aae9a3
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 17:14:11 2024 -0600

    new command

commit 07101d5fb50d500f2a6034c258105248f4306ae5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 16:27:48 2024 -0600

    backtranslation

commit f6401b245f3b0c2a8820624e1a6c96df3965fc50
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Mon Nov 18 15:15:39 2024 -0600

    token saving context

commit 5e116e9453edb8770524886235e80f0f921aa773
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:33:27 2024 -0700

    better cellID display in chat

commit c9ec863cec12a683d35b60601cd719f376cc4a42
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 21:04:44 2024 -0700

    better system prompt

commit ee7588f5e932ba3aea70789e5c17978a844037b9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:57:09 2024 -0700

    working reload button

commit b5fd44734b5c2a2eb7eb443261728de4043373c5
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 20:30:42 2024 -0700

    fixed bug where dictionary didn't update until a refresh of the app

commit 95071c292f8a45c6b0e1cbaed4c047e427c13d53
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Sat Nov 16 11:54:58 2024 -0700

    some improvements to tabs

commit 05ded57fe0ab6042f1ab56b34023b2c78beb5694
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:14:16 2024 -0700

    small style change

commit 5d56a69b2a7aeab4c61f047b14d1aa400a0a3d09
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 19:07:08 2024 -0700

    better organization of parallel view components

commit fd2980a8148b338f02a08f452bffc6b8ac4b8fdc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:28:28 2024 -0700

    better styling

commit 1b8d2551876d3baaefc6a75e1259135d3c5bfc0f
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 17:22:17 2024 -0700

    codex help

commit cb4de766b77155a6c993f98ccebc43632be4eddd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 15:48:50 2024 -0700

    universal pinned prompts

commit e902bad3323b50e55e23c8da920ba3cc9c4df52d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 14:22:25 2024 -0700

    save generated prompts

commit 74aac37fc2d7f436eff14f24d93f436811dc9318
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 15:16:37 2024 -0500

    restore needed css file and reduce button height

commit a502d88bbe3000507112c8b2a408f1c1492690d0
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 13:05:07 2024 -0700

    better organization

commit fc11fd8774a94c37006e4c66119aee44219b7fb5
Merge: 1f470ad 0c9e677
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:18 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit 1f470ad012d02f48b2bfdeb253bc377106cde5cd
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 12:42:01 2024 -0700

    A bit more comments style cleanup

commit 0c9e6775a4ba5e3dea4136992223420289cc4488
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Fri Nov 15 14:40:57 2024 -0500

    allow user to change video player height

commit ee44a7248ab3753e300f80cca1697ceb5f2b3b4d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 12:08:34 2024 -0700

    components for prompts

commit 6f09e260fc48120116193e34cbe001a55b4255b4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Fri Nov 15 11:53:55 2024 -0700

    New component file

commit 719408684c760d8cacf947bf14ffb7571dcfe309
Merge: dc17e7a c75b57d
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Nov 15 11:47:59 2024 -0700

    Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

commit dc17e7acb4830e0206a27494a0110bf605a8440a
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 23:35:57 2024 -0500

    WIP: Add expandable comment threads

commit a09af37a12c018218327c7b9771075ec44e57ee8
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:29:28 2024 -0500

    Tighten up some styles

commit ed39dbbf1adaff4d3c7af1628ec6af37a5f6d622
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:22:16 2024 -0500

    Add icons to comment tabs

commit ea0cc154f48d808a8e309f050e3e03a5a7113360
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 22:05:56 2024 -0500

    Add tabs to comments view

commit 12303ddbffee26a2e55cf0e4e0ff46bc826e4817
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Thu Nov 14 21:51:30 2024 -0500

    Update comments view styles

commit c75b57df8eb77feb1d4aa83666a4b7c61ebe6465
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 21:45:06 2024 -0500

    fix unsaved changes prompts

commit f0685d10004a53294361eafe82b3623fb9eaea9e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 19:35:33 2024 -0700

    pin verses from editor to parallel view

commit 7c53dc19b186a319eb61e73f4178b0d3b2d14c41
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:59:16 2024 -0700

    force activity bar open

commit adbb6ee1eae3a6432b0ed02651d3126a29196bd4
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 18:03:14 2024 -0700

    better source text

commit 025c0366be1eff44835c54ed1ca07fd9c39a85cc
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 17:18:17 2024 -0700

    show source text in editor

commit 4b745f827c5bad1ebd8e2a36f6047a47c0765eb9
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:57:00 2024 -0700

    don't show needless revisions

commit d0b3c7e270ca839b5b3fd919e450e86f873f1969
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:39:34 2024 -0700

    return void

commit 4ee7f30f58bd44a26fb153aa7125760ad5cffd5d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:35:54 2024 -0700

    third person was weird

commit 1bbb4a72fc2aa6f12a8f8bd07d03336f0424ba0d
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 16:23:33 2024 -0700

    better UI, and prompts

commit bf60e4b572ca667e6d795689fbf7b4d5a77aff33
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 15:43:21 2024 -0700

    much better chat in parallel view

commit 9647f6c16c0649d21aff00c47e292d4d44fb291b
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:59:36 2024 -0700

    better buffering (aka no buffering)

commit f95c348fc0240548610fb3f1643df0ce9e30fb19
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:50:37 2024 -0700

    Way more consistent smart edits that don't magically vanish

commit bd157a18e8608673a0ab1870bff9a39ae3d157cd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:37:22 2024 -0700

    removed buggy cellChanged toggle

commit f83aa5633c2a604e3f6229751c265e4ad0d9b469
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 14:06:56 2024 -0700

    less padding

commit 72e758384d70b79561c1ff46f370e8c118cef8da
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 16:03:12 2024 -0500

    webvtt filter out cells with no timestamps

commit 35dd7ad581b10639fecbd1919a465fead84a4153
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:52:59 2024 -0700

    save button

commit 95150e9589a0fb61b117eade6a26852f4a5bc0a7
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:28:27 2024 -0700

    Revert "fixed(ish) save button"

    This reverts commit 2dc417830df86959d77057ef9740d93dd68f9216.

commit a9169253cbc0efbdf2e0278db839e27dd6c7d933
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:27:09 2024 -0700

    Revert "Revert "allow user to add paratext cells above or below""

    This reverts commit c2f96bc60aad976c22d7ef2679f615c35916ad30.

commit c2f96bc60aad976c22d7ef2679f615c35916ad30
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:21:42 2024 -0700

    Revert "allow user to add paratext cells above or below"

    This reverts commit 459beea4c93788af0ecd5f361258630a7764455f.

commit 2dc417830df86959d77057ef9740d93dd68f9216
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 13:10:27 2024 -0700

    fixed(ish) save button

commit 459beea4c93788af0ecd5f361258630a7764455f
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 14:42:17 2024 -0500

    allow user to add paratext cells above or below

commit 0d8fdec3b385581ce124cf00a665d03994d4cc5e
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Thu Nov 14 12:03:28 2024 -0700

    hamburger menu

commit 654918290c8965b4de34a4258a913c8b56105868
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Thu Nov 14 11:39:27 2024 -0500

    fetch more spell check responces for better spell check results

commit ac17de15b031e9e4857bc704b5c1bc8593436e73
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 19:17:26 2024 -0700

    more search results

commit 9d3bf671a95754b5689fa022eae6f71b6754fa15
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 18:33:14 2024 -0700

    fixed autocomplete and dictionary buttons

commit 7c9c6483afdde181762d3c70069c1ef770cca22a
Author: Ben Scholtens <ben.scholtens@me.com>
Date:   Wed Nov 13 18:29:15 2024 -0500

    speed up spell checking by slowing it down

commit c0eca8af77c73d7251a38e69c685fa9f5b272c89
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:22:27 2024 -0700

    new UI for suggested prompts

commit ea9313eab138a8ac3df217f51f0b4e2c7aa6eebd
Author: dadukhankevin <danieljlosey@gmail.com>
Date:   Wed Nov 13 16:09:58 2024 -0700

    removed old style

commit 48fc1960fda56c08a007a0…
ryderwishart added a commit to genesis-ai-dev/codex-editor that referenced this issue Jan 17, 2025
commit bd5a9e593f45975a5bf4fe0293f2121e152834e2
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 17 13:49:05 2025 -0700

    Update quill, stop sanitizing special chars in Quill editor

commit 19f5f6a5593febac48fc20c5e0d278881d4fb4a6
Author: ryderwishart <ryderwishart@gmail.com>
Date:   Fri Jan 17 13:48:12 2025 -0700

    Squashed commit of the following:

    commit 4fad2cd6acd7eb904b0275a503608a995ca161c2
    Merge: e7e18d0 520a740
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 17 13:45:23 2025 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit e7e18d083055b1a5068d698fc360c8dfa4c81d43
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 17 13:41:21 2025 -0700

        Bump to 0.1.11

    commit c7538b3c23e698c6a2856ef9a8674eef89765399
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 17 13:40:54 2025 -0700

        Update Quill dependency and enhance clipboard handling in CodexCellEditor

        - Bumped Quill version from 2.0.2 to 2.0.3 in package.json.
        - Added a custom clipboard handler in Editor.tsx to track unsaved changes during pasting.
        - Removed unused PlainClipboard module to streamline code.
        - Updated QuillSpellChecker to emit text-change events without special character filtering.

        These changes improve the functionality and performance of the text editor component.

    commit 576daee225f01cc674e7ef44daf4de45328a6b11
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 17 12:58:16 2025 -0700

        Clean up logs

    commit 520a7404fc063d24a9d7909cf24ab013fe59bf22
    Author: TimRl <tim.rahhal@gmail.com>
    Date:   Fri Jan 17 10:31:59 2025 -0700

        Update package dependencies and build scripts

        - Added `xstate` dependency to the main `package.json` for state management.
        - Updated build scripts in `webviews/codex-webviews/package.json` to use `cross-env` for better cross-platform compatibility.

        These changes enhance the project's dependency management and improve the build process across different environments.

    commit d16d35031e1175462c49d3430fde837779e3e456
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Jan 15 19:47:58 2025 -0700

        Bump to 0.1.10

    commit 41554dae4cf2bc0577f9c319a5aa3810353bbe68
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Jan 15 13:44:48 2025 -0700

        Clean up generate bible cell labels

    commit 37cbcd3c34d87f119beb9ea150fb7a5bc3879913
    Merge: 2b0de09 3816123
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Jan 15 11:01:19 2025 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit 2b0de093f9ca6f0418a6683dae03be80de2a7343
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Jan 15 11:01:10 2025 -0700

        Add cellLabel property to various transactions and tests

        - Introduced cellLabel property in CodexCellEditor and CodexCellEditorProvider tests to enhance cell identification.
        - Updated DownloadBibleTransaction, UsfmSourceImportTransaction, and UsfmTranslationImportTransaction to include cellLabel derived from IDs.
        - Modified utils and validation files to support cellLabel in cell data structures.
        - Adjusted CellList component to handle default cellLabel values.

        These changes improve the clarity and usability of cell data across the application.

    commit b72bd5aee4aa3c959ecbdfce408b3b6835f0ae35
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Jan 15 10:58:20 2025 -0700

        Ensure smart edits can be rejected

    commit 3816123404e69417881a8a203156f46583222485
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Jan 15 12:47:10 2025 -0500

        fix error where paragraph tags got saved back into the file

    commit d48eb97f03a9b9599f3050a918d5fb6c02c6d04a
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Jan 15 10:39:27 2025 -0700

        Save complete edit history

    commit ac78acdc1bdfe73244a1a9e2407a62b3601c87a9
    Merge: c1e964d 5f30f24
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Jan 15 10:11:31 2025 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit c1e964d4008f1fd42eff126af52db2934e25f14b
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Jan 15 10:11:23 2025 -0700

        Enable rejecting ice edits

    commit b413839524eb2057362bb761d79b73b111198377
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Jan 15 09:22:46 2025 -0700

        Enhance ICE edits functionality and improve command handling

        - Updated `getIceEdits` to return detailed suggestions with left and right tokens.
        - Improved logging for ICE edits retrieval and rejection processes.
        - Refactored command registration in `registerSmartEditCommands` to include logging of suggestions.
        - Modified `spellCheckText` command to accept `cellId` for better context handling.
        - Adjusted various components in the webview to ensure consistent type handling for `setContentBeingUpdated`.
        - Enhanced UI elements in the spellcheck popup for better user experience.

        These changes collectively improve the handling of ICE edits, enhance logging for debugging, and ensure better integration with the webview components.

    commit 5f30f24e29e576c9104c65aaac4302c33726b807
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Jan 15 10:34:16 2025 -0500

        ensure that ai edits are saved as value

    commit 29da69f9d516bbc6707c49bd3cf8e2b229274699
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Jan 15 09:38:38 2025 -0500

        use dirty state not dif to show save button

    commit d4447a70700326c09cb7923a5d9b77c78eb2d708
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Jan 14 16:07:42 2025 -0500

        add addHtmlToText to useQuillTextExtractor.ts

    commit 7c30f0026bc8642ac8c5fe3f5fdcd0970588a88e
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Jan 14 16:06:10 2025 -0500

        add html to llm completions

    commit aaf5a62729c55f6e761c6abef4f04c117cfe1d3f
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 14 17:45:18 2025 -0700

        Bump to 0.1.9 for hotfix

    commit d28e33fc23abf3c28a0c44e7a1fe21dfe7384a4f
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 14 16:42:35 2025 -0700

        Refactor DownloadBibleTransaction to improve code structure and update Bible content URL

        - Reformatted import statements for better readability.
        - Updated the URL for fetching Bible content to a specific commit for stability.
        - Removed unnecessary whitespace in error handling for improved clarity.

    commit 25175e4a24920abace985acf36b2a939d995cbad
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 14 16:27:01 2025 -0700

        Enable rejecting ICE edits

    commit 4ec047506f658851f3860ce265cf7f81fdb0e448
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 14 14:42:51 2025 -0700

        Update warning and info quill blot colours

    commit 7a0fcc37916b5106d14d1062ad0f4563590717df
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 14 14:37:22 2025 -0700

        Refactor save event handling and enhance ICE edits functionality

        - Updated save event handling in `extension.ts` to improve readability.
        - Added logic to `codexCellEditorMessagehandling.ts` for recording ICE edits only when content changes.
        - Introduced a new method in `codexDocument.ts` to retrieve cell content.
        - Implemented HTML stripping and diffing in `iceEdits.ts` for better edit tracking.
        - Registered a new command for recording ICE edits in `registerSmartEditCommands.ts`.
        - Enhanced text tokenization in `nlpUtils.ts` to handle HTML whitespace characters.

        These changes improve the overall functionality and maintainability of the codebase, particularly in relation to ICE edits and document save events.

    commit 225afbdbca0e01a11be800cead7525972a6fc579
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 14 10:44:52 2025 -0700

        Initial ICE edits functionality

    commit 7ab9bdb098577ca1100f422715d97d497c5af255
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Jan 14 11:53:21 2025 -0500

        fix webview type and config issues

    commit c3e74438500617eb257922ccec4fe68df38379d1
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Jan 14 10:54:50 2025 -0500

        add chatview back

    commit 8513a5583259dbe3ceb6efd3a022c85c5e9012a9
    Merge: e9a7238 cfff431
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 14 09:30:53 2025 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit e9a7238b8d7e84637298f23e6561c45f229247ec
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 14 08:53:01 2025 -0700

        Cleanup

    commit cfff431bf87408b393201e5e7b633d9462a12664
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Jan 13 14:59:25 2025 -0500

         remove the unique id from the project name if it exists for project list

    commit bc354593e08ae667dc514149403db6c47dc3ddb2
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Jan 13 13:50:42 2025 -0500

        use project name instead of folder name when local project is show in list

    commit ebc034c84133fc14d9eb15fabbc45b754da31fc9
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Jan 13 07:03:03 2025 -0700

        Enhance FileDropzone component with improved drag-and-drop functionality. Added event handlers for drag events and updated input handling for file selection. Refactored layout to ensure better user experience when selecting multiple files.

    commit c89b15d1abe16a9830a19ccc5837d62054425d32
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Jan 13 07:02:45 2025 -0700

        Enhance file search and project creation logic in TranslationImportTransaction and UsfmTranslationImportTransaction. Improved codex file name handling with regex replacements and added detailed logging for file searches. Refactored project creation to sanitize project names and streamline folder selection process.

    commit 16167640bb51dc07b507155064a02b8ec61bb758
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Jan 13 07:01:41 2025 -0700

        Refactor SmartEdits class to use vscode.Uri for file paths instead of string paths, improving path handling and consistency. Update ensureFileExists and file reading methods to utilize the new Uri structure.

    commit 8ec79391570394f8331aebbaa3776f27027bf984
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Sun Jan 12 20:30:31 2025 -0700

        Update version to 0.1.8 in package.json and refine command titles for clarity in Translators Copilot section

    commit 2f2306da90c46c40494c85028fa8e1ffd81e8f39
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 10 16:09:49 2025 -0700

        Don’t get webview to type-check src, types, etc.

    commit 9ce812084a77d91ac2a051598822967b5daaea8d
    Merge: 47d22da 92755bf
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 10 15:46:24 2025 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit 47d22da422e70b8f72c9f3f11d601b2802801738
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 10 15:46:11 2025 -0700

        Refactor llmCompletion output formatting to remove HTML tags from target cell content and simplify output structure

    commit 064e9dc250a165845099ff04be82f646adb10fbb
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 10 15:46:04 2025 -0700

        Refactor file path handling in save events and transactions to use relative paths. Update commit messages and labels to improve clarity and consistency across the application.

    commit 2dac144d7d95550e9a556f17f8b85a38e4d073d7
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 10 15:45:12 2025 -0700

        Update GitLabProjectsList component to adjust height properties for better visibility of projects

    commit 92755bffbe9e0f2151c8a46a8ba7749b61e829e2
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Jan 10 17:00:14 2025 -0500

        hide error if no remote is connected

    commit 90ed39bfba44eb9765411bd45091c032f2472a18
    Merge: 92dd779 d3413c5
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 10 14:39:12 2025 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit 92dd779cb108e6327985e427d008851387aecaed
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 10 14:38:57 2025 -0700

        Update version to 0.1.6 in package.json

    commit aa35b15e4c2cc1819ce18a1ee45412a3a7d1f41a
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Jan 10 14:38:52 2025 -0700

        Refactor llmCompletion result formatting to remove unnecessary cell IDs from output

    commit d3413c59564023bd5a16322f5be701b23a60aadc
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Jan 10 16:22:07 2025 -0500

        create unique project name that is sanitized for git lab

    commit f5f965676ecfa739bbbde738b94160d503f2012c
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Jan 10 14:49:12 2025 -0500

        replace manual sync code with frontier.syncChanges command

    commit cf52b9f2aa5367ae2eba3c9078f4fc505adf0e9d
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Jan 10 14:28:31 2025 -0500

        fix type error

    commit 64a00c719f5a95b9b981f9df42e97c86ce9abcd2
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Jan 10 11:26:59 2025 -0500

        fix async issue when loading workspace with no auth extension

    commit 2a88272ff91b4b24cb898a8e607d6f0e68102c5f
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Jan 10 01:21:34 2025 -0500

        close statup flow after loging in if the project is setup

    commit bbf38b867623baca18325fa7ac3a52db57b5caea
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Jan 10 01:10:59 2025 -0500

        fix issues in startup flow

    commit a25948d091272e7b4ab9a7060677becd7cb9390f
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Jan 10 00:30:30 2025 -0500

        ensure user sets up critical project details

    commit 6ba734125eb843f83468be201dba2668d164fa9c
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Jan 10 00:10:01 2025 -0500

        added project details component

    commit 266d5f5d3e5732cf71bb5a25ddf2f4d426ec59c5
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Jan 9 23:59:36 2025 -0500

        correctly show login step if not logged in

    commit 3d7763befd81d37d5a89192e58f321b7803a7df9
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Jan 9 20:54:59 2025 -0500

        move state machine to provider

    commit b13e6e09ed5290c35fdbb7cee58681a6c557e35b
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Jan 9 15:04:46 2025 -0500

        start modifying startup flow

    commit 5733e84415a4de242d62c8e0af5d599180264c00
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 7 17:15:20 2025 -0700

        Bump to 0.1.5

    commit d85eeace0e7399eccfe8ea7c03ae3f98649fc6db
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 7 17:14:50 2025 -0700

        Enhance Copilot settings webview with instruction generation feature

        - Added functionality to generate linguistic instructions for translation between source and target languages.
        - Integrated LLM API call to fetch generated instructions based on user-defined parameters.
        - Updated webview content to include buttons for generating instructions in both workspace and user settings.
        - Improved handling of project language configurations for better context in instruction generation.

    commit 03bd98619347616be0bec985845638245748a316
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 7 14:36:14 2025 -0700

        Refactor Copilot settings webview for improved user experience

        - Updated the handling of workspace and user system messages to ensure type safety.
        - Removed unnecessary console log statements for cleaner code.
        - Enhanced the webview content by adding a header for instructions and clarifying the descriptions for workspace and user settings.
        - Improved tab switching functionality for better user interaction.

    commit 2d5d9665e9d71c0f9cef1c7ceeab1507a0aa90c3
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Jan 7 14:07:11 2025 -0700

        Add system message editor for Copilot settings

        - Introduced a new webview panel for editing system messages in the Copilot settings.
        - Implemented functionality to save workspace and user-specific system messages.
        - Enhanced user interface with tabbed navigation for workspace and user settings.
        - Integrated the new editor into the project manager commands for easy access.

    commit 68f2521631a4b572741b815b8f1de4804e7f5413
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Jan 6 17:59:32 2025 -0700

        Add a planning doc

    commit a676914b0e9a2d24047e83a8bcebe1d5a39775e9
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Jan 6 17:59:26 2025 -0700

        Fix test ts errors

    commit 93ad687776359323c7c001c3eff16210546bf66b
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Jan 6 15:54:05 2025 -0700

        Use built in performance hooks

    commit 0a15874c2f4ef7773ee0a112c8014a45b20de9cb
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Jan 6 15:36:05 2025 -0700

        Bump to 0.1.4

    commit 46bc2a086df31d372fb731c7ea406ce32abea4e0
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Jan 6 15:35:40 2025 -0700

        Refactor Chatbot initialization and enhance SmartEdits file handling

        - Updated Chatbot class to initialize OpenAI instance in a separate method, retrieving LLM endpoint and auth token from the auth API if available.
        - Added ensureFileExists method in SmartEdits class to check for the existence of required files and create them if they do not exist.
        - Improved file reading logic to handle empty file cases gracefully across multiple methods in SmartEdits class.

    commit 0143daa414af73a15be8ad6da3a2242cf93e1e55
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Dec 20 13:23:50 2024 -0500

        fix webvtt import so spaces in file name are ignored and remove some dead code

    commit 3736d2cbf2197f170eb7f26cde926c0fddeb5ffe
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Dec 19 17:51:34 2024 -0500

        properly step to init step if a workspace is open but not initilized

    commit c868e0f306189db41dc486843c8cbce5118a8835
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Dec 18 13:02:45 2024 -0500

        fix statup flow so it show the correct steps if the auth extension is installed

    commit 268e28e54b2c37ee6840487f2f3c9268730f7073
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Dec 17 17:40:39 2024 -0500

        Update TypeScript configuration and VSCode launch settings: Remove test folder from exclusion list in tsconfig.json and eliminate web extension development argument in launch.json for cleaner setup.

    commit 7c81387fb4e3763298c482b9237a80c96bcb3d9f
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Dec 17 17:00:09 2024 -0500

        Update webpack configuration: Add process/browser polyfill, set global node option, and define NODE_ENV for improved compatibility and environment management.

    commit c7e079fa08424730562a6e1f63c228e30b844796
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Dec 19 16:46:50 2024 -0500

        correctly add user as auth on for git comits

    commit dd607fc7b25f21f1038d7655eef635469d748a3c
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Dec 19 13:13:49 2024 -0700

        a start on removing extra css

    commit a95893ad3f4d13784771d79c0438bc917e433f6c
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Dec 19 13:06:06 2024 -0700

        fixed copy button in parallel search

    commit 6814c3f69baf39091be09e79d994dcae021d7b61
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Dec 19 08:16:38 2024 -0700

        Add benchmarking code

    commit f4b51c5b5ca912583e8a82cacd5fe997220ecba3
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Dec 19 06:59:10 2024 -0700

        Bump to 0.1.3

    commit cc5eda1b77046aaf56f6b54e6890eadfa1c2bc58
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Dec 19 06:56:18 2024 -0700

        Use corpus marker to group navigation items

    commit 16cf6299ff6c863f065168ddd1d657080b93fc89
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Dec 19 06:48:52 2024 -0700

        Drop old navigation; add a new one

    commit b8df3850b701be03c877b35aee5d1089de855083
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 17 22:34:13 2024 -0700

        Minor type fix for v0.1.2

    commit 73fec2732f345a7e554a77de4843cf23c52b1033
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 17 17:15:03 2024 -0700

        Bump to 0.1.2

    commit 149ae03acd66cbb5c44dd4b677a1008449a08b19
    Merge: a100f37 cc3ca77
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 17 17:14:14 2024 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit a100f3721244b496920a4feb76219d654441b421
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 17 17:03:35 2024 -0700

        Update version to 0.1.2 and enhance API key description; comment out unused state store update logic in inlineCompletionsProvider.ts

    commit 2d418dd4fdadc2d9f2f0a4787f330d5b925fbfc0
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 17 16:52:18 2024 -0700

        Use custom auth-defined llm endpoint if available

    commit cc3ca7790434775194d427eb8e4084a4c0b1376b
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Dec 17 16:43:52 2024 -0500

        Refactor llmCompletion function: Remove early return for no similar source cells and fix comment formatting for clarity.

    commit a24e2662a40ca48dba22781b64ef92b9b27bf73a
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Dec 17 15:57:04 2024 -0500

        Ensure chat threads file check only occurs if workspace folders are present in CustomWebviewProvider constructor

    commit 0b06069d3fb234b41d72bdc89acd1e4d630f815b
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 16 18:03:44 2024 -0500

        Update version to 0.1.1 in package.json for release

    commit 84a6dd188903220a4b5c7023dd45870074479dca
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 16 18:03:18 2024 -0500

        Enhance password validation logic in LoginRegisterStep component to ensure confirmation check only occurs during registration.

    commit b5eedbb49a97af2d8eb7bc54d3ddc991faa0195a
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 16 15:26:59 2024 -0500

        Update version to 0.1.0 in package.json for release preparation

    commit 02fcdcdcfb599d6e2daee93ea270240110d81b74
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 16 15:18:20 2024 -0500

        fix absolute path. Use generated local path instead

    commit f5bce323d14af0aa2b4c3618f990e386952be6aa
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 16 13:45:59 2024 -0500

        Refactor LoginRegisterStep component: Remove password validation during registration and adjust password strength color logic for improved clarity.

    commit 5900b8f2e53322f664b6e0ceae5c3066755c1e76
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 16 13:30:42 2024 -0500

        Refactor LoginRegisterStep component: Introduce centerBumpValue for margin adjustments, update confirm password validation display, and change onChange to onInput for confirm password field.

    commit cc3e453a65e7608ae269efb89a3ae1ce68518c27
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 16 12:12:27 2024 -0500

        pasword strength shown as popover

    commit 331f1b7fddadd325510992e15d8440127731b9cc
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 16 11:37:13 2024 -0500

        add show pasword button to login and register

    commit 4c11e2a22ba183c9f4f580937aa6fb807fa1a0ca
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Dec 13 17:02:50 2024 -0500

        Refactor stageAndCommitAllAndSync function to remove workspaceFolder parameter and improve error handling; add syncProject command to project manager and UI for syncing projects.

    commit 5cad490f820961405fe3a7cbe556a8ac5c1f695e
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Dec 13 15:07:51 2024 -0500

        fix compile errors

    commit 22c498735eb6748fcdfcf1920762676fc2e11a6a
    Merge: 3bdf889 64505b6
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Dec 13 12:53:17 2024 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit 3bdf8899275bdc3cffaeed636867d5b8dc13b5fa
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Dec 13 12:53:05 2024 -0700

        Hide new chat in parallel passages for now

    commit 64505b61cf95649130e1910e74e76b7b9bb255f1
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Dec 13 14:46:22 2024 -0500

        resurrect chat

    commit ad7c6e99b47f43bc67f9994dda57adb6f8655784
    Merge: eb50c13 4071c43
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Dec 13 10:56:25 2024 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit eb50c13eb645d217bc1f21df2fc0cf2b9731cdb7
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Dec 13 10:53:25 2024 -0700

        Add fixme

    commit 1243bc80008f3150b4b88d75509b605db8b618c4
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Dec 13 10:44:32 2024 -0700

        Enhance llmCompletion function to filter out current cell ID from similar source cells. This prevents re-predicting and generating duplicate content from previous edits.

    commit 957f0eac8713adba44b9dc376e33591b8924cbec
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Dec 13 10:42:26 2024 -0700

        Remove commented-out source control provider registration from registerProviders.ts

    commit 4071c43811fdd8cbce63bf227dc0aaa95db89c10
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Dec 13 12:41:55 2024 -0500

        rerevert source blocking changes

    commit e35d394e564bc810d394d6bffa41b37b3e4714a7
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Dec 12 21:04:35 2024 -0600

        fixed merge

    commit 7c0af25c008342d1993a9d3185e0c56034e02836
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Dec 12 15:54:52 2024 -0500

        remove place holder name

    commit 5ca1f27fb50da35a35484c5d905ba41383ec3a87
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Dec 12 10:30:25 2024 -0500

        user name and email now come from auth

    commit 0e3191126183eb2a9e4c3ee28c0f2412c42338c3
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Dec 11 11:55:49 2024 -0500

        Revert "Ensure source doesn't listen to matching codex updates"

        This reverts commit 182251e018b9022174b3917e75d99770c94f357b.

    commit 182251e018b9022174b3917e75d99770c94f357b
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 10 10:47:18 2024 -0700

        Ensure source doesn't listen to matching codex updates

    commit f09441055ed8f33706368286fbcd267cde3c29b0
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 9 13:13:29 2024 -0500

        properly dispose of webview in startup flow

    commit 5521a408669445575fb6fb786734c1e8e09c2173
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 9 13:12:56 2024 -0500

        If a file does not exist ignore it in the commit

    commit 6a1c1c599118709ac28d795ead6eb904386a8dee
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Dec 9 11:09:01 2024 -0600

        updated global message type

    commit f4bd30a4c332db347e10ac388df018565a11238b
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Dec 6 17:13:44 2024 -0500

        Refactor startup flow and metadata handling

        - Updated the extension initialization to conditionally show project overview based on authentication status.
        - Removed redundant checks for codex notebooks in the initialization phase.
        - Enhanced the startup flow to check for authentication before sending metadata responses.
        - Adjusted state transitions in the startup flow machine to prompt user for project initialization when creating an empty project.

    commit 61e97621dceccaf2fd4fb5954eeeb7515c4626dc
    Merge: 4dfe25c 639aef8
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Dec 6 12:24:33 2024 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit 4dfe25cbc7937b9248c69de573232a97feb1a555
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Dec 6 12:24:26 2024 -0700

        avoid unnecessary ENOENT errors

    commit 639aef8ae327052b132df8123609a76960d55f9b
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Dec 6 12:31:40 2024 -0500

        close startupflow if state reaches already working

    commit 3089ba28180de3687df8ad979ea89adbb5fa22e1
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Dec 6 12:14:49 2024 -0500

        show init screen in startup flow

    commit 79e20914d92e127a6d66bc59da053b02d00a5fc2
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Dec 5 23:36:29 2024 -0500

        feat: block git commiting if no remote

    commit 3e1f76f89e0b4f0c3ca4ea7c7fe37172d5eb8fc2
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Dec 5 22:10:29 2024 -0500

        Use top level refrence for auth store and add password validation

    commit af19c3f511bb06a6dbb5068659e547e621869f43
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Dec 5 17:13:38 2024 -0600

        hide empty messages

    commit 55b294b542ea7b964c39dd9f520a15e479405de4
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Dec 5 13:06:45 2024 -0600

        Chat can coninue after pinning verses

    commit a8400180b74dd007cbe3b13d44df68702d219b6d
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Dec 5 12:23:07 2024 -0600

        better spacing

    commit d8408d323435b17f86365ff1332eec997ffafbc9
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Dec 5 12:22:34 2024 -0600

        file save fix

    commit e1c00822833a558b5dcf1dcbb5039c95051c5908
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Dec 5 12:16:53 2024 -0600

        Chat can now pin on it's own

    commit 8cabc60df9509872ab28fbaf363dcf7086f2e9eb
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Dec 5 00:37:42 2024 -0600

        Global message with destination

    commit 75400a7635e125f5de8b639f7181b47183d870b7
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Dec 5 00:51:33 2024 -0600

        merge

    commit ff7be46cf41c354f774835b4b22b9c9e04c69dc2
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Dec 4 15:02:03 2024 -0600

        global provider

    commit 65e73b467fe92c675d32c3d09be63c74d7b24905
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Dec 4 22:27:47 2024 -0500

        add email to project management so we can commit

    commit 0fe9ce94e88e57cc48cb19765a42d6fc654786b5
    Merge: 326582b 6ef8072
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Dec 4 13:27:32 2024 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit 326582bf83ba81f74048817020b4a9fd70135c75
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Dec 4 11:31:58 2024 -0700

        Add mock classes and context creation for testing NotebookMetadataManager and TranslationTextImporter

        This commit introduces mock implementations of Memento, SecretStorage, and EnvironmentVariableCollection to facilitate testing of the NotebookMetadataManager and TranslationTextImporter. The changes include the creation of a `createMockContext` function to provide a consistent testing environment. Additionally, the usage of the singleton pattern for NotebookMetadataManager is reinforced in the test suites, ensuring proper initialization and state management during tests.

    commit bb2d4a8bedba29eb95b64b09921e324eec2693c9
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Wed Dec 4 11:31:52 2024 -0700

        Refactor NotebookMetadataManager usage across multiple files to utilize the new getNotebookMetadataManager function, replacing direct instantiation with a singleton pattern. This change enhances consistency and reduces redundancy in metadata management. Additionally, minor adjustments made to comments for clarity.

    commit 6ef807269412305d38e6bea782467c87111ab70e
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Dec 4 11:59:24 2024 -0500

        fix type errors and make git commit command

    commit df5630a9730347b0fedb0c4453805a31e7166529
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Dec 4 11:05:46 2024 -0500

        renamve test file

    commit 3d5406dc33beaa77accc4af98ae5d13b6dee50c9
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Dec 4 08:49:54 2024 -0500

        fix message posting and add stage and commit util

    commit aa0bde14d989e5c8438e0b6f1954e59442e24586
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Dec 3 16:48:51 2024 -0500

        init git when initing project

    commit 4409656a4bc2b80b60c10fda723206f070e3bfec
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 2 14:20:07 2024 -0500

        show publication button only if repo has remote

    commit 478917e456b6e5d72805be536d0c221742d39606
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 3 23:16:36 2024 -0700

        Fix import path

    commit 5bf45734c192405f39e70b567ea1bb6b325d598d
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 3 23:15:58 2024 -0700

        Use singleton pattern for NotebookMetadataManager

    commit da95948c7353977768fa443a819f1ea3258c02e0
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 3 23:07:10 2024 -0700

        Ensure uppercase format for consistency

    commit 56930abb92f4430bb1b40b89dc34843eb51f14bd
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 3 23:04:01 2024 -0700

        Enhance error handling in UsfmSourceImportTransaction for file reading, decoding, and parsing. Added validation for book code format and chapter content, ensuring robust processing of USFM files. Improved error messages for better debugging and user feedback.

    commit 1a7812e26c296fb203b029563930106783690287
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 3 22:48:53 2024 -0700

        Improve error handling and transaction processing in SourceUploadProvider

    commit 8ab3a139be7393345c699ae101b0ed795ede87b5
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 3 22:36:43 2024 -0700

        Refactor SourceUploadProvider to support USFM file types

    commit 6fb31b3d3242adc26d1baebbb8e53d87367434e3
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 3 22:31:00 2024 -0700

        Add UsfmTranslationImportTransaction class for importing and processing USFM translation files

    commit 2b2d15445bf0a0c6d99490052c5e503b87be25ec
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 3 22:27:53 2024 -0700

        Add UsfmSourceImportTransaction class for USFM file import and processing

    commit e109dfc727cf1ab9f1ae180e24c10956afbeca74
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 3 22:27:31 2024 -0700

        Enhance LLM completion by filtering similar source cells for overlap. Added tokenization to improve example selection and log dropped examples for better debugging.

    commit 23adf482a52fcc6d7278a08dade445daa9c1a868
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 3 20:51:47 2024 -0500

        Reindex after importing a file

    commit 22c2846a5be5787c2dd23e45c33666f88b916a47
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Dec 3 20:45:24 2024 -0500

        Hide all projects from project overview

        This functionality is now handled in the startup flow webview

    commit d985070dd9fd7b1fce52de0ca3d66ec6806e4462
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Dec 3 11:21:20 2024 -0600

        Revert "Chat enabled autocomplete (work in progress)"

        This reverts commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b.

    commit 029c4c1af7165946971e8850d14879fb66254f99
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Dec 3 11:20:48 2024 -0600

        Revert "some progress towards chatbot entry"

        This reverts commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd.

    commit 0c361f1c000bab0dc07dc994242f27446ba22d8b
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Dec 3 11:20:45 2024 -0600

        Revert "chat tab as default"

        This reverts commit 13b62d2a54a4859a862a8b56d923850f8170e463.

    commit 52f542ec2d4d0c00beca8a75d308db39f9ed03a1
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Dec 3 11:20:38 2024 -0600

        Revert "fixed editing"

        This reverts commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9.

    commit 27452b9307b8b3ae66d8020619fe67d59f6bd2b9
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Dec 2 16:04:22 2024 -0600

        fixed editing

    commit 13b62d2a54a4859a862a8b56d923850f8170e463
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Dec 2 15:46:00 2024 -0600

        chat tab as default

    commit d7c3177efd2e2aa1a4f8d2280b3ad443052b87dd
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Dec 2 15:17:08 2024 -0600

        some progress towards chatbot entry

    commit 09112db341a4730c67ca0ed0f8c9faa5ccce101b
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 27 16:45:35 2024 -0600

        Chat enabled autocomplete (work in progress)

    commit 1bdf4f2b7dbd100212668191c44987178937e81f
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Dec 2 10:40:25 2024 -0500

        move project create to a util and skip setup if project is already setup

    commit a9288611a03a8e48fb1965290842cb355848409c
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Nov 29 10:32:30 2024 -0500

        fix types and styling

    commit f8fcfedfc169543559adbc727b522673047b4a5b
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Nov 28 12:16:16 2024 -0500

        load local files if there is no auth

    commit 95b33d747491b3e5543f0594934af2117632b884
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Nov 28 12:07:07 2024 -0500

        users can now open a existing project from the start up flow

    commit 308d669aaffa60c2b8980e3f9d967d8d88a9d39d
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Nov 28 11:47:16 2024 -0500

        finish clone process in startup flow

    commit 0c95b8e8ac2fd6da3b002b2f6d26b1984231ffaa
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Nov 27 00:00:15 2024 -0500

        fix content security policy in startup flow provider

    commit 82bba59aa29d3c2a0b46546c95cc40adbc6ea963
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Nov 26 22:46:43 2024 -0500

        fetch list of projects in startup flow

    commit 33fd4b0e7be17780bd13d4b13dcdba5ccf11f139
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Nov 26 14:15:48 2024 -0500

        render project list

    commit 6336ba6dd6cedac70f3a378cf7a0e18aafdf8703
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Nov 26 13:46:16 2024 -0500

        list projects in project view

    commit 1f81adb23b9d5cf46713a245b7fac7fb99e504f7
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 27 13:43:59 2024 -0600

        much better apply button

    commit 4ffaaea21bf6692d3ff4da55856b2ce9a45b352b
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 27 13:42:09 2024 -0600

        fixed bug with old prompting

    commit afc6b00175ecd12c7d539392d5c73fe01c2a07eb
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 26 16:07:36 2024 -0600

        chat menu opens by defualt

    commit 3683b067ec14759b98426959892caaa834fa42ea
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 26 16:04:12 2024 -0600

        fixed blank message bug

    commit 107b401502dc644988312226db179fe4f220b8a3
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 26 15:51:58 2024 -0600

        fixed some streaming problems

    commit b2563854f5902bc9c0da7677edadf19bedd3b994
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 26 15:34:23 2024 -0600

        less radius

    commit 8b5fb8c871f276c0f332250eb591e112be15e573
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 26 15:30:35 2024 -0600

        fixed styl

    commit 722e43ca30e5b1b66119667b959e6676763020bf
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 26 15:25:19 2024 -0600

        feedback on suggested translations

    commit 902a94680bd4a1e20d7bb69b4735af891b2d4498
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Nov 26 13:01:44 2024 -0500

        fix preflight command names

    commit ee77a7c61635dd2f66fe53321663bf26d6c8e6ad
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Nov 26 12:20:45 2024 -0500

        skip workspace setup if one is open

    commit d4a08c2448ace427b56f8e5aada5fd25454f1c4d
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Tue Nov 26 08:45:53 2024 -0700

        Change default llm model; increment version

    commit 5636e480085d498e4a8104a3f45cd3a1f53f5619
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 25 22:38:10 2024 -0600

        removed chat webview

    commit 4f8b697893ae0641e12bd3b183e1d6d67d18ab50
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 25 22:26:15 2024 -0600

        removed prompting

    commit c71025165a082208f08c47044d8c515fbd8bc399
    Merge: 40db83d 000c084
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Nov 25 21:18:39 2024 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit 40db83d820b46563cd359d159ee37e1e058b181e
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Nov 25 21:18:26 2024 -0700

        Clean up state sharing across activation, provider, webview

    commit 78745f0567d5f14f4236f8093aa35d08fba7cbf2
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Nov 25 21:04:39 2024 -0700

        Overhaul of startup webview

    commit 000c0840408730cd61e8eafa223cb28cda5168a2
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 25 21:43:03 2024 -0600

        delete old chats

    commit 5ebe8a519df84c22ca849a1cccbffa322d839cb5
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 25 20:49:06 2024 -0600

        better alignment

    commit 50a3c1c59294c626ca722ff39bcb864e7be57e87
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 25 20:45:45 2024 -0600

        slightly improved session management

    commit 940b16dd180b92751c2fca7184c158016456ae7f
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 25 17:21:08 2024 -0600

        loading and saving chat history

    commit a75b59189c9b8476ca03ee5d45fdbbcc3645845f
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 25 17:27:06 2024 -0600

        merge

    commit aa692ce62642e451ae28257602e485fd717d5d8f
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 25 16:56:06 2024 -0600

        removed ChatView

    commit 6f0bafc636c33bd1c97ca8afbfbdf847e8739faa
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Nov 25 15:44:54 2024 -0700

        Align preflight with startup state machine

    commit 411ae7cda7867d0dcd536cdae10a449002c56f1d
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Nov 25 15:40:54 2024 -0700

        open startup flow using state machine logic

    commit 084234398485b63791a66c6a89e6ba80a8120cdf
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Nov 25 14:54:57 2024 -0700

        Handle test suite compile errors

    commit 09463e61c522d49a9fa7170fdf680f9d99621b38
    Merge: 4b22e1c 1d9d551
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Nov 25 14:15:21 2024 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit 4b22e1c4d09027034f89ab8dfb4e610ac5696adb
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Mon Nov 25 14:15:18 2024 -0700

        fix build webviews command

    commit 1d9d551db3424d0a80cf5ed93de414dc8aff0474
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Nov 25 15:53:31 2024 -0500

        add startup flow

    commit c0c15f1d87d9646fcfe8e4ded84b2a4f8396de25
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Nov 25 13:22:17 2024 -0500

        revert type changes

    commit d6a1b804625bc16398bad23e1c28f0609bdfb521
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Nov 25 13:19:21 2024 -0500

        revert changes to source uploader webview

    commit dfb56143ed169876fa9de312a66b1849005a5aa0
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Nov 25 13:12:46 2024 -0500

        move logic to startup flow provider

    commit 9749771a23422074b6447ec62183ccb353820450
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Nov 25 13:12:28 2024 -0500

        revert SourceUploadProvider.ts

    commit 2a7b9da01dd60a1489d09c1c81bd1dfa3b51ea30
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Nov 25 12:07:32 2024 -0500

        add startup flow to build

    commit bcfd8822b01b9f20a0b9cfa7313241e5ab8fbbdd
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Nov 25 12:07:13 2024 -0500

        register startup flow

    commit 27f48552ca561e026a7b32460001dfcd1c93bd5e
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Mon Nov 25 12:07:00 2024 -0500

        add start startup flow

    commit 791cab17674f8a9adaeb4594e5dece9129bfd80b
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Nov 22 13:39:01 2024 -0500

        add password confirmation and fix ui

    commit 1f418fdc79d044180e0cba92884292711ce0deae
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Nov 22 11:38:03 2024 -0500

        setup signup

    commit aca437967f8201c2bb320fcb1bf69a667b4eef40
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Nov 22 11:01:58 2024 -0500

        fixes to show auth step

    commit 2be23ac631d86d965214e5a9d1c0aff3683b7534
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Nov 21 15:55:49 2024 -0500

        work on showing auth in setup flow

    commit d615679856af1cbbc760e28741b1ea3e2b74736c
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Nov 21 12:10:31 2024 -0500

        add check and change command names

    commit 036f5f4f7cc9d733cbbdaa9152afea94e5c1ce9c
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Thu Nov 21 11:20:40 2024 -0500

        start auth flow in upload provider

    commit 3e8b8bb943fe583ad3d74b9c8deaa5391691e0c1
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 22 21:27:35 2024 -0600

        better video ui

    commit 15695ec8253af9e5260033906e4f40ef7ff8b16d
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 22 21:16:22 2024 -0600

        working video player

    commit d3567a051800ad9d0a8b530d325d58085738f6c9
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 22 21:15:50 2024 -0600

        bible project urls

    commit 10efef06a54590908a2e64c41e9ec55e2c539e82
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 22 18:33:27 2024 -0600

        removed old tab

    commit e87922df4ca39da7dd1b675dd7d4408c6bb573e4
    Author: Joshua Lansford <Joshua@lansfords.com>
    Date:   Fri Nov 22 16:25:15 2024 -0500

        Added CodexCellDocument webview only update event _onDidChangeForWebview for proper revert functionality.

    commit 99b9d69babcde4ba0c6f17014c31c2ae6e007e2f
    Author: Joshua Lansford <Joshua@lansfords.com>
    Date:   Fri Nov 22 15:18:28 2024 -0500

        Added watch for file change to reload.

    commit 6d6b236bac0bbc5a30e3bd20dc8cffeba0afc9f1
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 22 15:26:31 2024 -0600

        edited user prompt

    commit b887039bb2de370bda8b1e303e401cb0a39c8285
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 22 14:10:58 2024 -0600

        uses language config

    commit 57f4ae1f33333043996f0c054a8447c963ed8dc8
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 22 13:57:39 2024 -0600

        better prompts

    commit a5439914f6164a43c14ba47ceefb36510891acca
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Nov 22 11:49:14 2024 -0700

        Disable workspace trust call for theia trust compatibility

        Cf. https://github.com/eclipse-theia/theia/issues/10472

    commit b90b464ff386e4c6723a98571d58cc959d7a8ea4
    Author: Joshua Lansford <Joshua@lansfords.com>
    Date:   Fri Nov 22 10:27:30 2024 -0500

        Resolved compile errors in the test config target.

    commit ca78a7bade0fe1571b48fb046fe6555a24a92a50
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 22 01:55:14 2024 -0600

        better prompts, ui, searching, and saving (but that part is still a bit buggy

    commit 09eec8a33bb6bcba66a60da7a61011bdb3833210
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 22 00:47:13 2024 -0600

        Chat now predicts the next prompts

    commit 9e7a747690250bc2da560bccdcd737e21ee1db06
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 22 00:34:04 2024 -0600

        Removed Teach tab, more combined into the chat tab

    commit 0fc51a04d068330efb570c9dd70b410075c3606a
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Nov 21 22:04:59 2024 -0600

        apply

    commit 3cdd5adfc3ea9be486335bb3469a757a90b96832
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Nov 21 21:45:29 2024 -0600

        more than one TranslationResponse cell, and more extensive regex

    commit 037bad6fbe76d6198251048b67a76174978c6bf0
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Nov 21 21:20:43 2024 -0600

        toward a unified chat

    commit 84f65c09b5dcf4dd04dcf9d7eb000e8c291a459f
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Nov 21 15:17:06 2024 -0600

        hide navigate button

    commit a02439aedaeec9f717bad6763f85ef858df3bbde
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Nov 21 15:11:24 2024 -0700

        Some copy updates

    commit 57388274f8a471b217621be2e7f53f0b59962a7a
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Nov 21 13:45:05 2024 -0700

        Ensure navigation treeview is not mutating data

    commit 3e152ab251d5b4f617befdc50b6c6741fa827ada
    Merge: d2c0551 a6892ab
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Nov 21 13:30:16 2024 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit d2c0551bb41185ca0a7c170b5eb625ce13fc3184
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Nov 21 13:30:12 2024 -0700

        Move command from top level

    commit 1c7f9eaf0e7f842999e5b0e2e107d54c2a53f3df
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Nov 21 13:30:04 2024 -0700

        Handle fatal error for missing file

    commit a6892abecfce5852a9644c70a30eded5c6ba2d3d
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Nov 21 14:02:03 2024 -0600

        some progress towards a working apply button

    commit 6449addebc74863b2508a407f99a6ed8b136642e
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Nov 21 13:04:28 2024 -0600

        less word breaking

    commit 1c0e2ea351e8274b435e067e4f612264a71fd13a
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Nov 21 13:01:21 2024 -0600

        backtranslation word wrap

    commit 4a54baed95d7ac8e528d22c65ad6cb4cdc9a01b6
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Nov 21 12:49:12 2024 -0600

        smart edits now get memory context

    commit f332f802baf70b88f7ba10fbbf8d118a25b5d065
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Nov 21 12:17:51 2024 -0600

        fixed prompt

    commit 54b0984d41f1029f84e79815782fe20c104b5984
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Thu Nov 21 12:13:25 2024 -0600

        rename to be more clear

    commit 4dc337ee20db9a7ae49e8f0ff2da6b5c91ebbbee
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 23:14:53 2024 -0600

        search settings and pin all

    commit ddab14a8b4d919d51f958ce18e327c313876db50
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 23:04:59 2024 -0600

        more padding for checkbox

    commit ec7987dc3914e61cbe3e7c850703081af9175a36
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 23:02:51 2024 -0600

        better index for searching

    commit 5462ad730e7167ab7e6dd5b49b53aace519c7b92
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 22:08:24 2024 -0600

        clearer UI for context

    commit aa34cbe48e4857c1d71cfce881ae9281654520d0
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 22:07:38 2024 -0600

        updated assistant about the new tab

    commit d43794975fd0e4da39f8b7a4805e1eff2caf3018
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 22:01:41 2024 -0600

        some bug fixes

    commit 3a7fbe424bd1b3a75085dc17c077e4a2c3deb303
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 21:32:50 2024 -0600

        much better memory management

    commit f414808c4b837ba9353b2b27699202f6c6f14b57
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 20:23:51 2024 -0600

        unified styles for both tabs, better chat etc...

    commit 49b5f88d445ee79b3b41e4cfb78200a1957bba75
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Nov 20 18:34:50 2024 -0500

        remove builds with nothing to build

    commit cf5da90733be6f738f48bf9b9aa7fbbf22f88e64
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 16:40:16 2024 -0600

        navigate to next cell

    commit 91e25eeea2e0a833c4d71a5e051874463fb684a9
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 16:32:45 2024 -0600

        somewhat more stable

    commit 69acedff6572d624228fff761282793f44ceff7d
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 16:32:05 2024 -0600

        new command for finding the next untranslated source text

    commit 92bfaf3d1ac41033b5066cbbada9529de2014ba4
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 15:01:25 2024 -0600

        skeleton loader and clearer UI

    commit 3ab2112b2756a423e80d7a9dd61ddc72dc8cb94a
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 14:56:23 2024 -0600

        UI a bit better

    commit 8529a05814fe234db4a171ff4d1ff7433f2869ab
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 14:47:18 2024 -0600

        working with untranslated verses

    commit e0accd726d7c5cd21d0875c9c26c4e4f7bae7180
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 13:50:02 2024 -0600

        pickable target passage

    commit 5c3ee120d25cbfb703fb1dbb8d7113c95524df1c
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Wed Nov 20 13:25:06 2024 -0600

        better UI for silver tab

    commit b8bf1ee040aa66871840865eab91bc87563c5fb5
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Nov 20 16:43:43 2024 -0500

        remove build commands that don’t have folders any more

    commit 0a8589ceadc07212d78f64c06fed31c5b52c2f5e
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Nov 20 16:14:49 2024 -0500

        remove unused code

    commit cba5ce42dc900c3b8b664daff3ab6c33a3bfdd04
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Wed Nov 20 10:44:21 2024 -0500

        rename vars for calrity and return indecis to extesion for use

    commit 6020e97fed9d61c19f7ab2d4d559d2d7b42fb9ea
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Nov 19 17:05:04 2024 -0500

        index tsvs

    commit ec3d1c8cf417e2701d1a7a0683a202c506c90472
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Tue Nov 19 16:17:36 2024 -0500

        init add logic for indexing tsvs

    commit adc76961d82f085ff9727eb8db03135a523b0715
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 19 20:17:21 2024 -0600

        new tab and css file for chat input

    commit f1f83f911262f0ecc8c7ddf2f76dd6fe2bf9132b
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 19 20:16:43 2024 -0600

        start on silver path

    commit 50da7998b13d1b8d07a1f0544fe9b0fdbf0a70f3
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 19 16:26:49 2024 -0600

        better organization for codexCellProvider

    commit 0b5943eb8a1784edd799a11422b11f8d5746da9b
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 19 15:55:41 2024 -0600

        better memory management

    commit 982c26d0122ed3a0bba88bc11344334dac041856
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 19 14:47:35 2024 -0600

        silver path start

    commit e6f7538c95d60113c05c2b3bb18c93151641e207
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 19 14:20:07 2024 -0600

        improved system prompt

    commit 80fee48c36827af4c77e92db6360df6dbd73d8d0
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 19 13:04:53 2024 -0600

        better look for quoted text

    commit 24f86b857236061eeef7679e5dd6f75b728db4cd
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 19 12:52:52 2024 -0600

        fixed json bug

    commit 306ffb68a072e7c1723bcd1504fa09780e5c70a5
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Tue Nov 19 12:42:06 2024 -0600

        better prompts

    commit c9f8a861b2152075961c7cf716de0b5d98d43bf4
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 18 23:27:32 2024 -0600

        better backtranslations

    commit 7f7d07d8d2d2f659928a9dfd9dfc0312f7946eaa
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 18 20:29:16 2024 -0600

        better ui for backtranslation

    commit 55979af809e57b82745c6eff4ea4a1ec3b0739e0
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 18 19:12:54 2024 -0600

        working backtranslation

    commit 24cfc273edffef93efaf198651b4f10e77aae9a3
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 18 17:14:11 2024 -0600

        new command

    commit 07101d5fb50d500f2a6034c258105248f4306ae5
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 18 16:27:48 2024 -0600

        backtranslation

    commit f6401b245f3b0c2a8820624e1a6c96df3965fc50
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Mon Nov 18 15:15:39 2024 -0600

        token saving context

    commit 5e116e9453edb8770524886235e80f0f921aa773
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Sat Nov 16 21:33:27 2024 -0700

        better cellID display in chat

    commit c9ec863cec12a683d35b60601cd719f376cc4a42
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Sat Nov 16 21:04:44 2024 -0700

        better system prompt

    commit ee7588f5e932ba3aea70789e5c17978a844037b9
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Sat Nov 16 20:57:09 2024 -0700

        working reload button

    commit b5fd44734b5c2a2eb7eb443261728de4043373c5
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Sat Nov 16 20:30:42 2024 -0700

        fixed bug where dictionary didn't update until a refresh of the app

    commit 95071c292f8a45c6b0e1cbaed4c047e427c13d53
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Sat Nov 16 11:54:58 2024 -0700

        some improvements to tabs

    commit 05ded57fe0ab6042f1ab56b34023b2c78beb5694
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 15 19:14:16 2024 -0700

        small style change

    commit 5d56a69b2a7aeab4c61f047b14d1aa400a0a3d09
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 15 19:07:08 2024 -0700

        better organization of parallel view components

    commit fd2980a8148b338f02a08f452bffc6b8ac4b8fdc
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 15 17:28:28 2024 -0700

        better styling

    commit 1b8d2551876d3baaefc6a75e1259135d3c5bfc0f
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 15 17:22:17 2024 -0700

        codex help

    commit cb4de766b77155a6c993f98ccebc43632be4eddd
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 15 15:48:50 2024 -0700

        universal pinned prompts

    commit e902bad3323b50e55e23c8da920ba3cc9c4df52d
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 15 14:22:25 2024 -0700

        save generated prompts

    commit 74aac37fc2d7f436eff14f24d93f436811dc9318
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Nov 15 15:16:37 2024 -0500

        restore needed css file and reduce button height

    commit a502d88bbe3000507112c8b2a408f1c1492690d0
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 15 13:05:07 2024 -0700

        better organization

    commit fc11fd8774a94c37006e4c66119aee44219b7fb5
    Merge: 1f470ad 0c9e677
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Nov 15 12:42:18 2024 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit 1f470ad012d02f48b2bfdeb253bc377106cde5cd
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Nov 15 12:42:01 2024 -0700

        A bit more comments style cleanup

    commit 0c9e6775a4ba5e3dea4136992223420289cc4488
    Author: Ben Scholtens <ben.scholtens@me.com>
    Date:   Fri Nov 15 14:40:57 2024 -0500

        allow user to change video player height

    commit ee44a7248ab3753e300f80cca1697ceb5f2b3b4d
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 15 12:08:34 2024 -0700

        components for prompts

    commit 6f09e260fc48120116193e34cbe001a55b4255b4
    Author: dadukhankevin <danieljlosey@gmail.com>
    Date:   Fri Nov 15 11:53:55 2024 -0700

        New component file

    commit 719408684c760d8cacf947bf14ffb7571dcfe309
    Merge: dc17e7a c75b57d
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Fri Nov 15 11:47:59 2024 -0700

        Merge branch 'main' of https://github.com/BenjaminScholtens/codex-editor

    commit dc17e7acb4830e0206a27494a0110bf605a8440a
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Nov 14 23:35:57 2024 -0500

        WIP: Add expandable comment threads

    commit a09af37a12c018218327c7b9771075ec44e57ee8
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Nov 14 22:29:28 2024 -0500

        Tighten up some styles

    commit ed39dbbf1adaff4d3c7af1628ec6af37a5f6d622
    Author: ryderwishart <ryderwishart@gmail.com>
    Date:   Thu Nov 14 22:22:16 2024 -0500

        Add icons to comment tabs

    commit ea0cc154f48d808a8e309f050e3e03a5a7113360
    Author: ryderwishart <ryde…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
vscode issues related to VSCode compatibility
Projects
None yet
Development

No branches or pull requests

3 participants