1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-18 19:19:36 +02:00

Pushed version 1.7.4

This commit is contained in:
Paweł Malak 2021-11-08 15:42:32 +01:00
parent 9db46faabe
commit 4f2ba0a96d
7 changed files with 26 additions and 31 deletions

View file

@ -163,5 +163,4 @@ def AddFlameBookmark(website_name, url, cat_id, icon_name):
if __name__ == "__main__": if __name__ == "__main__":
FlameBookmarkParser(bookmarks_path) FlameBookmarkParser(bookmarks_path)

2
.env
View file

@ -1,3 +1,3 @@
PORT=5005 PORT=5005
NODE_ENV=development NODE_ENV=development
VERSION=1.7.3 VERSION=1.7.4

View file

@ -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)) - 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)) - 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 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 - Added 3 new themes
### v1.7.3 (2021-10-28) ### v1.7.3 (2021-10-28)

View file

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

View file

@ -1,15 +1,12 @@
FROM node:14-alpine as builder FROM node:14 as builder
RUN apk update && apk add --no-cache nano curl
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY package*.json ./
RUN apk --no-cache --virtual build-dependencies add python make g++ \ RUN npm install --production
&& npm install --production
COPY . . COPY . .
RUN mkdir -p ./public ./data \ RUN mkdir -p ./public ./data \
&& cd ./client \ && cd ./client \
@ -17,8 +14,7 @@ RUN mkdir -p ./public ./data \
&& npm run build \ && npm run build \
&& cd .. \ && cd .. \
&& mv ./client/build/* ./public \ && mv ./client/build/* ./public \
&& rm -rf ./client \ && rm -rf ./client
&& apk del build-dependencies
FROM node:14-alpine FROM node:14-alpine

View file

@ -121,21 +121,6 @@ Follow instructions from wiki: [Installation without Docker](https://github.com/
## Usage ## 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 ### Search bar
#### Searching #### Searching
@ -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 > "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 ### 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). 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).

View file

@ -1 +1 @@
REACT_APP_VERSION=1.7.3 REACT_APP_VERSION=1.7.4