mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 03:29:37 +02:00
Added changelog. Added curl to Docker image
This commit is contained in:
parent
a5d6cf04cf
commit
d39eda49de
7 changed files with 17 additions and 5 deletions
|
@ -1,3 +1,4 @@
|
||||||
node_modules
|
node_modules
|
||||||
github
|
github
|
||||||
public
|
public
|
||||||
|
build.sh
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
node_modules
|
node_modules
|
||||||
data
|
data
|
||||||
public
|
public
|
||||||
|
build.sh
|
|
@ -1,6 +1,7 @@
|
||||||
### v1.6.1 (2021-07-28)
|
### v1.6.1 (2021-07-28)
|
||||||
- Added option to upload custom icons for bookmarks ([#52](https://github.com/pawelmalak/flame/issues/52))
|
- 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))
|
- Fixed custom icons not updating ([#58](https://github.com/pawelmalak/flame/issues/58))
|
||||||
|
- Added changelog file
|
||||||
|
|
||||||
### v1.6 (2021-07-17)
|
### v1.6 (2021-07-17)
|
||||||
- Added support for Steam URLs ([#62](https://github.com/pawelmalak/flame/issues/62))
|
- Added support for Steam URLs ([#62](https://github.com/pawelmalak/flame/issues/62))
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM node:14-alpine
|
FROM node:14-alpine
|
||||||
|
|
||||||
RUN apk update && apk add --no-cache nano
|
RUN apk update && apk add --no-cache nano curl
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
FROM node:14-alpine
|
FROM node:14-alpine
|
||||||
|
|
||||||
RUN apk update && apk add --no-cache nano
|
RUN apk update && apk add --no-cache nano curl
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,15 @@ const AppDetails = (): JSX.Element => {
|
||||||
{' '}
|
{' '}
|
||||||
version {process.env.REACT_APP_VERSION}
|
version {process.env.REACT_APP_VERSION}
|
||||||
</p>
|
</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>
|
<Button click={() => checkVersion(true)}>Check for updates</Button>
|
||||||
</Fragment>
|
</Fragment>
|
||||||
)
|
)
|
||||||
|
|
|
@ -72,7 +72,7 @@ export interface AddBookmarkAction {
|
||||||
export const addBookmark = (formData: NewBookmark | FormData) => async (dispatch: Dispatch) => {
|
export const addBookmark = (formData: NewBookmark | FormData) => async (dispatch: Dispatch) => {
|
||||||
try {
|
try {
|
||||||
const res = await axios.post<ApiResponse<Bookmark>>('/api/bookmarks', formData);
|
const res = await axios.post<ApiResponse<Bookmark>>('/api/bookmarks', formData);
|
||||||
console.log(res.data.data)
|
|
||||||
dispatch<CreateNotificationAction>({
|
dispatch<CreateNotificationAction>({
|
||||||
type: ActionTypes.createNotification,
|
type: ActionTypes.createNotification,
|
||||||
payload: {
|
payload: {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue