Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
4516a7ba0b | |||
92b40859ae | |||
61cd1ced16 | |||
066d527ccd | |||
5f3687389b |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
*.zip
|
*.zip
|
||||||
|
cookies_txt/LICENSE
|
||||||
|
@ -1,2 +1,6 @@
|
|||||||
|
1.0.1
|
||||||
|
- Fix installation caused by incorrectly placed LICENSE file
|
||||||
|
- Specify a Falkon Entry-point for compatibility
|
||||||
|
|
||||||
1.0.0
|
1.0.0
|
||||||
- First release
|
- First release
|
||||||
|
10
Makefile
10
Makefile
@ -1,13 +1,17 @@
|
|||||||
PROJECT = cookies_txt
|
PROJECT = cookies_txt
|
||||||
VERSION = 1.0.0
|
VERSION = 1.0.1
|
||||||
|
|
||||||
FILES = $(PROJECT)/main.qml
|
FILES = $(PROJECT)/main.qml
|
||||||
FILES += $(PROJECT)/metadata.desktop
|
FILES += $(PROJECT)/metadata.desktop
|
||||||
FILES += $(PROJECT)/cookie.svg
|
FILES += $(PROJECT)/cookie.svg
|
||||||
FILES += LICENSE
|
FILES += $(PROJECT)/LICENSE
|
||||||
|
|
||||||
package:
|
package: copy_license
|
||||||
zip -X $(PROJECT)_v$(VERSION).zip $(FILES)
|
zip -X $(PROJECT)_v$(VERSION).zip $(FILES)
|
||||||
|
|
||||||
|
copy_license:
|
||||||
|
@cp "LICENSE" "$(PROJECT)/LICENSE"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
rm "./$(PROJECT)/LICENSE"
|
||||||
rm "./$(PROJECT)_v$(VERSION).zip"
|
rm "./$(PROJECT)_v$(VERSION).zip"
|
||||||
|
@ -13,7 +13,7 @@ Go to [Falkon store](https://store.falkon.org/p/1917615/) press `Install` and fo
|
|||||||
### Manual
|
### Manual
|
||||||
Copy the `cookies_txt` directory into `~/.config/falkon/plugins/`
|
Copy the `cookies_txt` directory into `~/.config/falkon/plugins/`
|
||||||
|
|
||||||
## Thank to
|
## Thanks to
|
||||||
Code partialy based on [Firefox](https://github.com/lennonhill/cookies-txt) and [Chrome](https://github.com/daftano/cookies.txt/tree/6e22403d489fe841a3013c16c710f87888c7b95f) extensions.
|
Code partially based on [Firefox](https://github.com/lennonhill/cookies-txt) and [Chrome](https://github.com/daftano/cookies.txt/tree/6e22403d489fe841a3013c16c710f87888c7b95f) extensions.
|
||||||
|
|
||||||
The cookie icon is taken from [SVG Repo](https://www.svgrepo.com/svg/30963/cookie).
|
The cookie icon is taken from [SVG Repo](https://www.svgrepo.com/svg/30963/cookie).
|
||||||
|
@ -5,8 +5,9 @@ Comment=Exports cookies in text format compatible with many basic tools.
|
|||||||
Icon=cookie.svg
|
Icon=cookie.svg
|
||||||
Type=Service
|
Type=Service
|
||||||
X-Falkon-Type=Extension/Qml
|
X-Falkon-Type=Extension/Qml
|
||||||
|
X-Falkon-EntryPoint=main.qml
|
||||||
|
|
||||||
X-Falkon-Author=Juraj Oravec
|
X-Falkon-Author=Juraj Oravec
|
||||||
X-Falkon-Email=jurajoravec@mailo.com
|
X-Falkon-Email=jurajoravec@mailo.com
|
||||||
X-Falkon-Version=1.0.0
|
X-Falkon-Version=1.0.1
|
||||||
X-Falkon-Settings=false
|
X-Falkon-Settings=false
|
||||||
|
Loading…
Reference in New Issue
Block a user