mirror of
https://github.com/koel/koel
synced 2024-11-27 22:40:26 +00:00
feat(docs): add tip for discount
This commit is contained in:
parent
e927711404
commit
f99343e496
3 changed files with 16 additions and 8 deletions
|
@ -22,6 +22,15 @@ export default defineConfig({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
themeConfig: {
|
themeConfig: {
|
||||||
|
search: {
|
||||||
|
provider: 'algolia',
|
||||||
|
options: {
|
||||||
|
appId: '2EQKL1O1UU',
|
||||||
|
apiKey: 'e9d7b5be73f29af4030535a726ec7196',
|
||||||
|
indexName: 'koel'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
outline: {
|
outline: {
|
||||||
level: 'deep'
|
level: 'deep'
|
||||||
},
|
},
|
||||||
|
|
|
@ -3,11 +3,6 @@
|
||||||
--vp-c-brand-2: #d80693;
|
--vp-c-brand-2: #d80693;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark {
|
|
||||||
--vp-c-brand-1: #ff9be3;
|
|
||||||
--vp-c-brand-2: #ff6ecf;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vp-doc {
|
.vp-doc {
|
||||||
kbd {
|
kbd {
|
||||||
background-color: var(--vp-code-bg);
|
background-color: var(--vp-code-bg);
|
||||||
|
|
|
@ -10,6 +10,10 @@ Pay __once__, and you get all current _and_ future updates at no extra fee, fore
|
||||||
|
|
||||||
<a class="lemonsqueezy-button" :href="config.plus.purchaseUrl">Click here</a> to purchase Koel Plus.
|
<a class="lemonsqueezy-button" :href="config.plus.purchaseUrl">Click here</a> to purchase Koel Plus.
|
||||||
|
|
||||||
|
<div class="info custom-block" style="padding-top: 8px">
|
||||||
|
❤️ If you’re a current or past sponsor, <a href="mailto:me@phanan.net">reach out</a> for a discount code. ❤️
|
||||||
|
</div>
|
||||||
|
|
||||||
## Activation
|
## Activation
|
||||||
|
|
||||||
<UISubjectToChangeNote />
|
<UISubjectToChangeNote />
|
||||||
|
@ -38,7 +42,7 @@ If the key is valid, you'll see a Success message.
|
||||||
|
|
||||||
### Verification
|
### Verification
|
||||||
|
|
||||||
To verify that Koel Plus is activated, reload the web app if you haven't done so.
|
To verify that Koel Plus is activated, reload the web app if you haven't done so.
|
||||||
Afterward, trigger the About Koel modal by clicking the <InterfaceIcon :src="iconInfo" /> icon in the bottom-right corner of the screen.
|
Afterward, trigger the About Koel modal by clicking the <InterfaceIcon :src="iconInfo" /> icon in the bottom-right corner of the screen.
|
||||||
You should see the information about your Koel Plus license in the modal.
|
You should see the information about your Koel Plus license in the modal.
|
||||||
|
|
||||||
|
@ -55,9 +59,9 @@ php artisan koel:license:deactivate
|
||||||
Reload Koel, and it will revert to the Community edition. You can re-activate it at any time following the steps above.
|
Reload Koel, and it will revert to the Community edition. You can re-activate it at any time following the steps above.
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { onMounted } from 'vue'
|
import { onMounted } from 'vue'
|
||||||
import iconInfo from '../assets/icons/info.svg'
|
import iconInfo from '../assets/icons/info.svg'
|
||||||
import config from '../config'
|
import config from '../config'
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
window.createLemonSqueezy()
|
window.createLemonSqueezy()
|
||||||
|
|
Loading…
Reference in a new issue