Skip to content

Commit

Permalink
added installation instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Palexer committed Dec 31, 2020
1 parent e03ef5f commit 759965a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
# vendor/

.vscode/
fyne-cross
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,40 @@
- image processing backend: gift
- cross compilation: fyne-cross

## Installation

Packages are currently available for Windows, macOS and Linux.
On Windows and macOS, just download the packages from the [releases section](https://github.com/Palexer/image-viewer/releases)
and install it as usual.

*Note for Mac users: There might be a warning, that the OS doesn't trust the application. In this case press Ctrl+left click on the
application and select open. Next time the app should open like any other program.

On Linux you'll need download the package from the [releases section](https://github.com/Palexer/image-viewer/releases) too.
Then extract the archive.
To install type (in the folder that contains the Makefile):

``` bash
sudo make install
```

To uninstall type:
``` bash
sudo make uninstall
```

## ToDo

- undo/redo: change parameter values
- open recent images
- creation time:

```
info, _ := os.Stat(event.Name)
unixTime, _ := info.Sys().(*syscall.Stat_t).Ctim.Unix()
time := time.Unix(unixTime, 0)
log.Print(time)
```

## License

Expand Down

0 comments on commit 759965a

Please sign in to comment.