Skip to content

Commit

Permalink
Update readme, license
Browse files Browse the repository at this point in the history
and check gh-pages build
  • Loading branch information
sectore committed Nov 8, 2023
1 parent 2e3bea7 commit b264ba8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- fix/readme

jobs:
deploy:
Expand All @@ -27,7 +28,7 @@ jobs:

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/fix/readme'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 jk
Copyright (c) 2023 BitcoinBeachTravemuende

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# exify

Simple web application to remove [EXIF](https://en.wikipedia.org/wiki/Exif) (Exchangeable Image File Format) data from images.

<p float="left">
<a href="wiki/exify-1.png" target="_blank">
<img src="wiki/exify-1.png" width="30%" />
Expand All @@ -14,14 +12,15 @@ Simple web application to remove [EXIF](https://en.wikipedia.org/wiki/Exif) (Exc
</a>
</p>

Web app to remove [EXIF](https://en.wikipedia.org/wiki/Exif) (Exchangeable Image File Format) data from images.


All processing is done in the browser. No server. No data is sent anywhere. It still works offline.


## Usage

Open https://sectore.github.io/exify/ in your browser.
Open https://bitcoinbeachtravemuende.github.io/exify/ in your browser.

## Development

Expand Down Expand Up @@ -87,7 +86,7 @@ No. The application works offline.

Original images will be unchanged. All changes will be saved as a new image prefixed with `exify_`.

### How does exify work?
### How does `exify` work?

Technically the application is built with [Yew](https://yew.rs/) / ([Rust](https://www.rust-lang.org/)) and compiled to [WebAssembly](https://webassembly.org/). It uses [kamadak-exif](https://crates.io/crates/kamadak-exif) and [img-parts](https://crates.io/crates/img-parts) crates to parse and remove EXIF data from images.

Expand Down

0 comments on commit b264ba8

Please sign in to comment.