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

0.4.0 #49

Merged
merged 27 commits into from
Mar 14, 2024
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b2801b0
feat(settings): warn modal on using third parties
nicobrauchtgit Mar 11, 2024
25447db
fix(OpenAI onboarding): API key input updated immediately
nicobrauchtgit Mar 11, 2024
43464c3
feat(workflows): check for logs
nicobrauchtgit Mar 11, 2024
b414171
Merge branch 'main' into dev
nicobrauchtgit Mar 11, 2024
cebe8c3
Update console-logs.yml
nicobrauchtgit Mar 11, 2024
973a1bf
Merge branch 'main' into dev
nicobrauchtgit Mar 11, 2024
969a678
Update console-logs.yml
nicobrauchtgit Mar 11, 2024
090d810
Merge branch 'main' into dev
nicobrauchtgit Mar 11, 2024
3274be7
Update console-logs.yml
nicobrauchtgit Mar 11, 2024
8fcdda4
Merge branch 'main' into dev
nicobrauchtgit Mar 11, 2024
82594b8
Update console-logs.yml
nicobrauchtgit Mar 11, 2024
ada524a
Create create-check.js
nicobrauchtgit Mar 11, 2024
16c64ad
Merge branch 'main' into dev
nicobrauchtgit Mar 11, 2024
4f55097
refactor(lang): everything into en.json
Leo310 Mar 11, 2024
9f156ee
feat: toggle to autostart
Leo310 Mar 12, 2024
25d867d
fix(autostart): also init papa when autostart set to true
Leo310 Mar 13, 2024
55dc3a7
refactor(quick-settings): added sliders
Leo310 Mar 13, 2024
f9a690f
feat(settings): indicate wrong url or api key
nicobrauchtgit Mar 13, 2024
8af9bdf
feat: install set model
nicobrauchtgit Mar 13, 2024
58713aa
feat: cancel model download
nicobrauchtgit Mar 13, 2024
4881e93
fix(onboarding):choose embed model
nicobrauchtgit Mar 13, 2024
180cdd9
refactor(chat): message spacing
Leo310 Mar 14, 2024
97f20e7
refactor(settings): now disabled functionality
Leo310 Mar 14, 2024
306fc6a
feat: new Logo
Leo310 Mar 14, 2024
9a14470
fix(settings): api key, url error bg
nicobrauchtgit Mar 14, 2024
cd5936b
manifest version up
nicobrauchtgit Mar 14, 2024
b994f83
Merge branch 'main' into dev
nicobrauchtgit Mar 14, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(autostart): also init papa when autostart set to true
Leo310 committed Mar 13, 2024
commit 25d867d9d121ab2db5c51cefaf8d3e800ad1d23a
3 changes: 2 additions & 1 deletion src/components/Settings/Settings.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import TextComponent from '../base/Text.svelte';
import FFExcludeComponent from './FFExclude.svelte';
import { plugin, data } from '../../store';
import { plugin, data, papaState } from '../../store';
import { setIcon } from 'obsidian';
import SettingContainer from './SettingContainer.svelte';
import { LogLvl, Papa } from 'papa-ts';
@@ -56,6 +56,7 @@

const changeAutostart = () => {
$data.isAutostart = !$data.isAutostart;
if ($data.isAutostart && $papaState === 'uninitialized') $plugin.s2b.init();
$plugin.saveSettings();
};
</script>
4 changes: 2 additions & 2 deletions src/lang/en.json
Original file line number Diff line number Diff line change
@@ -97,7 +97,7 @@
"excludeff": "Exclude files and folders",
"excludeff_add": "Add",
"excludeff_delete": "Delete from exclude list",
"advanced": "Advanced Settigns",
"advanced": "Advanced Settings",
"clear": "Clear Plugin Data",
"clear_modal": {
"title": "Clear Plugin Data",
@@ -107,7 +107,7 @@
"autostart": "Autostart",
"debugging": "Debugging",
"langsmith_key": "Langsmith API Key",
"verbose": "Verbose",
"verbose": "Developer Console logging",
"openai": {
"description": "Incognito Mode is disabled. OpenAI is enabled.",
"api_key": "API Key",