-
Notifications
You must be signed in to change notification settings - Fork 9
Update README.md #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,6 +8,21 @@ It includes options to automatically batch all the `.heic` files it finds in a f | |
|
|
||
| [Download the latest release](https://github.com/danbrakeley/heic2png/releases), and then put the exe somewhere in your path. | ||
|
|
||
| ### Compiling on Linux | ||
|
|
||
| 1. Install golang | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The name of the language is actually just |
||
| - Via apt `apt install golang-go` | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| - Via source [Download and install](https://go.dev/doc/install) | ||
| 2. Clone this repository `git clone https://github.com/danbrakeley/heic2png.git` | ||
| 3. Enter the repository and execute the [build.sh](https://github.com/danbrakeley/heic2png/blob/main/build.sh) script | ||
| - ``` | ||
| cd heic2png | ||
| chmod +x build.sh | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This line shouldn't be necessary. Instead of adding this line, you should set the execute bit as part of this PR. I think you can achieve that via |
||
| ./build.sh | ||
| ``` | ||
| 4. Run the script file. | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If I'm reading this right, I think this step is redundant with step 3? |
||
|
|
||
|
|
||
| ## Usage | ||
|
|
||
| Run `heic2png -h` to see all the flags and arguments. As of v0.2.0, your output should look something like this: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Technically these same steps should work on any OS, not just Linux. Maybe title this
### Building from source?