toeverything / AFFiNE

There can be more than Notion and Miro. AFFiNE(pronounced [ə‘fain]) is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use.
https://affine.pro
Other
41.98k stars 2.74k forks source link

​Cant log in in manjaro #8267

Closed 0Slmpnv0 closed 1 month ago

0Slmpnv0 commented 1 month ago

What happened?

After opening affine 0.16.3-stable-linux-64 version and trying to log in I have this output after successful logging in browser:

Could not read file affine://signin-redirect?token=136ce3b3-6a07-4c7e-8258-49e24787564c&next=.

Distribution version

Linux

What browsers are you seeing the problem on if you're using web version?

No response

Are you self-hosting?

Relevant log output

7s ◉ ./affine-0.16.3-stable-linux-x64.appimage        ⌂/Downloads 17:40
Gtk-Message: 17:40:14.566: Failed to load module "appmenu-gtk-module"
17:40:14.803 (main) › [ipc-event] updater:onDownloadProgress [ 0 ]
17:40:14.808 (main) › [ipc-event] ui:onTabsStatusChange []
17:40:14.809 (main) › create window
17:40:14.815 (main) › auto-updater feed config {
  channel: 'stable',
  provider: 'custom',
  repo: 'AFFiNE',
  owner: 'toeverything',
  releaseType: 'release',
  updateProvider: '[function] class extends import_GitHubProvider.BaseGitHubProvider {\n' +
    '      constructor(options, updater, runtimeOptions) {\n' +
    '        super(options, "github.com", runtimeOptions);\n' +
    '        this.updater = updater;\n' +
    '      }\n' +
    '      async getLatestVersion() {\n' +
    '        const cancellationToken = new import_electron_updater.CancellationToken();\n' +
    '        const feedXml = await this.httpRequest(\n' +
    '          newUrlFromBase(`${this.basePath}.atom`, this.baseUrl),\n' +
    '          {\n' +
    '            accept: "application/xml, application/atom+xml, text/xml, */*"\n' +
    '          },\n' +
    '          cancellationToken\n' +
    '        );\n' +
    '        if (!feedXml) {\n' +
    '          throw new Error(\n' +
    '            `Cannot find feed in the remote server (${this.baseUrl.href})`\n' +
    '          );\n' +
    '        }\n' +
    '        const feed = (0, import_builder_util_runtime.parseXml)(feedXml);\n' +
    '        let latestRelease = feed.element(\n' +
    '          "entry",\n' +
    '          false,\n' +
    '          `No published versions on GitHub`\n' +
    '        );\n' +
    '        let tag = null;\n' +
    '        try {\n' +
    '          const currentChannel = this.options.channel || this.updater?.channel || semver.prerelease(this.updater.currentVersion)?.[0] || null;\n' +
    '          if (currentChannel === null) {\n' +
    '            throw (0, import_builder_util_runtime.newError)(\n' +
    '              `Cannot parse channel from version: ${this.updater.currentVersion}`,\n' +
    '              "ERR_UPDATER_INVALID_VERSION"\n' +
    '            );\n' +
    '          }\n' +
    '          const releaseTag = await this.getLatestTagByRelease(\n' +
    '            currentChannel,\n' +
    '            cancellationToken\n' +
    '          );\n' +
    '          for (const element of feed.getElements("entry")) {\n' +
    '            const hrefElement = hrefRegExp.exec(\n' +
    '              element.element("link").attribute("href")\n' +
    '            );\n' +
    '            if (hrefElement === null) continue;\n' +
    '            const hrefTag = hrefElement[1];\n' +
    '            const hrefChannel = semver.prerelease(hrefTag)?.[0] || "stable";\n' +
    '            let isNextPreRelease = false;\n' +
    '            if (releaseTag) {\n' +
    '              isNextPreRelease = releaseTag === hrefTag;\n' +
    '            } else {\n' +
    '              isNextPreRelease = hrefChannel === currentChannel;\n' +
    '            }\n' +
    '            if (isNextPreRelease) {\n' +
    '              tag = hrefTag;\n' +
    '              latestRelease = element;\n' +
    '              break;\n' +
    '            }\n' +
    '          }\n' +
    '        } catch (e2) {\n' +
    '          throw (0, import_builder_util_runtime.newError)(\n' +
    '            `Cannot parse releases feed: ${e2.stack || e2.message},\n' +
    'XML:\n' +
    '${feedXml}`,\n' +
    '            "ERR_UPDATER_INVALID_RELEASE_FEED"\n' +
    '          );\n' +
    '        }\n' +
    '        if (tag === null || tag === void 0) {\n' +
    '          throw (0, import_builder_util_runtime.newError)(\n' +
    '            `No published versions on GitHub`,\n' +
    '            "ERR_UPDATER_NO_PUBLISHED_VERSIONS"\n' +
    '          );\n' +
    '        }\n' +
    '        let rawData = null;\n' +
    '        let channelFile = "";\n' +
    '        let channelFileUrl = "";\n' +
    '        const fetchData = async (channelName) => {\n' +
    '          channelFile = getChannelFilename(channelName);\n' +
    '          channelFileUrl = newUrlFromBase(\n' +
    '            this.getBaseDownloadPath(String(tag), channelFile),\n' +
    '            this.baseUrl\n' +
    '          );\n' +
    '          const requestOptions = this.createRequestOptions(channelFileUrl);\n' +
    '          try {\n' +
    '            return await this.executor.request(requestOptions, cancellationToken);\n' +
    '          } catch (e2) {\n' +
    '            if (e2 instanceof import_builder_util_runtime.HttpError && e2.statusCode === 404) {\n' +
    '              throw (0, import_builder_util_runtime.newError)(\n' +
    '                `Cannot find ${channelFile} in the latest release artifacts (${channelFileUrl}): ${e2.stack || e2.message}`,\n' +
    '                "ERR_UPDATER_CHANNEL_FILE_NOT_FOUND"\n' +
    '              );\n' +
    '            }\n' +
    '            throw e2;\n' +
    '          }\n' +
    '        };\n' +
    '        try {\n' +
    '          const channel = this.updater.allowPrerelease ? this.getCustomChannelName(\n' +
    '            String(semver.prerelease(tag)?.[0] || "latest")\n' +
    '          ) : this.getDefaultChannelName();\n' +
    '          rawData = await fetchData(channel);\n' +
    '        } catch (e2) {\n' +
    '          if (this.updater.allowPrerelease) {\n' +
    '            rawData = await fetchData(this.getDefaultChannelName());\n' +
    '          } else {\n' +
    '            throw e2;\n' +
    '          }\n' +
    '        }\n' +
    '        const result = (0, import_Provider.parseUpdateInfo)(rawData, channelFile, channelFileUrl);\n' +
    '        if (result.releaseName == null) {\n' +
    '          result.releaseName = latestRelease.elementValueOrEmpty("title");\n' +
    '        }\n' +
    '        if (result.releaseNotes == null) {\n' +
    '          result.releaseNotes = computeReleaseNotes(\n' +
    '            this.updater.currentVersion,\n' +
    '            this.updater.fullChangelog,\n' +
    '            feed,\n' +
    '            latestRelease\n' +
    '          );\n' +
    '        }\n' +
    '        return {\n' +
    '          tag,\n' +
    '          ...result\n' +
    '        };\n' +
    '      }\n' +
    '      get basePath() {\n' +
    '        return `/${this.options.owner}/${this.options.repo}/releases`;\n' +
    '      }\n' +
    '      /**\n' +
    '       * Use release api to get latest version to filter draft version.\n' +
    '       * But this api have low request limit 60-times/1-hour, use this to help, not depend on it\n' +
    '       * https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28\n' +
    '       * https://api.github.com/repos/toeverything/affine/releases\n' +
    '       * https://docs.github.com/en/rest/rate-limit/rate-limit?apiVersion=2022-11-28#about-rate-limits\n' +
    '       */\n' +
    '      async getLatestTagByRelease(currentChannel, cancellationToken) {\n' +
    '        try {\n' +
    '          const releasesStr = await this.httpRequest(\n' +
    '            newUrlFromBase(`/repos${this.basePath}`, this.baseApiUrl),\n' +
    '            {\n' +
    '              accept: "Accept: application/vnd.github+json",\n' +
    '              "X-GitHub-Api-Version": "2022-11-28"\n' +
    '            },\n' +
    '            cancellationToken\n' +
    '          );\n' +
    '          if (!releasesStr) {\n' +
    '            return null;\n' +
    '          }\n' +
    '          const releases = JSON.parse(releasesStr);\n' +
    '          for (const release of releases) {\n' +
    '            if (release.draft) {\n' +
    '              continue;\n' +
    '            }\n' +
    '            const releaseTag = release.tag_name;\n' +
    '            const releaseChannel = semver.prerelease(releaseTag)?.[0] || "stable";\n' +
    '            if (releaseChannel === currentChannel) {\n' +
    '              return release.tag_name;\n' +
    '            }\n' +
    '          }\n' +
    '        } catch (e2) {\n' +
    '          console.info(`Cannot parse release: ${e2.stack || e2.message}`);\n' +
    '        }\n' +
    '        return null;\n' +
    '      }\n' +
    '      resolveFiles(updateInfo) {\n' +
    '        const filteredUpdateInfo = structuredClone(updateInfo);\n' +
    '        if (process.platform === "win32" && updateInfo.files.length > 1) {\n' +
    '          const isSquirrel = isSquirrelBuild();\n' +
    '          filteredUpdateInfo.files = updateInfo.files.filter((file) => {\n' +
    '            return isSquirrel ? !file.url.includes("nsis.exe") : file.url.includes("nsis.exe");\n' +
    '          });\n' +
    '        }\n' +
    '        return (0, import_Provider.resolveFiles)(\n' +
    '          filteredUpdateInfo,\n' +
    '          this.baseUrl,\n' +
    '          (p) => this.getBaseDownloadPath(filteredUpdateInfo.tag, p.replace(/ /g, "-"))\n' +
    '        );\n' +
    '      }\n' +
    '      getBaseDownloadPath(tag, fileName) {\n' +
    '        return `${this.basePath}/download/${tag}/${fileName}`;\n' +
    '      }\n' +
    '    }'
}
17:40:14.856 (main) › [helper] forked 7462
17:40:15.007 (main) › [ipc-event] ui:onTabsStatusChange []
[7454:0916/174015.053145:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.053215:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.053283:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.053309:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.053362:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.053387:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.053437:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.053461:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.053516:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.053541:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.053592:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.053615:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.053664:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.053686:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.053734:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.053756:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.053805:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.053831:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.053880:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.053903:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.053953:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.053977:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054029:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054052:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054103:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054126:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054174:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054198:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054246:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054269:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054316:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054338:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054389:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054415:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054465:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054488:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054538:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054561:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054612:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054635:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054685:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054708:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054757:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054780:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054828:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054850:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054899:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054922:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.054972:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.054995:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055045:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055067:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055117:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055140:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055188:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055210:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055258:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055282:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055330:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055353:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055401:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055424:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055473:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055496:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055545:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055580:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055629:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055651:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055699:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055722:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
17:40:15.055 (main) › view shell created in 73.70622200000003ms
[7454:0916/174015.055770:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055793:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055841:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055865:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055912:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.055935:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.055982:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.056004:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
[7454:0916/174015.056051:ERROR:gbm_wrapper.cc(72)] Failed to get fd for plane.: No such file or directory (2)
[7454:0916/174015.056073:ERROR:gbm_wrapper.cc(255)] Failed to export buffer to dma_buf: No such file or directory (2)
17:40:15.056 (main) › [ipc-event] ui:onMaximized [ true ]
17:40:15.084 (main) › [ipc-event] ui:onTabsStatusChange []
17:40:15.085 (main) › view app-QMDbDtfu-q-EkrKthxCn- created in 102.60424499999999ms
17:40:15.085 (main) › loading tab app-QMDbDtfu-q-EkrKthxCn- at file://./workspace/o1o_w2FOMVCf1aRRD0-C7/nwLRRbh1jK6VvKsoSiv9h
17:40:15.343 (main) › [ipc-api] sharedStorage:getAllGlobalState [] - 0 ms
17:40:15.343 (main) › [ipc-api] sharedStorage:getAllGlobalState [] - 0 ms
17:40:15.343 (main) › [ipc-api] sharedStorage:getAllGlobalCache [] - 0 ms
17:40:15.344 (main) › [ipc-api] sharedStorage:getAllGlobalCache [] - 0 ms
17:40:16.083 (main) › [ipc-api] ui:isMaximized [] - 0 ms
17:40:16.084 (main) › [ipc-api] ui:isFullScreen [] - 0 ms
17:40:16.089 (main) › main window is ready to show
17:40:16.089 (main) › [ipc-event] ui:onMaximized [ true ]
17:40:16.089 (main) › [ipc-event] ui:onFullScreen [ false ]
17:40:16.098 (main) › [ipc-api] ui:getTabsStatus [] - 0 ms
17:40:16.147 (main) › [ipc-api] ui:handleThemeChange [ 'system' ] - 41 ms
17:40:16.148 (main) › [ipc-api] ui:isFullScreen [] - 0 ms
17:40:16.148 (main) › Updater configured! { autoCheckUpdate: true, autoDownloadUpdate: true }
17:40:16.148 (main) › Checking for update
17:40:16.148 (main) › Checking for update
17:40:16.149 (main) › [ipc-api] updater:setConfig [] - 1 ms
17:40:16.182 (main) › [ipc-api] configStorage:get [] - 0 ms
17:40:16.192 (main) › [ipc-api] ui:isMaximized [] - 0 ms
17:40:16.193 (main) › [ipc-api] ui:isFullScreen [] - 1 ms
17:40:16.193 (main) › [ipc-api] ui:isActiveTab [] - 0 ms
17:40:16.209 (main) › [ipc-api] ui:handleThemeChange [ 'system' ] - 0 ms
17:40:16.220 (main) › Updater configured! { autoCheckUpdate: true, autoDownloadUpdate: true }
17:40:16.220 (main) › [ipc-api] updater:setConfig [] - 0 ms
rpc.getPath('sessionData')
Promise { '/home/slmpnv/.config/AFFiNE' } @torn22028gn
17:40:16.325 (main) › [ipc-api] ui:getTabsStatus [] - 0 ms
17:40:16.338 (main) › [ipc-api] ui:isFullScreen [] - 0 ms
17:40:16.338 (main) › [ipc-event] ui:onTabsStatusChange []
17:40:16.376 (main) › [ipc-api] ui:pingAppLayoutReady [] - 38 ms
17:40:16.377 (main) › [ipc-api] updater:currentVersion [] - 0 ms
17:40:16.394 (main) › [ipc-event] ui:onTabViewsMetaChanged []
17:40:16.395 (main) › [ipc-event] ui:onTabsStatusChange []
17:40:16.395 (main) › [ipc-event] ui:onActiveTabChanged [ 'app-QMDbDtfu-q-EkrKthxCn-' ]
17:40:16.395 (main) › [ipc-event] ui:onTabShellViewActiveChange [ false ]
17:40:16.395 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:16.396 (main) › [ipc-api] ui:updateWorkbenchMeta [ 'app-QMDbDtfu-q-EkrKthxCn-' ] - 2 ms
17:40:16.397 (main) › [ipc-event] ui:onTabViewsMetaChanged []
17:40:16.397 (main) › [ipc-event] ui:onTabsStatusChange []
17:40:16.397 (main) › [ipc-event] ui:onActiveTabChanged [ 'app-QMDbDtfu-q-EkrKthxCn-' ]
17:40:16.397 (main) › [ipc-event] ui:onTabShellViewActiveChange [ false ]
17:40:16.398 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:16.398 (main) › [ipc-api] ui:updateWorkbenchMeta [ 'app-QMDbDtfu-q-EkrKthxCn-' ] - 1 ms
17:40:16.400 (main) › [ipc-event] ui:onTabViewsMetaChanged []
17:40:16.400 (main) › [ipc-event] ui:onTabsStatusChange []
17:40:16.400 (main) › [ipc-event] ui:onActiveTabChanged [ 'app-QMDbDtfu-q-EkrKthxCn-' ]
17:40:16.401 (main) › [ipc-event] ui:onTabShellViewActiveChange [ false ]
17:40:16.401 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:16.401 (main) › [ipc-api] ui:updateWorkbenchMeta [ 'app-QMDbDtfu-q-EkrKthxCn-' ] - 1 ms
17:40:16.441 (main) › [ipc-event] ui:onTabsStatusChange []
17:40:16.441 (main) › [ipc-event] ui:onTabShellViewActiveChange [ false ]
17:40:16.442 (main) › [ipc-api] ui:pingAppLayoutReady [] - 1 ms
17:40:16.442 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:16.442 (main) › [ipc-api] sharedStorage:setGlobalState [ 'workspace-state:o1o_w2FOMVCf1aRRD0-C7:recent-pages' ] - 0 ms
17:40:16.463 (main) › main window is ready to show
17:40:16.464 (main) › [ipc-event] ui:onMaximized [ true ]
17:40:16.464 (main) › [ipc-event] ui:onFullScreen [ false ]
17:40:16.484 (main) › [ipc-event] ui:onTabViewsMetaChanged []
17:40:16.484 (main) › [ipc-event] ui:onTabsStatusChange []
17:40:16.484 (main) › [ipc-event] ui:onActiveTabChanged [ 'app-QMDbDtfu-q-EkrKthxCn-' ]
17:40:16.484 (main) › [ipc-event] ui:onTabShellViewActiveChange [ false ]
17:40:16.484 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:16.485 (main) › [ipc-api] ui:updateWorkbenchMeta [ 'app-QMDbDtfu-q-EkrKthxCn-' ] - 1 ms
17:40:16.485 (main) › [ipc-event] ui:onTabViewsMetaChanged []
17:40:16.485 (main) › [ipc-event] ui:onTabsStatusChange []
17:40:16.485 (main) › [ipc-event] ui:onActiveTabChanged [ 'app-QMDbDtfu-q-EkrKthxCn-' ]
17:40:16.485 (main) › [ipc-event] ui:onTabShellViewActiveChange [ false ]
17:40:16.485 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:16.486 (main) › [ipc-api] ui:updateWorkbenchMeta [ 'app-QMDbDtfu-q-EkrKthxCn-' ] - 1 ms
17:40:16.532 (main) › [ipc-api] ui:handleWindowResize [] - 0 ms
17:40:17.051 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:17.051 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 0 ms
17:40:17.787 (main) › Update for version 0.16.3 is not available (latest version: 0.16.3, downgrade is disallowed).
17:40:17.788 (main) › Update not available {
  tag: 'v0.16.3',
  version: '0.16.3',
  files: [
    {
      url: 'affine-0.16.3-stable-linux-x64.appimage',
      sha512: 'nmID71T7jq9yKCdujVUeL71TLXmwIdaaWZB0ouDX13Np1vahS1+1A5uJbHUzTH0N/sN0W+LKUg9L29wNgi42gw==',
      size: 178308288
    },
    {
      url: 'affine-0.16.3-stable-linux-x64.zip',
      sha512: 'fsHTT0fUeU/uLGdlRiuddzSuJWIOcaUTgUj7DB5XSQJ4qA5blAcpij8zOil0ww3Ea7Kwe7qcIe4SSCtNFu31sQ==',
      size: 176405078
    }
  ],
  path: 'affine-0.16.3-stable-linux-x64.appimage',
  sha512: 'nmID71T7jq9yKCdujVUeL71TLXmwIdaaWZB0ouDX13Np1vahS1+1A5uJbHUzTH0N/sN0W+LKUg9L29wNgi42gw==',
  releaseDate: '2024-08-14T07:11:42.171Z',
  releaseName: '0.16.3',
  releaseNotes: '<h3>🚀 Features</h3>\n' +
    '<ul>\n' +
    '<li>Bump bs - by <strong>doouding</strong> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2464845973" data-permission-text="Title is private" data-url="https://github.com/toeverything/AFFiNE/issues/7866" data-hovercard-type="pull_request" data-hovercard-url="/toeverything/AFFiNE/pull/7866/hovercard" href="https://github.com/toeverything/AFFiNE/pull/7866">#7866</a> <a href="https://github.com/toeverything/AFFiNE/commit/05ac3dbdc"><samp>(05ac3)</samp></a></li>\n' +
    '</ul>\n' +
    '<h3>🐞 Bug Fixes</h3>\n' +
    '<ul>\n' +
    '<li>Center peek support open in new tab - by <strong>pengx17</strong> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2462564999" data-permission-text="Title is private" data-url="https://github.com/toeverything/AFFiNE/issues/7848" data-hovercard-type="pull_request" data-hovercard-url="/toeverything/AFFiNE/pull/7848/hovercard" href="https://github.com/toeverything/AFFiNE/pull/7848">#7848</a> <a href="https://github.com/toeverything/AFFiNE/commit/d86f7f41d"><samp>(d86f7)</samp></a></li>\n' +
    '<li>Admin panel schema - by <strong>DarkSky</strong> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2462808603" data-permission-text="Title is private" data-url="https://github.com/toeverything/AFFiNE/issues/7851" data-hovercard-type="pull_request" data-hovercard-url="/toeverything/AFFiNE/pull/7851/hovercard" href="https://github.com/toeverything/AFFiNE/pull/7851">#7851</a> <a href="https://github.com/toeverything/AFFiNE/commit/24c34eb3f"><samp>(24c34)</samp></a></li>\n' +
    '<li><strong>admin</strong>:\n' +
    '<ul>\n' +
    '<li>Avoid frequent refetch - by <strong>forehalo</strong> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2464808877" data-permission-text="Title is private" data-url="https://github.com/toeverything/AFFiNE/issues/7863" data-hovercard-type="pull_request" data-hovercard-url="/toeverything/AFFiNE/pull/7863/hovercard" href="https://github.com/toeverything/AFFiNE/pull/7863">#7863</a> <a href="https://github.com/toeverything/AFFiNE/commit/f69f026ac"><samp>(f69f0)</samp></a></li>\n' +
    '<li>Frequent query requests in the search - by <strong>JimmFly</strong> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2463038249" data-permission-text="Title is private" data-url="https://github.com/toeverything/AFFiNE/issues/7854" data-hovercard-type="pull_request" data-hovercard-url="/toeverything/AFFiNE/pull/7854/hovercard" href="https://github.com/toeverything/AFFiNE/pull/7854">#7854</a> <a href="https://github.com/toeverything/AFFiNE/commit/05247bb24"><samp>(05247)</samp></a></li>\n' +
    '<li>User form not dynamically updating as expected - by <strong>JimmFly</strong> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2463825237" data-permission-text="Title is private" data-url="https://github.com/toeverything/AFFiNE/issues/7858" data-hovercard-type="pull_request" data-hovercard-url="/toeverything/AFFiNE/pull/7858/hovercard" href="https://github.com/toeverything/AFFiNE/pull/7858">#7858</a> <a href="https://github.com/toeverything/AFFiNE/commit/994b53950"><samp>(994b5)</samp></a></li>\n' +
    '</ul>\n' +
    '</li>\n' +
    '<li><strong>electron</strong>:\n' +
    '<ul>\n' +
    '<li>Adjust app-tabs-header styles - by <strong>pengx17</strong> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2462654642" data-permission-text="Title is private" data-url="https://github.com/toeverything/AFFiNE/issues/7849" data-hovercard-type="pull_request" data-hovercard-url="/toeverything/AFFiNE/pull/7849/hovercard" href="https://github.com/toeverything/AFFiNE/pull/7849">#7849</a> <a href="https://github.com/toeverything/AFFiNE/commit/d4065fee7"><samp>(d4065)</samp></a></li>\n' +
    '<li>Cmd+num not working on mac - by <strong>pengx17</strong> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2464819809" data-permission-text="Title is private" data-url="https://github.com/toeverything/AFFiNE/issues/7865" data-hovercard-type="pull_request" data-hovercard-url="/toeverything/AFFiNE/pull/7865/hovercard" href="https://github.com/toeverything/AFFiNE/pull/7865">#7865</a> <a href="https://github.com/toeverything/AFFiNE/commit/d5edadabe"><samp>(d5eda)</samp></a></li>\n' +
    '</ul>\n' +
    '</li>\n' +
    '<li><strong>server</strong>:\n' +
    '<ul>\n' +
    '<li>Prelude should load both local and remote config file - by <strong>forehalo</strong> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2462974066" data-permission-text="Title is private" data-url="https://github.com/toeverything/AFFiNE/issues/7852" data-hovercard-type="pull_request" data-hovercard-url="/toeverything/AFFiNE/pull/7852/hovercard" href="https://github.com/toeverything/AFFiNE/pull/7852">#7852</a> <a href="https://github.com/toeverything/AFFiNE/commit/7afba6b8b"><samp>(7afba)</samp></a></li>\n' +
    '<li>Change password with token should be public - by <strong>forehalo</strong> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2463406813" data-permission-text="Title is private" data-url="https://github.com/toeverything/AFFiNE/issues/7855" data-hovercard-type="pull_request" data-hovercard-url="/toeverything/AFFiNE/pull/7855/hovercard" href="https://github.com/toeverything/AFFiNE/pull/7855">#7855</a> <a href="https://github.com/toeverything/AFFiNE/commit/0ba516866"><samp>(0ba51)</samp></a></li>\n' +
    '</ul>\n' +
    '</li>\n' +
    '</ul>\n' +
    '<h3>🏎 Performance</h3>\n' +
    '<ul>\n' +
    '<li><strong>core</strong>: Avoid page init when only id required - by <strong>forehalo</strong> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2464879749" data-permission-text="Title is private" data-url="https://github.com/toeverything/AFFiNE/issues/7867" data-hovercard-type="pull_request" data-hovercard-url="/toeverything/AFFiNE/pull/7867/hovercard" href="https://github.com/toeverything/AFFiNE/pull/7867">#7867</a> <a href="https://github.com/toeverything/AFFiNE/commit/99e70c91e"><samp>(99e70)</samp></a></li>\n' +
    '</ul>\n' +
    '<h5><a href="https://github.com/toeverything/AFFiNE/compare/v0.16.2...v0.16.3">View changes on GitHub</a></h5>'
}
17:40:23.007 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:23.007 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 0 ms
17:40:23.552 (main) › [ipc-api] ui:getChallengeResponse [ '042e92df-ed28-4a5d-8da2-93e763ef8531' ] - 921 ms
17:40:23.673 (main) › [ipc-api] ui:getChallengeResponse [ '5c7f8117-546b-442b-a7bc-beb6e8fe11bd' ] - 666 ms
17:40:24.627 (main) › [ipc-api] ui:openExternal [
  'https://app.affine.pro/desktop-signin?provider=Google&redirect_uri=/open-app/signin-redirect?schema=affine'
] - 4 ms
17:40:25.877 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:25.878 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:40:28.864 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:28.866 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 2 ms
17:40:32.031 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:32.032 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:40:34.888 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:34.889 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:40:37.844 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:37.844 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 0 ms
17:40:40.930 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:40.931 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:40:43.899 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:43.900 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:40:46.881 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:46.883 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 3 ms
17:40:49.876 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:49.877 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:40:52.910 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:52.912 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 2 ms
17:40:55.882 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:55.882 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 0 ms
17:40:58.952 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:40:58.953 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:41:01.858 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:01.859 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:41:04.892 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:04.893 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:41:07.963 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:07.964 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:41:10.866 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:10.868 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 2 ms
17:41:14.005 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:14.007 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 2 ms
17:41:16.881 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:16.881 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 0 ms
17:41:19.923 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:19.924 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:41:22.915 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:22.916 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:41:25.980 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:25.980 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 0 ms
17:41:28.957 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:28.959 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 2 ms
17:41:32.029 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:32.031 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 2 ms
17:41:34.991 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:34.991 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 0 ms
17:41:37.925 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:37.925 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 0 ms
17:41:40.940 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:40.941 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:41:43.908 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:43.909 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:41:47.201 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:47.202 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:41:50.146 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:50.146 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 0 ms
17:41:52.918 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:52.919 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:41:55.888 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:55.889 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:41:59.297 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:41:59.298 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:42:02.332 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:42:02.332 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 0 ms
17:42:04.975 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:42:04.976 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 1 ms
17:42:08.074 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:42:08.076 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 2 ms
17:42:11.036 (main) › [ipc-event] sharedStorage:onGlobalStateChanged []
17:42:11.036 (main) › [ipc-api] sharedStorage:setGlobalState [ 'affine-cloud-auth' ] - 0 ms

Anything else?

No response

affine-issue-bot[bot] commented 1 month ago

Issue Status: 🆕 *Untriaged

*🆕 Untriaged**

The team has not yet reviewed the issue. We usually do it within one business day. Docs: https://github.com/toeverything/AFFiNE/blob/canary/docs/issue-triaging.md

This is an automatic reply by the bot.

0Slmpnv0 commented 1 month ago

Another smaller issue, is that I cant change the window size. It changes, but the actual size of window stays unchanged. The space fills with white background

pengx17 commented 1 month ago

Have you integrated the app using AppImageLauncher? It is required to install as a desktop app to ensure deeplinks work.

0Slmpnv0 commented 1 month ago

No, I didnt. Thank you! Now it works