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
[**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 gmitohtml is written in [Go](https://golang.org). Run the following command to
download and build gmitohtml from source. 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 package main
import ( import (
"path"
"gitlab.com/tslocum/gmitohtml/pkg/gmitohtml"
"flag" "flag"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
@ -12,7 +8,10 @@ import (
"net/url" "net/url"
"os" "os"
"os/exec" "os/exec"
"path"
"runtime" "runtime"
"gitlab.com/tslocum/gmitohtml/pkg/gmitohtml"
) )
func openBrowser(url string) { func openBrowser(url string) {