From 235e7059b3dabcbd44b5e09359667249071037c7 Mon Sep 17 00:00:00 2001 From: SerHack <27734319+serhack@users.noreply.github.com> Date: Sun, 7 Aug 2022 12:36:57 +0200 Subject: [PATCH 1/5] Rename .goreleaser.yml to .goreleaser.yaml --- .goreleaser.yml => .goreleaser.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .goreleaser.yml => .goreleaser.yaml (100%) diff --git a/.goreleaser.yml b/.goreleaser.yaml similarity index 100% rename from .goreleaser.yml rename to .goreleaser.yaml From 14b2e6792af6d43cd6cbd95f0644f8f3cd4fdd3a Mon Sep 17 00:00:00 2001 From: Sergio Date: Sun, 14 Aug 2022 11:57:09 -0700 Subject: [PATCH 2/5] update readme with mac instructions --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a9740c..659ba9f 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,12 @@ The only requirement asked for running this tool is the `pdftoppm` program. Base apt install poppler-utils ``` +Mac + +``` +brew install poppler +``` + To run the script, you can simply open a new shell and type: ``` @@ -51,4 +57,4 @@ If you wish to use this for your project, go ahead. If you have any issues or im If you think my work contributed a little bit to your projects, goals or company, please let me know. Monero: `47VFueCo1yvc6nq688QsBt9UZSrg5z2JLFUwWFs4WtHBSwDsybDbnmLiydo46ybPeqSMxypnjmz5pdz87t4VjngfQfmMd4S` -Bitcoin: `1Pt3YwkFoexAA3s9pV3saoJ2EAXzpqBmrp` \ No newline at end of file +Bitcoin: `1Pt3YwkFoexAA3s9pV3saoJ2EAXzpqBmrp` From 5535f71841530a024fd0b8b1f823de03df9a0fc1 Mon Sep 17 00:00:00 2001 From: SerHack <27734319+serhack@users.noreply.github.com> Date: Sun, 14 Aug 2022 21:54:28 +0200 Subject: [PATCH 3/5] Updated instructions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 659ba9f..ab3d232 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ The only requirement asked for running this tool is the `pdftoppm` program. Base apt install poppler-utils ``` -Mac +For Mac users: ``` brew install poppler From 45c646855104fde677b30364ed30969f23067240 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 14 Dec 2022 22:11:36 -0500 Subject: [PATCH 4/5] docs: add homebrew installation note --- README.md | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index ab3d232..1c480c8 100644 --- a/README.md +++ b/README.md @@ -27,23 +27,14 @@ The only requirement asked for running this tool is the `pdftoppm` program. Base apt install poppler-utils ``` -For Mac users: +For [Homebrew](https://brew.sh/) users: +```sh +$ brew install pdf-diff ``` -brew install poppler -``` - -To run the script, you can simply open a new shell and type: -``` -go run main.go ./pdf-1.pdf ./pdf-2.pdf -``` - -or: - -``` -go build -./pdf-diff pdf-1.pdf pdf-2.pdf +```sh +$ go pdf-diff pdf-1.pdf pdf-2.pdf ``` Once ran, the images are created in the folder `generated`. From 41bdc06362197167f208ab7c58e744f9f29288a8 Mon Sep 17 00:00:00 2001 From: Mussa Charles Date: Tue, 9 May 2023 01:23:32 +0900 Subject: [PATCH 5/5] README.md: Remove 'go' prefix from documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c480c8..febacaf 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ $ brew install pdf-diff ``` ```sh -$ go pdf-diff pdf-1.pdf pdf-2.pdf +$ pdf-diff pdf-1.pdf pdf-2.pdf ``` Once ran, the images are created in the folder `generated`.