diff --git a/.eslintrc.js b/.eslintrc.js index 6aef11686..6e926dee9 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -12,7 +12,7 @@ module.exports = { overrides: [ { // Server-side files (plus this configuration file) - files: ['src/**/*.js', './*.js'], + files: ['src/**/*.js', './*.js', 'plugins/**/*.js'], env: { node: true, }, diff --git a/.gitignore b/.gitignore index de17c931f..d82301d8f 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,4 @@ access.log /vectors/ /cache/ public/css/user.css +/plugins/ diff --git a/default/config.yaml b/default/config.yaml index b6e52f834..fd0be655c 100644 --- a/default/config.yaml +++ b/default/config.yaml @@ -58,3 +58,5 @@ openai: deepl: # Available options: default, more, less, prefer_more, prefer_less formality: default +# -- SERVER PLUGIN CONFIGURATION -- +enableServerPlugins: false diff --git a/plugins/.gitkeep b/plugins/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/public/css/mobile-styles.css b/public/css/mobile-styles.css index d62534876..ebcd5eda2 100644 --- a/public/css/mobile-styles.css +++ b/public/css/mobile-styles.css @@ -1,5 +1,9 @@ /*will apply to anything 1000px or less. this catches ipads, horizontal phones, and vertical phones)*/ @media screen and (max-width: 1000px) { + #send_form.compact #leftSendForm, #send_form.compact #rightSendForm { + flex-wrap: nowrap; + width: unset; + } .bg_button { font-size: 15px; diff --git a/public/index.html b/public/index.html index 00d4cc32f..c63249179 100644 --- a/public/index.html +++ b/public/index.html @@ -2797,9 +2797,12 @@
-
@@ -2993,6 +2996,10 @@ Message Token Count +