Browse Source

[release] v0.13.0-unstable9

Yann Stepienik 1 year ago
parent
commit
eae11eb3ce
3 changed files with 8 additions and 7 deletions
  1. 3 2
      changelog.md
  2. 4 4
      client/src/pages/config/users/proxyman.jsx
  3. 1 1
      package.json

+ 3 - 2
changelog.md

@@ -1,15 +1,16 @@
 ## Version 0.13.0
 ## Version 0.13.0
- - Display containers as stacks
+ - Display container stacks as a group in the UI
  - New Delete modal to delete services entirely
  - New Delete modal to delete services entirely
  - Upload custom icons to containers
  - Upload custom icons to containers
  - improve backup file, by splitting cosmos out to a separate docker-compose.yml file
  - improve backup file, by splitting cosmos out to a separate docker-compose.yml file
- - Cosmos-networks now have specific names instead for a generic names
+ - Cosmos-networks now have specific names instead for generic names
  - Fix issue where search bar reset when deleting volume/network
  - Fix issue where search bar reset when deleting volume/network
  - Fix breadcrumbs in subpaths
  - Fix breadcrumbs in subpaths
  - Remove graphs from non-admin UI to prevent errors
  - Remove graphs from non-admin UI to prevent errors
  - Rewrite the overwriting container logic to fix race conditions
  - Rewrite the overwriting container logic to fix race conditions
  - Edit container user and devices from UI
  - Edit container user and devices from UI
  - Fix bug where Cosmos Constellation's UDP ports by a TCP one
  - Fix bug where Cosmos Constellation's UDP ports by a TCP one
+ - Fix a bug with URL screen, where you can't delete a URL when there is a search
  - Support array command and single device in docker-compose import
  - Support array command and single device in docker-compose import
  - Add default alerts... by default (was missing from the default config)
  - Add default alerts... by default (was missing from the default config)
  - disable few features liks Constellation, Backup and Monitoring when in install mode to reduce logs and prevent issues with the DB
  - disable few features liks Constellation, Backup and Monitoring when in install mode to reduce logs and prevent issues with the DB

+ 4 - 4
client/src/pages/config/users/proxyman.jsx

@@ -206,10 +206,10 @@ const ProxyManagement = () => {
           style: {minWidth: '70px'} },
           style: {minWidth: '70px'} },
           { title: '', clickable:true, field: (r, k) =>  <RouteActions
           { title: '', clickable:true, field: (r, k) =>  <RouteActions
               route={r}
               route={r}
-              routeKey={k}
-              up={(event) => up(event, k)}
-              down={(event) => down(event, k)}
-              deleteRoute={(event) => deleteRoute(event, k)}
+              routeKey={routes.indexOf(r)}
+              up={(event) => up(event, routes.indexOf(r))}
+              down={(event) => down(event, routes.indexOf(r))}
+              deleteRoute={(event) => deleteRoute(event, routes.indexOf(r))}
             />,
             />,
             style: {
             style: {
               textAlign: 'right',
               textAlign: 'right',

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
 {
   "name": "cosmos-server",
   "name": "cosmos-server",
-  "version": "0.13.0-unstable8",
+  "version": "0.13.0-unstable9",
   "description": "",
   "description": "",
   "main": "test-server.js",
   "main": "test-server.js",
   "bugs": {
   "bugs": {