Skip to content

Commit

Permalink
Preparing for v1.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ridiculouswaffle committed Mar 30, 2024
1 parent c4429d0 commit 5ae06e0
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,35 @@ After you have installed Java, download the latest release from the Releases sec

After you have download the archive, unzip it and double click the .jar to use!

## Usage

When you open the .jar file, you will see a window like this:

![An image of the application](images/main-screenshot.png)

The URL section is where you put the website you want to scrape emails or links from

The Browser dropdown is where you choose the browser to use. You should use the one installed on your system.

After you fill a link, you can scrape links or emails by clicking the buttons at the bottom.

### Filters

You can add filters to exclude certain emails/links from export.

A filter is typically a text file containing content like this:

```text
https://google.com
[email protected]
```

Every excluded link/email should be in a new line for it to work as intended.

## Planned features

- [ ] Go through a list of links to scrape more links/emails
- [ ] Filters
- [x] Filters
- [ ] Notifying the user when scraping is done
- [x] Dark mode

Expand Down
5 changes: 1 addition & 4 deletions build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
(def jar-content (str build-directory "/resources"))

(def basis (b/create-basis {:project "deps.edn"}))
(def version "1.0.0")
(def version "1.0.1")
(def app-name "mail-harvester")
(def uber-file-name (format "%s/%s-%s-standalone.jar" build-directory app-name version))

Expand All @@ -15,9 +15,6 @@

(defn uber [_]
(clean nil)
(b/copy-file {:src "README.md"
:target-dir build-directory})

(b/compile-clj {:basis basis
:src-dirs ["src"]
:class-dir jar-content})
Expand Down
Binary file added images/main-screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5ae06e0

Please sign in to comment.