Skip to content

Commit

Permalink
Merge pull request #100 from andrew-hossack/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
andrew-hossack committed Jan 29, 2023
2 parents 11355d7 + af43737 commit c6013ee
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 4 deletions.
6 changes: 6 additions & 0 deletions docs/source/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [1.10.8] - 2023-1-29

### Added

- Added github star link

## [1.10.7] - 2022-12-24

### Modified
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -- Project information

__version__ = '1.10.7'
__version__ = '1.10.8'

project = 'DashTools'
author = 'Andrew Hossack'
Expand Down
6 changes: 5 additions & 1 deletion src/dashtools/dashboard/assets/code.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ code {
background:rgba(248, 249, 250, 0.65);
padding: .1rem .3rem .2rem;
border-radius: .2rem;
}
}

.white-link a{
color: white;
}
12 changes: 11 additions & 1 deletion src/dashtools/dashboard/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from .components import sidebar

app = Dash(
title="DashTools - Application Management Dashboard",
title="DashTools - Application Dashboard",
update_title=None,
external_stylesheets=[dbc.themes.BOOTSTRAP],
suppress_callback_exceptions=True,
Expand All @@ -32,6 +32,16 @@
app.layout = dmc.NotificationsProvider(
html.Div(
[
dmc.Header(id="gh-header", children=[
dcc.Markdown(
'_Thank you for using DashTools!_ If you like it, consider leaving the project a [⭐ on GitHub](https://github.com/andrew-hossack/dash-tools).',
link_target="_blank",
style={
"backgroundColor": "#202020",
"color": "white",
"text-align": "center",
})
], class_name='white-link', fixed=True, height=0),
html.Div(id="notifications-container-file-explorer"),
html.Div(id="notifications-container-file-generator"),
dcc.Location(id="url"),
Expand Down
2 changes: 1 addition & 1 deletion src/dashtools/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Version in this file must match version for docs/source/version.py!

__version__ = '1.10.7'
__version__ = '1.10.8'

0 comments on commit c6013ee

Please sign in to comment.