Skip to content

Commit

Permalink
remove pricing page
Browse files Browse the repository at this point in the history
  • Loading branch information
VShawn committed Aug 14, 2023
1 parent aae2ff7 commit f1a461a
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 6 deletions.
24 changes: 19 additions & 5 deletions source/docs/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ Latest Version: 0.7.2.8

!!! note
- The exe version of {{appname}} on GitHub is **completely free** for personal use.
- For Microsoft Store build, you may need to pay for a lifetime license.
- ~~For Microsoft Store build, you may need to pay for a lifetime license.~~ (As our previous income is now able to cover the recent maintenance costs(server\domain name\ etc.), this app will resume free downloads now)

| | {{appname}} <br/> Preview build | Old PRemoteM <br/> Stable EXE build | Old PRemoteM <br/> Microsoft Store build |
| :------------- | :----------------------------------------------------------------------------: | :--------------------------------------------------------: | :-----------------------------------------------------------------------: |
| Auto update || ⛔ <br/> You have to update it manually | ✅ <br/> You can update it from store or WinGet |
| Other features | ✅ + 💥New Features |||
| Price | Free | Free | About 💲1.99 (For store maintaining) |
| Auto update | | ⛔ <br/> You have to update it manually | ✅ <br/> You can update it from store or WinGet |
| Other features | ✅ + 💥New Features | | |
| Price | Free | Free | ~~💲1.99~~ Free <br/> |
| Download | [From GitHub Nightly](https://github.com/1Remote/1Remote/releases/tag/Nightly) | [From GitHub](https://github.com/1Remote/1Remote/releases) | [Microsoft Store](https://www.microsoft.com/store/productId/9PNMNF92JNFP) |
| Installer | `choco install 1remote` | `choco install premotem` | `winget install premotem` |
| Installer | `choco install 1remote` | `choco install premotem` | `winget install premotem` |

<!-- - Using [Winget](https://github.com/microsoft/winget-cli): `winget install premotem`
- [Chocolatey](https://chocolatey.org/packages/premotem): `choco install premotem` -->
Expand All @@ -40,4 +40,18 @@ Latest Version: 0.7.2.8
- [x] [Auto switching between multi-addresses (you don't have to select the address manually)](https://1remote.github.io/usage/alternative-credential/#auto-switching-address)
- [x] [Servers sharing within team (e.g. share servers with your colleagues)](https://1remote.github.io/usage/team/team-sharing/)


## Make 1Remote Stronger

If you like **1Remote**, help us make it stronger by doing any of the following:

1. Simply star the repository
2. [Help translation](https://1remote.github.io/usage/misc/help-translation/)
3. [Join DEV](DEVELOP.md)
4. [Buy a coffee](https://ko-fi.com/VShawn)

<p align="center" class="class-zh-cn" style="display: none">
<img src="https://raw.githubusercontent.com/1Remote/PRemoteM/Doc/DocPic/others/donate.jpg"/>
</p>

{% include 'footer.md' %}
30 changes: 30 additions & 0 deletions source/docs/extra/js/hide-something.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,33 @@
// $(".md-header .md-select").show();
// }
// });
<script>
// 如果 document.referrer 不是 来源于 "/zh-cn/" 则执行下面的代码
if (document.referrer === ''){
var type = navigator.appName;
if (type == "Netscape") {
var lang = navigator.language.toLowerCase();
} else {
var lang = navigator.browserLanguage.toLowerCase();
}
var lang = lang.substr(0, 5);
if (lang === "zh-cn" && window.location.pathname === "/") {
window.location.href = "/zh-cn/"
}
}
</script>


// 如果 document.referrer 不是 来源于 "/zh-cn/" 则执行下面的代码
if (document.referrer === '') {
var type = navigator.appName;
if (type == "Netscape") {
var lang = navigator.language.toLowerCase();
} else {
var lang = navigator.browserLanguage.toLowerCase();
}
var lang = lang.substr(0, 5);
if (lang === "zh-cn" && window.location.pathname === "/") {
// 显示所有 class = "class-zh-cn" 的元素
}
}
2 changes: 1 addition & 1 deletion source/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ nav:
- Creating Desktop shortcut for connections: usage/misc/desktop-shortcut-for-connection.md
- Help translation: usage/misc/help-translation.md
# - Customized: usage/misc/customized.md
- Pricing: pricing.md
# - Pricing: pricing.md
- Download: download.md
- Privacy Policy: privacy-policy.md
- About: about.md

0 comments on commit f1a461a

Please sign in to comment.