Louis
a56e58f69b
Merge pull request #5782 from ethanova/fix/no-more-code-line-number-selection
...
set line number userSelect to none so that code can be copied without line number
2025-07-18 10:08:46 +07:00
Louis
32966f9259
Merge pull request #5801 from menloresearch/release/v0.6.5
...
Sync release/0.6.5 into dev to start new development cycle
2025-07-17 22:22:32 +07:00
Ramon Perez
333cd3a694
Merge pull request #5799 from menloresearch/ramon/docs-v0.6.5
2025-07-17 20:26:04 +10:00
Ramon Perez
f606ba6906
Update settings.mdx
...
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
2025-07-17 20:24:58 +10:00
Ramon Perez
5d87dc8d32
Update 2025-07-17-responsive-ui.mdx
...
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
2025-07-17 20:24:48 +10:00
Ramon Perez
2f77c6ba9c
Addedd changelog, reorganized docs, added MCP examples, and updated different pages.
2025-07-17 19:49:00 +10:00
Louis
c2839794cf
fix: bump token.js to fix gemini provider base url issue
v0.6.5
2025-07-17 14:27:49 +07:00
Louis
b17c6f4eb6
Merge pull request #5791 from menloresearch/fix/fetch-models-from-custom-endpoint-crashes-app
...
fix: fetch models from custom provider causes app to crash
2025-07-16 16:01:19 +07:00
Louis
3eaa3424e1
fix: fetch models from custom provider causes app to crash
2025-07-16 15:36:45 +07:00
Ramon Perez
44082846d5
new tutorials, reorganization, and pages
2025-07-16 16:04:30 +10:00
Louis
646f40d664
chore: token-js version bump
2025-07-16 11:37:40 +07:00
Ethan Garber
a3b95f01de
add comment to justify style block
2025-07-15 21:14:24 -04:00
Ethan Garber
b0e66993fe
set line number userSelect to none so that code can be copied without line number
2025-07-15 21:10:22 -04:00
Louis
f083fafcfd
Merge pull request #5776 from menloresearch/fix/download-icon
...
🐛 fix: download icon when left panel close
2025-07-15 11:44:29 +07:00
Louis
08fe2c27fd
fix: translations
2025-07-15 11:11:00 +07:00
Nguyen Ngoc Minh
f674c786ba
Merge pull request #5778 from menloresearch/fix/revert-windows-installation-mode
...
fix: revert installationmode in nsis template
2025-07-15 11:02:42 +07:00
Faisal Amir
02c049653e
🐛 fix: revert back stat hover for three dots ( #5777 )
2025-07-15 10:34:02 +07:00
Minh141120
65bc24530f
fix: change installationmode in nsis template
2025-07-15 10:23:22 +07:00
Louis
8e85c2fd06
fix: bump llama.cpp b5857 on windows
2025-07-15 10:15:03 +07:00
Faisal Amir
55b68df956
🐛 fix: download icon when left panel close
2025-07-15 09:39:51 +07:00
Nguyen Ngoc Minh
0f7f2a7b38
Merge pull request #5745 from menloresearch/refactor/tauri-workflow
...
refactor: tauri workflow
2025-07-10 21:18:26 +07:00
Minh141120
94ada5969b
refactor: deprecate electron-checksum.py script
2025-07-10 15:05:51 +07:00
Minh141120
39256dad09
refactor: clean up tauri build workflow for macos
2025-07-10 15:05:21 +07:00
Minh141120
291a32759a
refactor: clean up tauri build workflow for windows
2025-07-10 15:03:41 +07:00
Minh141120
3790bd5753
refactor: clean up tauri build workflow for linux
2025-07-10 15:01:52 +07:00
Minh141120
0fd346181c
chore: enable active installation for window installer
2025-07-10 14:57:55 +07:00
Nguyen Ngoc Minh
5b01d0c196
Merge pull request #5732 from DistractionRectangle/refactor/linux-build-process
...
Refactor/linux build process
2025-07-10 13:03:01 +07:00
Louis
08342b5b00
Merge pull request #5742 from menloresearch/feat/bump-version-of-llamacpp
...
feat: bump version of llama.cpp - b5857
2025-07-10 12:51:36 +07:00
Louis
10bb8527bd
feat: bump llama.cpp b5857
2025-07-10 11:51:27 +07:00
D. Rect.
a668204cdc
refactor: pin linuxdeploy in make/yarn build process instead of github workflow
...
- pulls fix for #5463 out of the github release workflow and into
the make/yarn build process
- implements a wrapper script that pins linuxdeploy and injects
a new location for XDG_CACHE_HOME into the build pipeline,
allowing manipulating .cache/tauri without tainting the hosts
.cache
- adds ./.cache (project_root/.cache) to make clean and mise clean
task
- remove .devcontainer/buildAppImage.sh, obsolete now that extra
build steps have been removed from the github workflow and
incorporated in the normal build process
- remove appimagetool from .devcontainer/postCreateCommand.sh,
as it was only used by .devcontainer/buildAppImage.sh
2025-07-10 04:50:12 +00:00
D. Rect.
7d04d66a0b
refactor: pull appimage packaging steps out of github linux release workflow
...
- pulled appimage packaging steps out of release workflow into new
src-tauri/build-utils/buildAppImage.sh
- cleaned up yarn scripts:
- moved multi platform yarn scripts out of yarn build:tauri:<platform>
into generic yarn build:tauri
- split yarn build:tauri:linux:win32 into separate yarn scripts so it's
clearer what is specific to which platform
- added src-tauri/build-utils/buildAppImage.sh to new yarn build:tauri:linux
yarn script
This is also a good entry point to add flatpak builds in the future.
Part of #5641
2025-07-10 04:50:12 +00:00
D. Rect.
4134917a45
refactor: split platform specific config out of tauri.conf.json
...
Allows for better per platform default config. Currently the
default serves windows/macos fine while it has to be tweaked
in order to build for linux
make build-tauri now successfully runs where it errored out before.
Appimages made with make alone however is incomplete as there are
still post processing steps in the github release workflow to bundle
additional resources.
- split platform specific config out of tauri.conf.json into auxiliary
platform specific config files, natively supported by tauri
- pull improved defaults out of template-tauri-build-linux-x64.yml
into new tauri.linux.conf.json
- fix tauri-build-linx-x64.yml to utilize new tauri.linux.conf.json
2025-07-10 04:50:12 +00:00
Louis
61cd33284d
Merge pull request #5579 from bob-ros2/de_de-i18n
...
Add language support locale de-DE Germany
2025-07-10 08:52:18 +07:00
Louis
46c95ebb97
feat: bump version of llama.cpp - b5833
2025-07-10 08:29:56 +07:00
Louis
9567bd9a49
Merge branch 'dev' into de_de-i18n
2025-07-08 16:42:32 +07:00
hiento09
d2d8778425
chore: disable coverage check for external contributor pr ( #5728 )
2025-07-08 16:36:38 +07:00
Bob Ros
e160339c7b
Merge branch 'dev' into de_de-i18n
2025-07-08 09:38:09 +02:00
Faisal Amir
60b7e6a081
🐛 fix: think tag auto expand like tool tag behavior ( #5727 )
2025-07-08 11:11:46 +07:00
Bob Ros
0a3185f88d
Merge branch 'dev' into de_de-i18n
2025-07-07 22:18:55 +02:00
Faisal Amir
42d4d48362
fix: broken hero image landing page website ( #5719 )
2025-07-07 14:06:59 +07:00
Louis
ccab7f9119
Merge pull request #5389 from STRRL/feat/identify-jan-on-openrouter
...
feat: identidy jan for openrouter
2025-07-07 12:51:55 +07:00
Louis
a2c59e9934
Merge pull request #5715 from menloresearch/release/v0.6.6
...
Merge Release/v0.6.6 into release 0.6.5
2025-07-07 11:43:04 +07:00
hiento09
641275ee79
chore: add coverage report comment ( #5716 )
2025-07-07 11:37:57 +07:00
hiento09
3287e8b300
chore: enable test coverage ( #5710 )
...
* chore: enable test coverage
2025-07-07 11:24:13 +07:00
Faisal Amir
977a8a5774
Update web-app/src/routes/settings/providers/index.tsx
...
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
2025-07-07 11:19:00 +07:00
Faisal Amir
1422d94fac
🐛 fix: make three dots default show 3 dots and can trigger with right click ( #5712 )
...
* 🐛 fix: default show 3 dots
* ✨ enhancement: enable resizable left panel (#5713 )
* ✨ enhancement: enable resizable left panel
* Update web-app/src/hooks/useLeftPanel.ts
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
---------
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
---------
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>
2025-07-07 11:14:43 +07:00
Louis
9696589e79
Merge pull request #5389 from STRRL/feat/identify-jan-on-openrouter
...
feat: identidy jan for openrouter
2025-07-07 09:32:46 +07:00
Louis
9975580497
Merge pull request #5358 from ethanova/allow-assistant-message-edits
2025-07-07 08:22:24 +07:00
Zhiqiang ZHOU
9ff3cbe63f
Merge remote-tracking branch 'upstream/dev' into feat/identify-jan-on-openrouter
2025-07-06 11:54:46 -07:00
Ethan Garber
5bf78a31d9
streaming content doesn't need to deal with edits so doesn't need updateMessage function
2025-07-05 21:41:29 -04:00