Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions docs/core-concepts/cycles.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,7 @@ When a cycle’s due date has passed, it moves into the completed state. This re
You can modify the name, description, start and due dates of active and upcoming cycles at any time.
:::

<div className="tag-wrapper">
## Transfer issues
<Tags
tags={[
{ name: "Pro", additionalClass: "pro" }
]}
/>
</div>
## Transfer issues

Once the due date of an active Cycle passes, it’s automatically marked as completed. After that, you can easily transfer any unfinished issues to an active or upcoming cycle, making it simple to move any leftover tasks to the next cycle.

Expand Down
2 changes: 1 addition & 1 deletion docs/core-concepts/projects/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Click the **…** icon next to your project name on the sidebar and click **Sett

## Add and manage members

To get others involved in your project, they first need to be part of your workspace. [Invite them](/core-concepts/workspaces/members#adding-members) to the workspace.
To get others involved in your project, they first need to be part of your workspace. [Invite them](/core-concepts/workspaces/members#add-member) to the workspace.

Once they’re in the workspace, you can invite them to join the project and assign roles like **Admin**, **Member**, or **Guest**. You can always update their roles later if needed.

Expand Down
52 changes: 52 additions & 0 deletions docs/performance/hyper-mode.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
title: Hyper Mode
---

# Turbocharge speed and performance

Hyper Mode is a feature in Plane designed to make your workspace faster and more responsive. By storing workspace data directly on your machine, Hyper Mode reduces the time it takes to load issues, modules, cycles, labels, members, and other workspace elements when using issue layouts.

## Use Hyper Mode

Hyper Mode is enabled by default. To manage it, click the **?** icon on the sidebar. This opens a menu where you can toggle **Hyper Mode** on or off as needed.

![Enable Hyper Mode](https://media.docs.plane.so/product/enable-hyper-mode.webp#center)

## Important security considerations

Logging out clears the locally stored data to protect your privacy.

If you're working on a shared or public computer, take extra precautions by:

- Disabling Hyper Mode or
- Ensuring you log out when you're done to clear the local cache.

## Under the hood

When you enable Hyper Mode, Plane creates a local cache on your machine using a SQLite database powered by the Origin Private File System (OPFS). This allows us to keep a synchronized copy of your workspace data right in your browser, dramatically reducing the need for repeated server requests.

## Data sync challenges

Our sync mechanism is continuously improving, but you might occasionally encounter inconsistencies. Most sync issues can be resolved with a simple page reload. If that doesn't work, try these steps:

### First-level troubleshooting

1. Disable Hyper Mode.
2. Wait 10 seconds.
3. Re-enable Hyper Mode.
4. Allow 10-30 seconds for data synchronization.

### Advanced troubleshooting
If the first method doesn't resolve your issue:

1. Disable Hyper Mode.
2. Completely quit your browser.
3. Re-open Plane.
4. Re-enable Hyper Mode.
5. Wait for full data synchronization.

:::tip
You can continue using the app while sync happens in the background.
:::

If these steps don't resolve the issue, reach out to our support team for further assistance.
13 changes: 13 additions & 0 deletions sidebars.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,14 @@ const sidebars: SidebarsConfig = {
'devices/mobile',
],
},
{
type: 'category',
collapsed: false,
label: 'Performance',
items: [
'performance/hyper-mode'
],
},
{
type: 'link',
label: 'API Reference',
Expand All @@ -170,6 +178,11 @@ const sidebars: SidebarsConfig = {
label: 'Webhooks',
href: 'https://developers.plane.so/webhooks/intro-webhooks',
},
{
type: 'link',
label: 'Changelog',
href: 'https://plane.so/changelog',
}
],
};
export default sidebars;