Skip to content

Commit

Permalink
[release] v0.14.4
Browse files Browse the repository at this point in the history
  • Loading branch information
azukaar committed Feb 13, 2024
1 parent efe6860 commit 14aa808
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 25 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Version 0.14.4
- Fix issue with the volumes going read only

## Version 0.14.3
- Added app count to the marketplace

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,6 @@ const NavItem = ({ item, level }) => {
transform: 'translateY(-5px)',
display: 'inline-block',
}}>Beta</span></>;

if(item.title === "Monitoring")
item.title = <>{item.title} <span style={{
color: 'gray',
fontSize: '11px',
textDecoration: 'italic',
transform: 'translateY(-5px)',
display: 'inline-block',
}}>New!</span></>;

return (
<ListItemButton
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/home/migrate014.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const Migrate014 = ({ config }) => {
<li>You won't need all the cosmos-network anymore to connect to containers</li>
<li>You can see all your server's networking data in the monitoring tab (not just the docker data)</li>
<li>Docker-compose imported container will work out-of-the-box</li>
<li>Remove the docker overhead (small performance gain) and ensure Docker does not meddle with IP informations</li>
<li>Remove the docker overhead (small performance gain) and ensure Docker does not meddle with IP information</li>
<li>Faster boot time (no bootstrapping of containers needed)</li>
</ul>
Cosmos can automatically migrate to the host mode, but before you do so, please confirm what ports you want to use with Cosmos (default are 80/443).
Expand Down
16 changes: 2 additions & 14 deletions client/src/pages/servapps/containers/volumes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,15 @@ import React from 'react';
import { Formik } from 'formik';
import { Button, Stack, Grid, MenuItem, TextField, IconButton, FormHelperText, CircularProgress, useTheme, Checkbox, Alert } from '@mui/material';
import MainCard from '../../../components/MainCard';
import { CosmosCheckbox, CosmosFormDivider, CosmosInputText, CosmosSelect }
from '../../config/users/formShortcuts';
import { ApiOutlined, CheckCircleOutlined, CloseCircleOutlined, DeleteOutlined, PlayCircleOutlined, PlusCircleOutlined } from '@ant-design/icons';
import { PlusCircleOutlined } from '@ant-design/icons';
import * as API from '../../../api';
import { LoadingButton } from '@mui/lab';
import PrettyTableView from '../../../components/tableView/prettyTableView';
import { NetworksColumns } from '../networks';
import NewNetworkButton from '../createNetwork';
import ResponsiveButton from '../../../components/responseiveButton';

const VolumeContainerSetup = ({ noCard, containerInfo, frozenVolumes = [], refresh, newContainer, OnChange }) => {
const restartPolicies = [
['no', 'No Restart'],
['always', 'Always Restart'],
['on-failure', 'Restart On Failure'],
['unless-stopped', 'Restart Unless Stopped'],
];

const [volumes, setVolumes] = React.useState([]);
const theme = useTheme();
const isDark = theme.palette.mode === 'dark';

React.useEffect(() => {
API.docker.volumeList().then((res) => {
Expand Down Expand Up @@ -89,7 +77,7 @@ const VolumeContainerSetup = ({ noCard, containerInfo, frozenVolumes = [], refre
Type: volume.Type,
Source: volume.Source,
Target: volume.Target,
ReadOnly: !volume.RW
ReadOnly: false // TODO: add support for this
}))
};
return API.docker.updateContainer(containerInfo.Name.replace('/', ''), realvalues)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.14.3",
"version": "0.14.4",
"description": "",
"main": "test-server.js",
"bugs": {
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<a href="https://github.com/DGAzr"><img src="https://avatars.githubusercontent.com/DGAzr" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a>
<a href="https://github.com/eldergod1800"><img src="https://avatars.githubusercontent.com/eldergod1800" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a>
<a href="https://github.com/Fortcraft"><img src="https://avatars.githubusercontent.com/Fortcraft" style="border-radius:48px" width="48" height="48" alt="null" title="null" /></a>
<a href="https://github.com/Gordi90"><img src="https://avatars.githubusercontent.com/Gordi90" style="border-radius:48px" width="48" height="48" alt="Dér Kristóf Gordon" title="Dér Kristóf Gordon" /></a>
</p><!-- /sponsors -->

---
Expand Down

0 comments on commit 14aa808

Please sign in to comment.