-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #826 from DJ2LS/develop
0.16.7
- Loading branch information
Showing
14 changed files
with
214 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ jobs: | |
- name: Publish to PyPI | ||
uses: pypa/[email protected] | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,32 @@ | ||
<template> | ||
<FreeDATAMain /> | ||
<Suspense> | ||
<template #default> | ||
<!-- Lazy load FreeDATAMain --> | ||
<FreeDATAMain /> | ||
</template> | ||
<template #fallback> | ||
<!-- Show loading screen while the component is loading --> | ||
<LoadingScreen /> | ||
</template> | ||
</Suspense> | ||
</template> | ||
|
||
<script setup> | ||
import FreeDATAMain from './components/main_screen.vue'; | ||
import { onMounted } from 'vue'; | ||
import { defineAsyncComponent, onMounted } from 'vue'; | ||
// Lazy load FreeDATAMain | ||
const FreeDATAMain = defineAsyncComponent(() => | ||
import('./components/main_screen.vue') | ||
); | ||
// Import the loading screen | ||
const LoadingScreen = defineAsyncComponent(() => | ||
import('./components/main_loading_screen.vue') | ||
); | ||
// Set attributes on the <html> element | ||
onMounted(() => { | ||
// Set attributes on the <html> element | ||
document.documentElement.setAttribute('lang', 'en'); | ||
document.documentElement.setAttribute('data-bs-theme', 'light'); | ||
}); | ||
</script> | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.