Add download link to README

This commit is contained in:
Trevor Slocum 2020-11-24 09:39:55 -08:00
parent d17e5ab9cf
commit 7859f1946d
4 changed files with 36 additions and 4 deletions

2
CHANGELOG Normal file
View File

@ -0,0 +1,2 @@
1.0.0:
- Initial release

View File

@ -8,6 +8,10 @@ conversion tool and daemon
## Download
[**Download gmitohtml**](https://gmitohtml.rocketnine.space/download/?sort=name&order=desc)
## Compile
gmitohtml is written in [Go](https://golang.org). Run the following command to
download and build gmitohtml from source.

27
goreleaser.yml Normal file
View File

@ -0,0 +1,27 @@
project_name: gmitohtml
builds:
-
id: gmitohtml
ldflags:
- -s -w
goos:
- linux
- windows
goarch:
- 386
- amd64
archives:
-
id: gmitohtml
builds:
- gmitohtml
format_overrides:
- goos: windows
format: zip
files:
- ./*.md
- CHANGELOG
- LICENSE
checksum:
name_template: 'checksums.txt'

View File

@ -1,10 +1,6 @@
package main
import (
"path"
"gitlab.com/tslocum/gmitohtml/pkg/gmitohtml"
"flag"
"fmt"
"io/ioutil"
@ -12,7 +8,10 @@ import (
"net/url"
"os"
"os/exec"
"path"
"runtime"
"gitlab.com/tslocum/gmitohtml/pkg/gmitohtml"
)
func openBrowser(url string) {