EYHN
c822594882
feat(core): mode in query string ( #7904 )
2024-08-16 10:59:43 +00:00
EYHN
83716c2fd9
feat(core): share in workspace link ( #7897 )
...
ShareDocsService -> ShareDocsListService
ShareService -> ShareInfoService
(*new) ShareReaderService
`/share/:workspaceId/:docId` -> redirect to -> `/workspace/:workspaceId/:docId`
workspace loading process
1. find workspace in workspace list
2. (if not found) revalidate workspace list
3. (if still not found) try load share page
4. (if share page found) => share page
5. (if share page not found) => 404
6. (if workspace found) => workspace page
2024-08-16 09:12:18 +00:00
L-Sun
620d20710a
chore: bump bs ( #7899 )
...
Bump blocksuite from https://github.com/toeverything/blocksuite/pull/7934
## Bugfix
- https://github.com/toeverything/BlockSuite/pull/7985 @L-Sun
## Misc
- https://github.com/toeverything/BlockSuite/pull/7971 @L-Sun
- https://github.com/toeverything/BlockSuite/pull/7965 @doouding
2024-08-16 08:46:16 +00:00
CatsJuice
cfc367efe7
feat(component): add more customizable prop for radio-group with new story ( #7850 )
...
![CleanShot 2024-08-13 at 16.40.22@2x.png ](https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/LakojjjzZNf6ogjOVwKE/06a128c3-f0bb-47f9-babf-6d4eca2597d7.png )
2024-08-16 07:19:16 +00:00
pengx17
69c507fded
fix(electron): do not use async callback in onBeforeSendHeaders ( #7894 )
...
it seems using async callback for onBeforeSendHeaders may crash the app.
the main reason why it is async is to read the cookies from session.
fix AF-1172
2024-08-16 05:17:47 +00:00
pengx17
b57ce4646f
chore(electron): adjust log level ( #7887 )
2024-08-16 05:17:46 +00:00
Brooooooklyn
dba024d561
docs: update LICENSE description ( #7869 )
2024-08-15 14:29:07 +00:00
darkskygit
e26ba48a45
feat: update ingress health check ( #7888 )
2024-08-15 12:16:25 +00:00
forehalo
e53dde7944
test(server): all instance variants ( #7882 )
2024-08-15 10:01:54 +00:00
forehalo
624f3514fc
feat(server): make permission a standalone module ( #7880 )
2024-08-15 10:01:52 +00:00
donteatfriedrice
ba8958f39b
fix: chat block peek view input reset height ( #7884 )
...
[BS-1202](https://linear.app/affine-design/issue/BS-1202/ai-chat-block-输入大段内容发送后输入框-resize-问题 )
2024-08-15 08:08:00 +00:00
pengx17
9af0e53ae2
fix(electron): header button not working on linux ( #7883 )
...
tested locally on windows/linux(vm)
2024-08-15 04:39:47 +00:00
forehalo
5a2f93f035
chore(admin): disable ai settings ( #7877 )
2024-08-15 02:50:46 +00:00
forehalo
9192ac4420
fix(server): command line nestjs does not have http adapter ( #7876 )
2024-08-14 13:41:23 +00:00
liuyi
57449c1530
fix(server): redirect to setup page if not initialized ( #7875 )
2024-08-14 21:02:16 +08:00
EYHN
89537e6892
refactor(core): separate editor & doc mode ( #7873 )
...
doc.mode -> primaryMode
(*new) editor.mode
New Service:
editor service
Change Mode:
```
const editor = useService(EditorService).editor;
editor.setMode('page')
```
Change primary mode
```
const editor = useService(EditorService).editor;
editor.doc.setPrimaryMode('page')
```
2024-08-14 11:43:03 +00:00
EYHN
50948318e0
feat(core): use emoji as folder icon ( #7842 )
...
![CleanShot 2024-08-12 at 22.33.42.png](https://graphite-user-uploaded-assets-prod.s3.amazonaws.com/g3jz87HxbjOJpXV3FPT7/c0c1a196-be29-4e45-a28d-87a55d80fc9d.png )
2024-08-14 10:35:22 +00:00
EYHN
0504d0b0ff
feat(core): init feature flag service ( #7856 )
2024-08-14 10:35:21 +00:00
darkskygit
339c39c1ec
feat: improve prompt management ( #7853 )
2024-08-14 08:38:36 +00:00
forehalo
cd3924b8fc
Revert "fix(server): redirect to setup page if not initialized ( #7871 )"
...
This reverts commit 42b5ef7a8b
.
2024-08-14 16:37:52 +08:00
liuyi
42b5ef7a8b
fix(server): redirect to setup page if not initialized ( #7871 )
2024-08-14 08:05:55 +00:00
donteatfriedrice
ad42418089
fix: add hover enter delay for ask ai button ( #7872 )
...
[AF-1075](https://linear.app/affine-design/issue/AF-1075/双击选中内容的时候,如果-toolbar-出现在内容上方,ai-action-会自动展开 )
2024-08-14 07:27:17 +00:00
forehalo
99e70c91e8
perf(core): avoid page init when only id required ( #7867 )
2024-08-14 05:22:18 +00:00
doouding
05ac3dbdcb
feat: bump bs ( #7866 )
2024-08-14 04:42:20 +00:00
JimmFly
994b539507
fix(admin): user form not dynamically updating as expected ( #7858 )
...
- Fixed the issue that a certain feature must be enabled when creating a user
- Fixed the issue that the modified content was not reset to the default content when exiting the user form without saving after modification
- Fixed the issue that the content did not switch as expected when switching user forms of different users
https://github.com/user-attachments/assets/02567021-9342-4ed1-be77-3bdcbb3d86ab
2024-08-14 04:28:15 +00:00
pengx17
d5edadabe6
fix(electron): cmd+num not working on mac ( #7865 )
...
fix AF-1248
hidden menu group + acceleratorWorksWhenHidden does not work on mac
2024-08-14 04:14:16 +00:00
JimmFly
05247bb24e
fix(admin): frequent query requests in the search ( #7854 )
2024-08-14 03:49:45 +00:00
forehalo
f69f026ac3
fix(admin): avoid frequent refetch ( #7863 )
2024-08-14 03:34:41 +00:00
forehalo
015247345c
chore(admin): organize massive routes ( #7857 )
2024-08-14 03:34:38 +00:00
forehalo
0ba516866f
fix(server): change password with token should be public ( #7855 )
2024-08-14 03:34:35 +00:00
forehalo
7afba6b8b5
fix(server): prelude should load both local and remote config file ( #7852 )
2024-08-14 03:34:33 +00:00
renovate
08cc15a55c
chore: bump up oxlint version to v0.7.1 ( #7846 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [oxlint](https://oxc.rs ) ([source](https://togithub.com/oxc-project/oxc/tree/HEAD/npm/oxlint )) | [`0.7.0` -> `0.7.1`](https://renovatebot.com/diffs/npm/oxlint/0.7.0/0.7.1 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/oxlint/0.7.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/oxlint/0.7.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/oxlint/0.7.0/0.7.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/oxlint/0.7.0/0.7.1?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>oxc-project/oxc (oxlint)</summary>
### [`v0.7.1`](https://togithub.com/oxc-project/oxc/blob/HEAD/npm/oxlint/CHANGELOG.md#071---2024-08-12 )
[Compare Source](3ac02fd838...972492cc4d
)
##### Features
- [`cc922f4`](https://togithub.com/oxc-project/oxc/commit/cc922f4 ) vscode: Provide config's schema to oxlint config files ([#​4826](https://togithub.com/oxc-project/oxc/issues/4826 )) (Don Isaac)
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View the [repository job log](https://developer.mend.io/github/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yMC4xIiwidXBkYXRlZEluVmVyIjoiMzguMjAuMSIsInRhcmdldEJyYW5jaCI6ImNhbmFyeSIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->
2024-08-13 14:02:00 +00:00
DarkSky
24c34eb3fc
fix: admin panel schema ( #7851 )
2024-08-13 09:16:56 +00:00
JimmFly
ba5ba71f35
chore: add test for all collection and all tag ( #7687 )
2024-08-13 08:19:54 +00:00
pengx17
d4065fee78
fix(electron): adjust app-tabs-header styles ( #7849 )
2024-08-13 08:06:30 +00:00
pengx17
d86f7f41dc
fix: center peek support open in new tab ( #7848 )
2024-08-13 07:52:03 +00:00
liuyi
171a974904
fix(server): use timestamp with timezone ( #7847 )
2024-08-13 15:32:24 +08:00
forehalo
0ec1995add
fix(admin): organize admin panel ( #7840 )
2024-08-13 14:51:54 +08:00
JimmFly
6dea831d8a
fix(admin): handle error login status ( #7646 )
...
Fix unhandled error login status, modify style
https://github.com/user-attachments/assets/0b40807d-e17a-4d23-a168-4894adfa5998
2024-08-13 14:51:54 +08:00
JimmFly
b214003968
feat(admin): add prompt management page ( #7611 )
...
close AF-907
Supports online modification of prompt, but does not support custom ai key yet
![CleanShot 2024-07-29 at 22 12 39@2x](https://github.com/user-attachments/assets/c67ad0d0-3e5b-44ff-b7db-d07dd11c19e2 )
2024-08-13 14:51:54 +08:00
JimmFly
bf6e36de37
feat(admin): add server runtime config settings ( #7618 )
2024-08-13 14:51:31 +08:00
JimmFly
7f7c0519a0
feat(admin): add config page to admin ( #7619 )
2024-08-13 14:38:39 +08:00
liuyi
83a9beed83
fix(electron): app got deleted when auto update on windows ( #7820 )
2024-08-13 14:26:26 +08:00
EYHN
1db6b9fe3b
refactor(infra): remove setimmediate ( #7821 )
2024-08-13 14:25:33 +08:00
JimmFly
ccf225c8f9
feat(admin): add self-host setup and user management page ( #7537 )
2024-08-13 06:11:03 +00:00
Lye Hongtao
dc519348c5
feat: bump bs ( #7836 )
2024-08-13 14:05:49 +08:00
renovate
10f4eaf2bd
chore: bump up vitest-mock-extended version to v2 ( #7584 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vitest-mock-extended](https://togithub.com/eratio08/vitest-mock-extended ) | [`^1.3.1` -> `^2.0.0`](https://renovatebot.com/diffs/npm/vitest-mock-extended/1.3.2/2.0.0 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vitest-mock-extended/2.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vitest-mock-extended/2.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vitest-mock-extended/1.3.2/2.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vitest-mock-extended/1.3.2/2.0.0?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>eratio08/vitest-mock-extended (vitest-mock-extended)</summary>
### [`v2.0.0`](https://togithub.com/eratio08/vitest-mock-extended/releases/tag/v2.0.0 )
[Compare Source](https://togithub.com/eratio08/vitest-mock-extended/compare/v1.3.2...v2.0.0 )
##### chore
- Adjust package version to 2.0 ([b867078](b86707812b
))
##### BREAKING CHANGES
- Require at least vitest 2.0 as peer dependency
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View the [repository job log](https://developer.mend.io/github/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzguMCIsInVwZGF0ZWRJblZlciI6IjM4LjIwLjEiLCJ0YXJnZXRCcmFuY2giOiJjYW5hcnkiLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
2024-08-13 04:03:07 +00:00
renovate
d365494fef
chore: bump up vite-plugin-dts version to v4 ( #7762 )
...
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg )](https://renovatebot.com )
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [vite-plugin-dts](https://togithub.com/qmhc/vite-plugin-dts ) | [`3.9.1` -> `4.0.2`](https://renovatebot.com/diffs/npm/vite-plugin-dts/3.9.1/4.0.2 ) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite-plugin-dts/4.0.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite-plugin-dts/4.0.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite-plugin-dts/3.9.1/4.0.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite-plugin-dts/3.9.1/4.0.2?slim=true )](https://docs.renovatebot.com/merge-confidence/ ) |
---
### Release Notes
<details>
<summary>qmhc/vite-plugin-dts (vite-plugin-dts)</summary>
### [`v4.0.2`](https://togithub.com/qmhc/vite-plugin-dts/blob/HEAD/CHANGELOG.md#402-2024-08-09 )
[Compare Source](https://togithub.com/qmhc/vite-plugin-dts/compare/v4.0.1...v4.0.2 )
##### Bug Fixes
- ensure inserted index file be a module ([f93e98c](f93e98cd84
)), closes [#​365](https://togithub.com/qmhc/vite-plugin-dts/issues/365 )
### [`v4.0.1`](https://togithub.com/qmhc/vite-plugin-dts/blob/HEAD/CHANGELOG.md#401-2024-08-07 )
[Compare Source](https://togithub.com/qmhc/vite-plugin-dts/compare/v4.0.0...v4.0.1 )
##### Bug Fixes
- correctly match normal export ([589901f](589901fead
)), closes [#​362](https://togithub.com/qmhc/vite-plugin-dts/issues/362 )
### [`v4.0.0`](https://togithub.com/qmhc/vite-plugin-dts/blob/HEAD/CHANGELOG.md#400-2024-08-06 )
[Compare Source](https://togithub.com/qmhc/vite-plugin-dts/compare/v3.9.1...v4.0.0 )
##### Bug Fixes
- remove global types for vue declaration files ([e873107](e8731077f3
)), closes [#​354](https://togithub.com/qmhc/vite-plugin-dts/issues/354 )
- resolve module preserve to esnext for rollup ([710400a](710400a276
)), closes [#​358](https://togithub.com/qmhc/vite-plugin-dts/issues/358 )
- sync diff line to mappings after transform ([cd5ba32](cd5ba32148
)), closes [#​356](https://togithub.com/qmhc/vite-plugin-dts/issues/356 )
- typescript lib path resolution for rollup in monorepo ([#​360](https://togithub.com/qmhc/vite-plugin-dts/issues/360 )) ([da4af65](da4af6542e
))
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box
---
This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/ ). View the [repository job log](https://developer.mend.io/github/toeverything/AFFiNE ).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xOC4xNyIsInVwZGF0ZWRJblZlciI6IjM4LjIwLjEiLCJ0YXJnZXRCcmFuY2giOiJjYW5hcnkiLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19-->
2024-08-13 03:48:23 +00:00
forehalo
69c64b2fc2
fix(core): checkout event ( #7844 )
2024-08-13 03:35:38 +00:00
forehalo
dc41ffbe2f
chore(core): enable mixpanel ignore_dnt flag ( #7841 )
2024-08-13 03:35:37 +00:00