Added changelog. Added curl to Docker image

This commit is contained in:
unknown 2021-07-28 12:52:30 +02:00
parent a5d6cf04cf
commit d39eda49de
7 changed files with 17 additions and 5 deletions

View file

@ -1,3 +1,4 @@
node_modules
github
public
public
build.sh

3
.gitignore vendored
View file

@ -1,3 +1,4 @@
node_modules
data
public
public
build.sh

View file

@ -1,6 +1,7 @@
### v1.6.1 (2021-07-28)
- Added option to upload custom icons for bookmarks ([#52](https://github.com/pawelmalak/flame/issues/52))
- Fixed custom icons not updating ([#58](https://github.com/pawelmalak/flame/issues/58))
- Added changelog file
### v1.6 (2021-07-17)
- Added support for Steam URLs ([#62](https://github.com/pawelmalak/flame/issues/62))

View file

@ -1,6 +1,6 @@
FROM node:14-alpine
RUN apk update && apk add --no-cache nano
RUN apk update && apk add --no-cache nano curl
WORKDIR /app

View file

@ -1,6 +1,6 @@
FROM node:14-alpine
RUN apk update && apk add --no-cache nano
RUN apk update && apk add --no-cache nano curl
WORKDIR /app

View file

@ -17,6 +17,15 @@ const AppDetails = (): JSX.Element => {
{' '}
version {process.env.REACT_APP_VERSION}
</p>
<p className={classes.AppVersion}>
See changelog {' '}
<a
href='https://github.com/pawelmalak/flame/CHANGELOG.md'
target='_blank'
rel='noreferrer'>
here
</a>
</p>
<Button click={() => checkVersion(true)}>Check for updates</Button>
</Fragment>
)

View file

@ -72,7 +72,7 @@ export interface AddBookmarkAction {
export const addBookmark = (formData: NewBookmark | FormData) => async (dispatch: Dispatch) => {
try {
const res = await axios.post<ApiResponse<Bookmark>>('/api/bookmarks', formData);
console.log(res.data.data)
dispatch<CreateNotificationAction>({
type: ActionTypes.createNotification,
payload: {