Skip to content

Commit

Permalink
Docs: (test) link settings page via deep link
Browse files Browse the repository at this point in the history
  • Loading branch information
MM2-0 committed Aug 13, 2024
1 parent 84a62ae commit c2a8277
Show file tree
Hide file tree
Showing 4 changed files with 634 additions and 177 deletions.
2 changes: 1 addition & 1 deletion docs/docs/user-guide/concepts/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ or install them manually as APK files.
### Activation

After the plugin has been installed, it needs to be activated in the launcher settings. To do this,
go to settings > plugins, tap on the plugin you want to activate, and enable it. The plugin will
go to <a href="/in-app?route=settings/plugins">settings > plugins</a>, tap on the plugin you want to activate, and enable it. The plugin will
show a permission dialog. Tap on "Allow" to give the launcher the necessary permission to access
the plugin's data.

Expand Down
24 changes: 24 additions & 0 deletions docs/in-app.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<script setup>
import { useRoute } from 'vitepress'
import { ref, onMounted } from 'vue'
import QRCode from 'qrcode'

import {VPButton} from 'vitepress/theme'


const route = useRoute()
const canvas = ref(null)

const qrcode = ref(null)

onMounted(async () => {
qrcode.value = await QRCode.toDataURL(window.location.href)
})

</script>

# Open settings page

Scan this code to view the linked settings page in Kvaesitso.

<img :src="qrcode">
Loading

0 comments on commit c2a8277

Please sign in to comment.