From b264ba8c81c85077796034129cd120b445d8bb82 Mon Sep 17 00:00:00 2001 From: jk Date: Wed, 8 Nov 2023 11:54:35 +0100 Subject: [PATCH] Update readme, license and check gh-pages build --- .github/workflows/publish.yml | 3 ++- LICENSE | 2 +- README.md | 7 +++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8638708..8f84409 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - fix/readme jobs: deploy: @@ -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 diff --git a/LICENSE b/LICENSE index c1da746..6c18116 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/README.md b/README.md index 589ac4a..e84dfb3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ # exify -Simple web application to remove [EXIF](https://en.wikipedia.org/wiki/Exif) (Exchangeable Image File Format) data from images. -

@@ -14,6 +12,7 @@ Simple web application to remove [EXIF](https://en.wikipedia.org/wiki/Exif) (Exc

+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. @@ -21,7 +20,7 @@ All processing is done in the browser. No server. No data is sent anywhere. It s ## Usage -Open https://sectore.github.io/exify/ in your browser. +Open https://bitcoinbeachtravemuende.github.io/exify/ in your browser. ## Development @@ -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.