🔖 升级版本.

This commit is contained in:
lijiahang
2024-06-11 12:50:42 +08:00
parent ae03460a33
commit c9cbc5fd55
12 changed files with 17 additions and 13 deletions

View File

@@ -1,5 +1,6 @@
VITE_API_BASE_URL= 'http://127.0.0.1:9200/orion-visor/api'
VITE_WS_BASE_URL= 'ws://127.0.0.1:9200/orion-visor/keep-alive'
VITE_APP_VERSION= '2.0.5'
VITE_APP_VERSION= '2.0.6'
VITE_APP_RELEASE= 'Community'
VITE_SFTP_PREVIEW_MB= 2
VITE_DEMO_MODE= false

View File

@@ -1,5 +1,6 @@
VITE_API_BASE_URL= '/orion-visor/api'
VITE_WS_BASE_URL= '/orion-visor/keep-alive'
VITE_APP_VERSION= '2.0.5'
VITE_APP_VERSION= '2.0.6'
VITE_APP_RELEASE= 'Community'
VITE_SFTP_PREVIEW_MB= 2
VITE_DEMO_MODE= false

View File

@@ -1,7 +1,7 @@
{
"name": "orion-visor-ui",
"description": "Orion Visor UI",
"version": "2.0.5",
"version": "2.0.6",
"private": true,
"author": "Jiahang Li",
"license": "Apache 2.0",

View File

@@ -6,7 +6,7 @@
<a-link target="_blank" href="https://gitee.com/lijiahangmax/orion-visor">gitee</a-link>
<a-link target="_blank" href="https://lijiahangmax.github.io/open-orion/orion-visor">文档</a-link>
<a-link target="_blank" href="https://github.com/lijiahangmax/orion-visor/blob/main/LICENSE">License</a-link>
<a-link target="_blank" :href="`https://github.com/lijiahangmax/orion-visor/releases/tag/v${version}`">v{{ version }} Community</a-link>
<a-link target="_blank" :href="`https://github.com/lijiahangmax/orion-visor/releases/tag/v${version}`">v{{ version }} {{ release }}</a-link>
</a-space>
<span class="copyright">
Copyright<icon-copyright /> 2023 - {{ new Date().getFullYear() }} Li Jiahang, All rights reserved.
@@ -17,6 +17,7 @@
<script lang="ts" setup>
const version = import.meta.env.VITE_APP_VERSION;
const release = import.meta.env.VITE_APP_RELEASE;
</script>
<style lang="less" scoped>

View File

@@ -19,6 +19,7 @@ interface ImportMetaEnv {
readonly VITE_API_BASE_URL: string;
readonly VITE_WS_BASE_URL: string;
readonly VITE_APP_VERSION: string;
readonly VITE_APP_RELEASE: string;
readonly VITE_SFTP_PREVIEW_MB: string;
readonly VITE_DEMO_MODE: string;
}