Skip to content

Update README and change window title. #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,26 @@
# ImageTagger
Yet another image tagging and viewing app.
Yet another image tagging and viewing app - inspired by other image viewer apps and the tagging system of imageboards.

## Features

### Gallery View and Search
![Gallery View and Search](./static/res/flowers.PNG "Gallery View and Search")

### Tag Search
![Tag Search](./static/res/roses.PNG "Tag Search")

### Image View
![Image View](./static/res/view.PNG "Image View")

## Long-term Feature Goals
* Tag/album export
* More robust search
* User profiles/albums
* Tag categories

## Acknowledgements
* Pywebview - [Github](https://github.com/r0x0r/pywebview); [Website](https://pywebview.flowrl.com/)

#### Icons
* [Uri Herrera and others, KDE Visual Design Group; - KDE github; LGPL](https://commons.wikimedia.org/w/index.php?curid=49041173)
* [Andreas Kainz & Uri Herrera & Andrew Lake & Marco Martin & Harald Sitter & Jonathan Riddell & Ken Vermette & Aleix Pol & David Faure & Albert Vaca & Luca Beltrame & Gleb Popov & Nuno Pinheiro & Alex Richardson & Jan Grulich & Bernhard Landauer & Heiko Becker & Volker Krause & David Rosca & Phil Schaf / KDE, LGPL](https://commons.wikimedia.org/w/index.php?curid=49040296)
Binary file modified db/database.db
Binary file not shown.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ def goto_view (self, img_id=None, image_path=None):

if __name__ == '__main__':
api = Api()
window = webview.create_window('Test', html='init',js_api=api, min_size=(880, 600), easy_drag=False, frameless=False)
window = webview.create_window('Image Tagger', html='init',js_api=api, min_size=(880, 600), easy_drag=False, frameless=False)
window.closed += on_closed
webview.start(load_html, window, gui="mshtml")
Binary file added static/res/flowers.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/res/roses.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/res/view.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.