Skip to content

Commit

Permalink
Pushed version 1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelmalak committed Nov 8, 2021
1 parent 9db46fa commit 4f2ba0a
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 31 deletions.
3 changes: 1 addition & 2 deletions .dev/bookmarks_importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,5 +163,4 @@ def AddFlameBookmark(website_name, url, cat_id, icon_name):


if __name__ == "__main__":
FlameBookmarkParser(bookmarks_path)

FlameBookmarkParser(bookmarks_path)
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
PORT=5005
NODE_ENV=development
VERSION=1.7.3
VERSION=1.7.4
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
### v1.7.4 (TBA)
### v1.7.4 (2021-11-08)
- Added option to set custom greetings and date ([#103](https://github.com/pawelmalak/flame/issues/103))
- Fallback to web search if local search has zero results ([#129](https://github.com/pawelmalak/flame/issues/129))
- Added iOS "Add to homescreen" icon ([#131](https://github.com/pawelmalak/flame/issues/131))
- Added experimental script to import bookmarks ([#141](https://github.com/pawelmalak/flame/issues/141))
- Added 3 new themes

### v1.7.3 (2021-10-28)
Expand Down
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
FROM node:14-alpine as builder

RUN apk update && apk add --no-cache nano curl
FROM node:14 as builder

WORKDIR /app

Expand Down
12 changes: 4 additions & 8 deletions Dockerfile.multiarch
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
FROM node:14-alpine as builder

RUN apk update && apk add --no-cache nano curl
FROM node:14 as builder

WORKDIR /app

COPY package*.json ./

RUN apk --no-cache --virtual build-dependencies add python make g++ \
&& npm install --production
RUN npm install --production

COPY . .
COPY . .

RUN mkdir -p ./public ./data \
&& cd ./client \
&& npm install --production \
&& npm run build \
&& cd .. \
&& mv ./client/build/* ./public \
&& rm -rf ./client \
&& apk del build-dependencies
&& rm -rf ./client

FROM node:14-alpine

Expand Down
31 changes: 16 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,21 +121,6 @@ Follow instructions from wiki: [Installation without Docker](https://github.com/

## Usage

### Import HTML Bookmarks (Experimental)
- Requirements
- Python3
- pip packages: Pillow, beautifulsoup4
- Backup your db.sqlite before running script!
- Known Issues:
- generated icons are sometimes incorrect
```shell

pip3 install Pillow, beautifulsoup4

cd flame/.dev
python3 bookmarks_importer.py --bookmarks <path to bookmarks.html> --data <path to flame data folder>
```

### Search bar

#### Searching
Expand Down Expand Up @@ -216,6 +201,22 @@ metadata:

> "Use Kubernetes Ingress API" option must be enabled for this to work. You can find it in Settings > Other > Kubernetes section

### Import HTML Bookmarks (Experimental)

- Requirements
- python3
- pip packages: Pillow, beautifulsoup4
- Backup your `db.sqlite` before running script!
- Known Issues:
- generated icons are sometimes incorrect

```bash
pip3 install Pillow, beautifulsoup4
cd flame/.dev
python3 bookmarks_importer.py --bookmarks <path to bookmarks.html> --data <path to flame data folder>
```

### Custom CSS and themes

See project wiki for [Custom CSS](https://github.com/pawelmalak/flame/wiki/Custom-CSS) and [Custom theme with CSS](https://github.com/pawelmalak/flame/wiki/Custom-theme-with-CSS).
2 changes: 1 addition & 1 deletion client/.env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
REACT_APP_VERSION=1.7.3
REACT_APP_VERSION=1.7.4

0 comments on commit 4f2ba0a

Please sign in to comment.