[release] v0.8.7

This commit is contained in:
Yann Stepienik 2023-06-26 13:17:11 +01:00
parent 7f9b002f2b
commit dccbbc0885
4 changed files with 5 additions and 1 deletions

View file

@ -9,6 +9,7 @@
- Improved setup flow for setting up hostname and HTTPS
- Fixed auto-update on ARM based CPU
- Fix issue with email links
- HideFromDashboard option on routes
## Version 0.8.0
- Custmizable homepage / theme colors

View file

@ -332,6 +332,8 @@ const HomePage = () => {
skip = true
}
}
if (route.HideFromDashboard)
skip = true;
return !skip && <Grid2 item xs={12} sm={6} md={4} lg={3} xl={3} xxl={3} key={route.Name}>
<Box className='app app-hover' style={{ padding: 18, borderRadius: 5, ...appColor }}>
<Link to={getFullOrigin(route)} target="_blank" style={{ textDecoration: 'none', ...appColor }}>

View file

@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.8.6",
"version": "0.8.7",
"description": "",
"main": "test-server.js",
"bugs": {

View file

@ -165,6 +165,7 @@ type ProxyRouteConfig struct {
BlockCommonBots bool
BlockAPIAbuse bool
AcceptInsecureHTTPSTarget bool
HideFromDashboard bool
}
type EmailConfig struct {