Merge branch 'prod' into dev

This commit is contained in:
Ashok Gelal
2025-04-04 18:19:31 -04:00
2 changed files with 75 additions and 17 deletions
+19
View File
@@ -0,0 +1,19 @@
---
title: Manage Licenses
description: Learn how to manage your Msty license keys
navTruncate: false
---
If you need to manage your Msty License keys, you can do so by going to [Lemon Squeezy](https://app.lemonsqueezy.com/my-orders/login).
Enter the email you used to purchase your Msty Aurum license with and click 'Sign in'.
Lemon Squeezy will send you a link to sign into your account. Once you sign in, you will be able to see your orders and manage your License keys.
## Deactivate Device
Follow the same steps as above to sign into your Lemon Squeezy account.
Once you are signed in, click on the License you'd like to deactivate a device from.
You will see a list of devices the license key is currently activated on. Click on 'Deactivate' next to the device you'd like to deactivate.
+56 -17
View File
@@ -11,26 +11,65 @@ If you're having trouble with your Msty license activation not persisting, it mi
To resolve this, set the `XDG_CURRENT_DESKTOP` environment variable to `GNOME` before launching the app. This ensures Msty can interact properly with the keychain for storing your license.
::tabs{variant="card"}
::div{label="AppImage" icon="ph:linux-logo"}
### AppImage
::div{label="AppImage" icon="ph:linux-logo"}
Open a terminal window and run the following command to open Msty:
### AppImage
```sh
export XDG_CURRENT_DESKTOP='GNOME' && ./<FileName>.AppImage
```
::
Open a terminal window and run the following command to open Msty:
::div{label="deb" icon="tabler:brand-debian"}
### deb
Open a terminal window and run the following command to open Msty:
```sh
export XDG_CURRENT_DESKTOP='GNOME' && msty
```
::
```sh
export XDG_CURRENT_DESKTOP='GNOME' && ./<FileName>.AppImage
```
::
If the issue still persists, please reach out on our <a href="https://msty.app/discord?ref=docs" target="_blank">Discord</a> server for further troubleshooting.
::div{label="deb" icon="tabler:brand-debian"}
### deb
Open a terminal window and run the following command to open Msty:
```sh
export XDG_CURRENT_DESKTOP='GNOME' && msty
```
::
::
## Activation failure due to SSL error
This may happen if you are behind a proxy.
To resolve, try adding `NODE_TLS_REJECT_UNAUTHORIZED=0` prior to the app binary.
::tabs{variant="card" sync="download-os"}
::div{label="Windows" icon="iconoir:windows"}
### Windows
Open a terminal window and run the following command:
```sh
set NODE_TLS_REJECT_UNAUTHORIZED=0 && C:\Users\<USERNAME>\AppData\Local\Programs\Msty\Msty.exe
```
::
::div{label="Mac" icon="hugeicons:apple"}
### Mac
Open a terminal window and run the following command:
```sh
NODE_TLS_REJECT_UNAUTHORIZED=0 /Applications/Msty.app/Contents/MacOS/Msty
```
::
::
---
If you still have issues activating your license, please reach out on our <a href="https://msty.app/discord?ref=docs" target="_blank">Discord</a> server for support.