diff --git a/content/2.how-to guides/manage-license.md b/content/2.how-to guides/manage-license.md new file mode 100644 index 0000000..f5931bd --- /dev/null +++ b/content/2.how-to guides/manage-license.md @@ -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. diff --git a/content/3.troubleshooting/license-activation.md b/content/3.troubleshooting/license-activation.md index 92ee490..7b81d17 100644 --- a/content/3.troubleshooting/license-activation.md +++ b/content/3.troubleshooting/license-activation.md @@ -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' && ./.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' && ./.AppImage +``` :: -If the issue still persists, please reach out on our Discord server for further troubleshooting. \ No newline at end of file +::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\\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 Discord server for support.