mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
23c67bcdba
* feat: support a event for getting encoded collab of document * feat: support publish view and unpublish views * feat: publish page to the web * chore: refacotor share bloc * feat: call the publish event * feat: support publish view and unpublish views * feat: integrate publish api * feat: integrate unpublish api * feat: fetch the publish info to show the publish status * feat: support publish interfaces * fix: lint error * fix: modified web server * fix: some style * fix: some style * fix: some style * fix: some style * fix: some style * fix: some style * fix: some style * fix: some style * fix: some style * fix: update codes * fix: update codes * fix: update codes * fix: update codes * fix: update codes * chore: refactor publish bloc * fix: some style * fix: some style * fix: some style * fix: some style * fix: some style * fix: some style * fix: the name is too long to publish * chore: change color * fix: some style * fix: some style * feat: refacotor share menu UI * fix: some style * fix: lint * fix: some style * feat: refacotor export-as * fix: some style * chore: refactor share menu colors * fix: rust ci * fix: some style * fix: some style * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: bugs * fix: rerelease * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: deploy * fix: og image * fix: support copy button * fix: support copy button * fix: support copy button * chore: add a params * feat: use default publish name * chore: update copy * feat: show a confirm deletion dialog if the deleted page contains published page * feat: add copy toast in publish tab * fix: to 404 fix: to 404 fix: to 404 fix: the error to 404 * feat: unpublish the page auto when moving it to another space * feat: improve confirm deletion dialog * feat: show unpublish error * chore: use beta.appflowy.com * feat: disable publish in non-apppflowy-cloud user mode * fix: modified bullted icon style * fix: the dark mode color * fix: save the dark mode in local storage * fix: text color * chore: make bash script more portable (#5679) * fix: title longer * chore: move the files and modified the en * chore: update deploy.sh * chore: modified Dockerfile * chore: modified server.cjs to server.js * chore: modifed server.js to server.ts * chore: replace publish url * chore: remove todo list hover * chore: show confirm dialog before deleting page * fix: unpublish the pages before deleting * fix: table cell bg color * fix: callout icon * fix: list number * fix: emoji * fix: number icon * fix: callout icon position * fix: add margin bottom * fix: code block * fix: support scroll for breadcrumbs * fix: the breadcrumb doesn't update after moving page * fix: 0705 issues * fix: update publish status afer deleting page * chore: add hover effect for visit site button * fix: remove puiblish url text field enable border color * chore: update delete page copy * chore: enable debug category * fix: only render sidebar if the spaces are ready * fix: the breadcrumb doesn't update after moving page * fix: auto code * fix: add emoji * fix: add emoji * fix: favicon * fix: cypress test * fix: remove deploy ci * fix: default url * chore: revert launch.json * fix: docker ci * fix: change favicon * fix: flutter integration test * feat: add hover effect to share menu * chore: add a checkmark if the page has been published * chore: revert space deletion --------- Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io> Co-authored-by: Zack <speed2exe@live.com.sg>
72 lines
2.9 KiB
HTML
72 lines
2.9 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/appflowy.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AppFlowy</title>
|
|
<meta name="description"
|
|
content="AppFlowy is an AI collaborative workspace where you achieve more without losing control of your data"
|
|
/>
|
|
<meta property="og:title" content="AppFlowy" />
|
|
<meta property="og:description"
|
|
content="AppFlowy is an AI collaborative workspace where you achieve more without losing control of your data"
|
|
/>
|
|
<meta property="og:image"
|
|
content="/_next/static/media/og-image.e347bfb5.png"
|
|
/>
|
|
<meta property="og:url" content="https://appflowy.com" />
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
<meta name="twitter:title" content="AppFlowy" />
|
|
<meta name="twitter:description"
|
|
content="AppFlowy is an AI collaborative workspace where you achieve more without losing control of your data"
|
|
/>
|
|
<meta name="twitter:image"
|
|
content="/_next/static/media/og-image.e347bfb5.png"
|
|
/>
|
|
<meta name="twitter:site" content="@appflowy" />
|
|
<meta name="twitter:creator" content="@appflowy" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body id="body">
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
|
|
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const userAgent = window.navigator.userAgent.toLowerCase();
|
|
const body = document.body;
|
|
const isWin = userAgent.indexOf('win') > -1;
|
|
const isMac = userAgent.indexOf('mac') > -1;
|
|
const isLinux = userAgent.indexOf('linux') > -1;
|
|
const isFirefox = userAgent.indexOf('firefox') > -1;
|
|
const isChrome = userAgent.indexOf('chrome') > -1;
|
|
const isSafari = userAgent.indexOf('safari') > -1;
|
|
if (isWin) {
|
|
body.setAttribute('data-os', 'windows');
|
|
} else if (isMac) {
|
|
body.setAttribute('data-os', 'mac');
|
|
} else if (isLinux) {
|
|
body.setAttribute('data-os', 'linux');
|
|
} else {
|
|
body.setAttribute('data-os', 'unknown');
|
|
}
|
|
|
|
if (isFirefox) {
|
|
body.setAttribute('data-browser', 'firefox');
|
|
} else if (isChrome) {
|
|
body.setAttribute('data-browser', 'chrome');
|
|
} else if (isSafari) {
|
|
body.setAttribute('data-browser', 'safari');
|
|
} else {
|
|
body.setAttribute('data-browser', 'unknown');
|
|
}
|
|
});
|
|
</script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.26.0/prism.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.26.0/plugins/autoloader/prism-autoloader.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/highlight.min.js"></script>
|
|
</body>
|
|
</html>
|