Downloads:
3,021
Downloads of v 0.11.0:
67
Last Update:
22 Dec 2023
Package Maintainer(s):
Software Author(s):
- Toeverything and AFFiNE contributors
Tags:
editor rust semantic affine collaborative knowledge-base notion miro- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
AFFiNE Client
This is not the latest version of AFFiNE Client available.
- 1
- 2
- 3
0.11.0 | Updated: 22 Dec 2023
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
3,021
Downloads of v 0.11.0:
67
Maintainer(s):
Software Author(s):
- Toeverything and AFFiNE contributors
AFFiNE Client 0.11.0
This is not the latest version of AFFiNE Client available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Toeverything and AFFiNE contributors. The inclusion of Toeverything and AFFiNE contributors trademark(s), if any, upon this webpage is solely to identify Toeverything and AFFiNE contributors goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install AFFiNE Client, run the following command from the command line or from PowerShell:
To upgrade AFFiNE Client, run the following command from the command line or from PowerShell:
To uninstall AFFiNE Client, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download affine-client --internalize --version=0.11.0 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade affine-client -y --source="'INTERNAL REPO URL'" --version="'0.11.0'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade affine-client -y --source="'INTERNAL REPO URL'" --version="'0.11.0'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install affine-client
win_chocolatey:
name: affine-client
version: '0.11.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'affine-client' do
action :install
source 'INTERNAL REPO URL'
version '0.11.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller affine-client
{
Name = "affine-client"
Version = "0.11.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'affine-client':
ensure => '0.11.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 22 Dec 2023.
Affine is the next-generation collaborative knowledge base for professionals. There can be more than Notion and Miro. Affine is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use.
32 bit users: This package is not available for 32 bit users.
Please Note: This is an automatically updated package. If you find it is out of date by more than a day or two, please contact the maintainer(s) and let them know the package is no longer updating correctly.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The installer have been downloaded from their official github repository listed on <https://github.com/toeverything/AFFiNE/releases>
and can be verified like this:
1. Download the following installer:
Version 0.11.0 : <https://github.com/toeverything/AFFiNE/releases/download/v0.11.0/affine-stable-windows-x64.exe>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'
checksum type: SHA256
checksum: F0FB834B8129FB94483C5EEAD96A735DDDA63E23FBE6BEB12A135F28B2C3FEFB
File 'LICENSE.txt' is obtained from <https://raw.githubusercontent.com/toeverything/AFFiNE/master/LICENSE>
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'affine-client*'
fileType = 'EXE'
silentArgs = "/qn /norestart"
validExitCodes= @(0)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
if ($packageArgs['fileType'] -eq 'MSI') {
$packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"
$packageArgs['file'] = ''
} else {
}
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
Copyright (c) 2022-present TOEVERYTHING PTE. LTD. and its affiliates.
Portions of this software are licensed as follows:
- All content that resides under the "packages/backend/server" directory of this repository, if that directory exists, is licensed under the license defined in "packages/backend/server/LICENSE".
- All third party components incorporated into the AFFiNE Software are licensed under the original license provided by the owner of the applicable component.
- Content outside of the above mentioned directories or restrictions above is available under the "MIT" license as defined in "LICENSE-MIT".
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
md5: 53C5104FBBFBB9FC38E67C2D74A554D9 | sha1: 46C8F8DD65648460C472887FC58808D4ED164115 | sha256: F0FB834B8129FB94483C5EEAD96A735DDDA63E23FBE6BEB12A135F28B2C3FEFB | sha512: BD448CCDF52CB6587C82F41A96E93A894527B3DAF78858E2F9EE4029F67191ABFF03FADC3BC166E319C8542DEF61E1FDD786E1BF3E7BAEACE5D1942148956ED5
Log in or click on link to see number of positives.
- affine-client.0.11.0.nupkg (2eff731dd880) - ## / 64
- affine-client.exe (f0fb834b8129) - ## / 70
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
AFFiNE Client 0.20.5 | 59 | Monday, March 10, 2025 | Approved | |
AFFiNE Client 0.20.4 | 38 | Monday, March 3, 2025 | Approved | |
AFFiNE Client 0.20.3 | 21 | Thursday, February 27, 2025 | Approved | |
AFFiNE Client 0.20.2 | 23 | Tuesday, February 25, 2025 | Approved | |
AFFiNE Client 0.20.1 | 15 | Tuesday, February 25, 2025 | Approved | |
AFFiNE Client 0.20.0 | 20 | Monday, February 24, 2025 | Approved | |
AFFiNE Client 0.19.6 | 60 | Wednesday, January 15, 2025 | Approved | |
AFFiNE Client 0.19.5 | 39 | Monday, January 6, 2025 | Approved | |
AFFiNE Client 0.19.4 | 34 | Tuesday, December 31, 2024 | Approved | |
AFFiNE Client 0.19.3 | 25 | Tuesday, December 31, 2024 | Approved | |
AFFiNE Client 0.19.2 | 24 | Monday, December 30, 2024 | Approved | |
AFFiNE Client 0.19.1 | 22 | Friday, December 27, 2024 | Approved | |
AFFiNE Client 0.19.0 | 26 | Friday, December 27, 2024 | Approved | |
AFFiNE Client 0.18.2 | 42 | Thursday, November 28, 2024 | Approved | |
AFFiNE Client 0.18.1 | 40 | Thursday, November 21, 2024 | Approved | |
AFFiNE Client 0.18.0 | 31 | Thursday, November 14, 2024 | Approved | |
AFFiNE Client 0.17.5 | 40 | Monday, October 21, 2024 | Approved | |
AFFiNE Client 0.17.4 | 38 | Wednesday, October 16, 2024 | Approved | |
AFFiNE Client 0.17.3 | 41 | Thursday, October 10, 2024 | Approved | |
AFFiNE Client 0.17.2 | 43 | Friday, September 27, 2024 | Approved | |
AFFiNE Client 0.17.1 | 48 | Wednesday, September 25, 2024 | Approved | |
AFFiNE Client 0.17.0 | 45 | Friday, September 20, 2024 | Approved | |
AFFiNE Client 0.16.3 | 52 | Wednesday, August 14, 2024 | Approved | |
AFFiNE Client 0.16.2 | 42 | Tuesday, August 13, 2024 | Approved | |
AFFiNE Client 0.16.1 | 45 | Saturday, August 10, 2024 | Approved | |
AFFiNE Client 0.16.0 | 45 | Friday, August 9, 2024 | Approved | |
AFFiNE Client 0.15.7 | 59 | Tuesday, July 23, 2024 | Approved | |
AFFiNE Client 0.15.6 | 56 | Thursday, July 18, 2024 | Approved | |
AFFiNE Client 0.15.5 | 54 | Tuesday, July 16, 2024 | Approved | |
AFFiNE Client 0.15.4 | 54 | Tuesday, July 9, 2024 | Approved | |
AFFiNE Client 0.15.2 | 56 | Tuesday, July 2, 2024 | Approved | |
AFFiNE Client 0.15.0 | 50 | Friday, June 28, 2024 | Approved | |
AFFiNE Client 0.14.9 | 71 | Wednesday, June 12, 2024 | Approved | |
AFFiNE Client 0.12.3 | 78 | Thursday, March 14, 2024 | Approved | |
AFFiNE Client 0.12.2 | 66 | Thursday, February 29, 2024 | Approved | |
AFFiNE Client 0.12.1 | 53 | Wednesday, February 28, 2024 | Approved | |
AFFiNE Client 0.12.0 | 65 | Friday, February 23, 2024 | Approved | |
AFFiNE Client 0.11.3 | 70 | Friday, January 12, 2024 | Approved | |
AFFiNE Client 0.11.2 | 61 | Friday, December 29, 2023 | Approved | |
AFFiNE Client 0.11.1 | 64 | Wednesday, December 27, 2023 | Approved | |
AFFiNE Client 0.11.0 | 67 | Friday, December 22, 2023 | Approved | |
AFFiNE Client 0.10.3 | 67 | Friday, December 1, 2023 | Approved | |
AFFiNE Client 0.10.2 | 68 | Friday, November 17, 2023 | Approved | |
AFFiNE Client 0.8.4 | 616 | Tuesday, September 26, 2023 | Approved | |
AFFiNE Client 0.8.3 | 87 | Friday, September 1, 2023 | Approved | |
Affine Client 0.2.0 | 199 | Friday, September 23, 2022 | Approved | |
Affine Client 0.1.1 | 102 | Monday, August 15, 2022 | Approved |
What's Changed
- fix(core): nx cache configuration by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5065
- ci: always perform fresh build in deployment job by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5066
- fix(core): should not refetch avatar when url does not change by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5070
- style: add no-self-compare rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5092
- feat(component): default collapse and float sidebar on mobile by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5077
- feat(core): show searched result with results group and add duplicate commands by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5073
- chore: upgrade typescript-eslint by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5110
- fix: resolve cycle imports and prevent it by oxlint by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5103
- fix: add eqeqeq lint rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5106
- fix: add prefer-dom-node-dataset rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5107
- fix: add prefer-dom-node-append rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5108
- fix: add prefer-array-some rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5109
- fix: add no-useless-promise-resolve-reject rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5111
- fix: add prefer-dom-node-remove rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5112
- fix: add prefer-date-now rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5113
- fix: add no-typeof-undefined rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5114
- fix: add new-for-builtins rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5116
- fix: add no-new-array rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5117
- fix: add prefer-blob-reading-methods rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5118
- fix: add require-array-sort-compare rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5119
- fix: add unified-signatures rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5120
- fix: add prefer-for-of rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5121
- fix: add prefer-readonly rule by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5122
- refactor(server): simplify metrics creation and usage by @forehalo in https://github.com/toeverything/AFFiNE/pull/5115
- ci: pr title lint job does not need to install all dependencies by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5124
- ci: upgrade setup-node action by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5125
- chore: add lint-staged command to pre-commit file by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5126
- chore: remove useless circular command by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5127
- chore: add rust-toolchain file by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5129
- chore(native): fix useless import by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5130
- feat(core): add manual check for updates by @JimmFly in https://github.com/toeverything/AFFiNE/pull/4957
- fix(core): language display names by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5123
- fix(core): adjust ui styles by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5094
- ci: remove publish job by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5135
- fix(core): implement editor timeout and report error from boundary (#5105) by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5151
- chore: bump @adobe/css-tools from 4.3.1 to 4.3.2 by @dependabot in https://github.com/toeverything/AFFiNE/pull/5154
- fix(electron): do not restore window on get window by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5163
- style(core): add page list header emptypage by @rakheesingh in https://github.com/toeverything/AFFiNE/pull/5162
- fix(workspace): fix svg display on browser by @EYHN in https://github.com/toeverything/AFFiNE/pull/5158
- chore: move cargo fmt to lint-staged from pre-commit by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5150
- refactor(component): migrate design components by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5000
- feat(core): remove all imports from design/component by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5078
- feat(component): add storybook by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5079
- fix(server): avoid snapshot write conflict by @forehalo in https://github.com/toeverything/AFFiNE/pull/5174
- feat(workspace): priority load opened page by @EYHN in https://github.com/toeverything/AFFiNE/pull/5156
- chore: bump blocksuite by @Flrande in https://github.com/toeverything/AFFiNE/pull/5138
- chore: bump @adobe/css-tools from 4.3.1 to 4.3.2 by @dependabot in https://github.com/toeverything/AFFiNE/pull/5181
- ci: use renovate to replace dependabot since depedabot has never worked by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5182
- ci: exclude @blocksuite/icons from blocksuite nightly update group by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5184
- ci: add electron-forge deps group by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5185
- chore: bump up @opentelemetry/instrumentation-ioredis version to ^0.36.0 by @renovate in https://github.com/toeverything/AFFiNE/pull/5186
- chore: bump up @dnd-kit/modifiers version to v7 by @renovate in https://github.com/toeverything/AFFiNE/pull/5189
- chore: bump up Helm release postgresql to v13 by @renovate in https://github.com/toeverything/AFFiNE/pull/5190
- feat: add new page to the sidebar #5095 by @OiAnthony in https://github.com/toeverything/AFFiNE/pull/5128
- chore: bump up ava version to v6 by @renovate in https://github.com/toeverything/AFFiNE/pull/5195
- chore: bump up actions/labeler action to v5 by @renovate in https://github.com/toeverything/AFFiNE/pull/5192
- fix(component): clear page list operation's link style by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5148
- fix(core): unable to create share page link by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5175
- chore: bump up idb version to v8 by @renovate in https://github.com/toeverything/AFFiNE/pull/5198
- fix(component): modal blurness by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5177
- ci: fix auto labeler job by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5206
- fix(core): error page 500 status dark mode by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5180
- ci: refactor workflow by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5139
- chore: adjust banner content text by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5153
- feat(server): events system by @forehalo in https://github.com/toeverything/AFFiNE/pull/5145
- refactor(server): do not force init binary when creating workspace by @forehalo in https://github.com/toeverything/AFFiNE/pull/5146
- feat(core): allow core modules to import itself by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5207
- chore: bump up vite version to v4.5.1 [SECURITY] by @renovate in https://github.com/toeverything/AFFiNE/pull/5211
- chore: bump up google-github-actions/auth action to v2 by @renovate in https://github.com/toeverything/AFFiNE/pull/5197
- feat: bump blocksuite by @doodlewind in https://github.com/toeverything/AFFiNE/pull/5194
- ci: reduce cache pressure on non-Linux platform by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5213
- ci: remove cache cleanup job because we are sharing cache cross branches by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5214
- feat(core): add responsive styles to registration page by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5044
- test(server): remove flaky assertion by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5224
- ci: fix ts-node scripts by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5225
- feat: bump blocksuite by @doodlewind in https://github.com/toeverything/AFFiNE/pull/5218
- feat: bump blocksuite by @doodlewind in https://github.com/toeverything/AFFiNE/pull/5228
- chore(core): skip cloud migration testing until page level upgrade implemented by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5227
- fix(electron): only update db after data changed by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5226
- fix(core): update noise image by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5219
- fix(core): remove duplicate loading component by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5168
- fix(electron): add debug flag for helper process by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5223
- feat(component): new right sidebar by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5169
- feat(core): added new filter for last n days by @rakheesingh in https://github.com/toeverything/AFFiNE/pull/5167
- fix: close font calt to avoid render twinkle by @umar23faiz in https://github.com/toeverything/AFFiNE/pull/4969
- fix(electron): sync settings from localStorage -> atom -> electron by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5020
- fix(core): flaky local avartar test by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5229
- feat(core): add present to edgeless sharing by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5140
- refactor(server): use events system by @forehalo in https://github.com/toeverything/AFFiNE/pull/5149
- fix(core): add requestidlecallback polyfill for safari by @EYHN in https://github.com/toeverything/AFFiNE/pull/5231
- chore: also set version to helm charts in set-version.sh by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5100
- chore: bump up rollup version to v4 by @renovate in https://github.com/toeverything/AFFiNE/pull/5202
- ci: fix rust build during deployment by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5233
- chore: bump up undici version to v6 by @renovate in https://github.com/toeverything/AFFiNE/pull/5204
- chore: bump up p-queue version to v8 by @renovate in https://github.com/toeverything/AFFiNE/pull/5235
- chore: bump up vite version to v5 by @renovate in https://github.com/toeverything/AFFiNE/pull/5203
- fix(component): theme flickering by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5238
- chore(env): fix lint error by @EYHN in https://github.com/toeverything/AFFiNE/pull/5240
- chore: add sha512sum for the released files by @Zheaoli in https://github.com/toeverything/AFFiNE/pull/5242
- refactor(core): use debug log replace console when command registry by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5237
- chore: bump up @opentelemetry/host-metrics version to ^0.34.0 by @renovate in https://github.com/toeverything/AFFiNE/pull/5234
- chore: bump up google-github-actions/setup-gcloud action to v2 by @renovate in https://github.com/toeverything/AFFiNE/pull/5241
- fix(electron): use tree-kill for electron dev by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5252
- fix(component): revert theme flickering (#5238) by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5256
- feat(core): adjust empty collection style by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5239
- chore: bump up vite-plugin-static-copy version to v1 by @renovate in https://github.com/toeverything/AFFiNE/pull/5205
- chore: bump up marked version to v11 by @renovate in https://github.com/toeverything/AFFiNE/pull/5200
- chore: upgrade to [email protected] by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5245
- chore: upgrade rustup toolchain by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5246
- chore: bump up @electron-forge/maker-base version to v7.2.0 by @renovate in https://github.com/toeverything/AFFiNE/pull/5191
- fix(cli): fix storybook build error by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5257
- fix(server): avoid updates persist forever by @forehalo in https://github.com/toeverything/AFFiNE/pull/5258
- fix(core): adjust share edgeless display error by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5263
- fix(core): fix editor sidebar open on resize by @EYHN in https://github.com/toeverything/AFFiNE/pull/5262
- fix(server): use last update creating time as snasphot update timestamp by @forehalo in https://github.com/toeverything/AFFiNE/pull/5266
- feat: bump blocksuite by @Flrande in https://github.com/toeverything/AFFiNE/pull/5267
- fix(core): polling to search in cmdk by @EYHN in https://github.com/toeverything/AFFiNE/pull/5274
- feat(core): support sidebar page item dnd by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5132
- fix(server): avoid repeatly register providers by @forehalo in https://github.com/toeverything/AFFiNE/pull/5265
- fix(edgeless): remove stale template by @regischen in https://github.com/toeverything/AFFiNE/pull/5275
- fix(core): page header style changes by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5279
- fix(electron): use dynamic load for exposed meta by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5251
- fix(core): fix window cannot be dragged on the collection page by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5269
- fix(core): bg color issues in transparent mode by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5278
- chore: bump up @endo/static-module-record version to v1 by @renovate in https://github.com/toeverything/AFFiNE/pull/5281
- fix(core): simple history entry position by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5290
- test(core): rewrite some flaky assertions by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5287
- refactor(core): side bar resizing by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5280
- chore: remove react-resizable-panels by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5284
- fix(core): collection modal position after modal style changes by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5289
- feat: user usage init by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5074
- feat(server): independent websocket room for block and awareness by @EYHN in https://github.com/toeverything/AFFiNE/pull/5285
- feat: only follow
serverUrlPrefix
at redirect to client by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5295 - fix: page title too long style by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5302
- fix: detail page missing background by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5303
- fix: add sidebar toggle and windows controls for empty collections page by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5304
- feat(core): add useQueryImmutable by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5299
- fix: width blink in side bar by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5291
- feat: integrate user usage into apis by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5075
- feat: user usage gql & test case improve by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5076
- feat: integrate new modules by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5087
- feat: struct type feature config by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5142
- feat: add cache for blob query by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5178
- chore: bump up github/codeql-action action to v3 by @renovate in https://github.com/toeverything/AFFiNE/pull/5298
- feat: bump blocksuite by @doodlewind in https://github.com/toeverything/AFFiNE/pull/5286
- refactor: workspace manager by @EYHN in https://github.com/toeverything/AFFiNE/pull/5060
- fix(core): page mode switch sometimes not working by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5306
- chore(server): split gcloud sql proxy into a separate deployment by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5101
- ci: fix oxlint version by @EYHN in https://github.com/toeverything/AFFiNE/pull/5328
- ci: fix e2e by @EYHN in https://github.com/toeverything/AFFiNE/pull/5329
- fix(storybook): fix test by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5325
- chore: bump up vitest monorepo to v1 (major) by @renovate in https://github.com/toeverything/AFFiNE/pull/5217
- fix(storybook): disable cloud for storybook by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5330
- feat(core): ai poc by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5317
- chore(server): remove early access tips from invitation emails by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5314
- feat: add quota for old users by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5318
- feat(electron): onboarding at first launch logic for client and web by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5183
- feat(core): onboarding paper enter animation by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5248
- feat(core): onboarding paper unfolding animation by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5264
- fix(component): fix incorrect input component width and height styling by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5292
- feat(core): adjust empty favourites style by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5323
- feat(core): basic page/edgeless toggle animation by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5283
- fix(core): collections initialized logic by @zzj3720 in https://github.com/toeverything/AFFiNE/pull/5310
- feat(core): add toggle workspace dialog by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5312
- fix(electron): main window should be opened first before destroying onboard window by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5319
- fix(electron): onboarding display issue on Windows by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5320
- chore: bump up ses version to v1 by @renovate in https://github.com/toeverything/AFFiNE/pull/5282
- fix: cargo deps security alert by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5340
- feat(core): adjust ui for new design by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5322
- fix(core): dedupe ses versions by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5342
- feat: bump blocksuite by @doodlewind in https://github.com/toeverything/AFFiNE/pull/5343
- feat: onboarding page by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5277
- feat: onboarding electron redirect by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5327
- fix(core): downgrade ses by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5347
- feat: bump bs by @doouding in https://github.com/toeverything/AFFiNE/pull/5346
- fix(core): remove ses lockdown by @Brooooooklyn in https://github.com/toeverything/AFFiNE/pull/5350
- feat: only follow
serverUrlPrefix
at redirect to client (#5295) by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5354 - chore: update basic version to 0.11.0 by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5355
- fix(core): escape special characters for cmdk item values by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5353
- feat(core): add syncing progress by @EYHN in https://github.com/toeverything/AFFiNE/pull/5356
- fix(storybook): disable onboarding for storybook by @pengx17 in https://github.com/toeverything/AFFiNE/pull/5351
- feat: bump blocksuite by @donteatfriedrice in https://github.com/toeverything/AFFiNE/pull/5357
- feat(core): responsive for onboarding by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5361
- chore(core): temporarily hide export png and pdf in edgeless by @JimmFly in https://github.com/toeverything/AFFiNE/pull/5364
- chore: bump up eslint-plugin-unicorn version to v50 by @renovate in https://github.com/toeverything/AFFiNE/pull/5362
- feat(electron): handle onboarding-window moved between screens by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5345
- chore: bump up @react-hookz/web version to v24 by @renovate in https://github.com/toeverything/AFFiNE/pull/5359
- ci: use setup version action to init version by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5365
- fix(core): onboading tooltip next button always shows by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5363
- ci: set version correctly and remove nightly build workflow by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5367
- feat: use baseurl from server config by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5369
- chore: fix about version in client by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5371
- chore: catch and ignore page upgrade error by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5373
- fix: websocket prefix by @darkskygit in https://github.com/toeverything/AFFiNE/pull/5372
- feat: bump blocksuite by @Flrande in https://github.com/toeverything/AFFiNE/pull/5374
- fix(core): maxWait for sync progress debounce by @EYHN in https://github.com/toeverything/AFFiNE/pull/5377
- fix: input style priority by @joooye34 in https://github.com/toeverything/AFFiNE/pull/5383
- fix(workspace): dont upgrade subdoc on cloud by @EYHN in https://github.com/toeverything/AFFiNE/pull/5382
- fix(core): hide onboarding paper segments gap by @CatsJuice in https://github.com/toeverything/AFFiNE/pull/5384
- fix(workspace): leave workspace correctly by @EYHN in https://github.com/toeverything/AFFiNE/pull/5379
- fix(component): fix workspace input by @EYHN in https://github.com/toeverything/AFFiNE/pull/5381
New Contributors
- @rakheesingh made their first contribution in https://github.com/toeverything/AFFiNE/pull/5162
- @renovate made their first contribution in https://github.com/toeverything/AFFiNE/pull/5186
- @OiAnthony made their first contribution in https://github.com/toeverything/AFFiNE/pull/5128
- @umar23faiz made their first contribution in https://github.com/toeverything/AFFiNE/pull/4969
- @donteatfriedrice made their first contribution in https://github.com/toeverything/AFFiNE/pull/5357
Full Changelog: https://github.com/toeverything/AFFiNE/compare/v0.10.3...v0.11.0
This package has no dependencies.
Ground Rules:
- This discussion is only about AFFiNE Client and the AFFiNE Client package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or AFFiNE Client, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.