Skip to content

Commit

Permalink
add version string
Browse files Browse the repository at this point in the history
  • Loading branch information
rookiepeng committed Jul 11, 2024
1 parent 5ea9b7d commit ac321f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions app_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@


APP_TITLE = "SensorView"
APP_VERSION = "v10.0"

DATA_PATH = "./data"
FRAME_CACHE_PATH = "./cache/frame"
Expand Down
5 changes: 3 additions & 2 deletions app_layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

import plotly.io as pio

from app_config import APP_TITLE
from app_config import APP_TITLE, APP_VERSION

colorscales = [
"Blackbody",
Expand Down Expand Up @@ -1392,7 +1392,8 @@ def get_app_layout():
},
),
dcc.Markdown(
"Designed and developed by **Zhengyu Peng** \
APP_VERSION
+ " | Designed and developed by **Zhengyu Peng** \
| Powered by [Dash](https://plotly.com/dash/)"
),
],
Expand Down

0 comments on commit ac321f9

Please sign in to comment.