Skip to content

Commit 4f2ba0a

Browse files
committed
Pushed version 1.7.4
1 parent 9db46fa commit 4f2ba0a

File tree

7 files changed

+26
-31
lines changed

7 files changed

+26
-31
lines changed

.dev/bookmarks_importer.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,4 @@ def AddFlameBookmark(website_name, url, cat_id, icon_name):
163163

164164

165165
if __name__ == "__main__":
166-
FlameBookmarkParser(bookmarks_path)
167-
166+
FlameBookmarkParser(bookmarks_path)

.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
PORT=5005
22
NODE_ENV=development
3-
VERSION=1.7.3
3+
VERSION=1.7.4

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
### v1.7.4 (TBA)
1+
### v1.7.4 (2021-11-08)
22
- Added option to set custom greetings and date ([#103](https://github.com/pawelmalak/flame/issues/103))
33
- Fallback to web search if local search has zero results ([#129](https://github.com/pawelmalak/flame/issues/129))
44
- Added iOS "Add to homescreen" icon ([#131](https://github.com/pawelmalak/flame/issues/131))
5+
- Added experimental script to import bookmarks ([#141](https://github.com/pawelmalak/flame/issues/141))
56
- Added 3 new themes
67

78
### v1.7.3 (2021-10-28)

Dockerfile

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
FROM node:14-alpine as builder
2-
3-
RUN apk update && apk add --no-cache nano curl
1+
FROM node:14 as builder
42

53
WORKDIR /app
64

Dockerfile.multiarch

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
1-
FROM node:14-alpine as builder
2-
3-
RUN apk update && apk add --no-cache nano curl
1+
FROM node:14 as builder
42

53
WORKDIR /app
64

75
COPY package*.json ./
86

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

12-
COPY . .
9+
COPY . .
1310

1411
RUN mkdir -p ./public ./data \
1512
&& cd ./client \
1613
&& npm install --production \
1714
&& npm run build \
1815
&& cd .. \
1916
&& mv ./client/build/* ./public \
20-
&& rm -rf ./client \
21-
&& apk del build-dependencies
17+
&& rm -rf ./client
2218

2319
FROM node:14-alpine
2420

README.md

+16-15
Original file line numberDiff line numberDiff line change
@@ -121,21 +121,6 @@ Follow instructions from wiki: [Installation without Docker](https://github.com/
121121

122122
## Usage
123123

124-
### Import HTML Bookmarks (Experimental)
125-
- Requirements
126-
- Python3
127-
- pip packages: Pillow, beautifulsoup4
128-
- Backup your db.sqlite before running script!
129-
- Known Issues:
130-
- generated icons are sometimes incorrect
131-
```shell
132-
133-
pip3 install Pillow, beautifulsoup4
134-
135-
cd flame/.dev
136-
python3 bookmarks_importer.py --bookmarks <path to bookmarks.html> --data <path to flame data folder>
137-
```
138-
139124
### Search bar
140125

141126
#### Searching
@@ -216,6 +201,22 @@ metadata:
216201

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

204+
### Import HTML Bookmarks (Experimental)
205+
206+
- Requirements
207+
- python3
208+
- pip packages: Pillow, beautifulsoup4
209+
- Backup your `db.sqlite` before running script!
210+
- Known Issues:
211+
- generated icons are sometimes incorrect
212+
213+
```bash
214+
pip3 install Pillow, beautifulsoup4
215+
216+
cd flame/.dev
217+
python3 bookmarks_importer.py --bookmarks <path to bookmarks.html> --data <path to flame data folder>
218+
```
219+
219220
### Custom CSS and themes
220221

221222
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).

client/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
REACT_APP_VERSION=1.7.3
1+
REACT_APP_VERSION=1.7.4

0 commit comments

Comments
 (0)