From e18a99b437b0f8df70f34c87aaa608a817b2d57d Mon Sep 17 00:00:00 2001 From: Trevor Slocum Date: Wed, 7 Apr 2021 20:49:29 -0700 Subject: [PATCH] Migrate to code.rocketnine.space --- CHANGELOG | 3 +++ README.md | 11 +++++------ config.go | 2 +- go.mod | 2 +- main.go | 2 +- 5 files changed, 11 insertions(+), 9 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index fc64b5a..9c174e5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +1.0.3: +- Migrate to code.rocketnine.space + 1.0.3: - Add hostname option - Set address bar width to screen width diff --git a/README.md b/README.md index c4cb521..f48f34e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # gmitohtml -[![GoDoc](https://gitlab.com/tslocum/godoc-static/-/raw/master/badge.svg)](https://docs.rocketnine.space/gitlab.com/tslocum/gmitohtml/pkg/gmitohtml) -[![CI status](https://gitlab.com/tslocum/gmitohtml/badges/master/pipeline.svg)](https://gitlab.com/tslocum/gmitohtml/commits/master) +[![GoDoc](https://code.rocketnine.space/tslocum/godoc-static/-/raw/master/badge.svg)](https://docs.rocketnine.space/code.rocketnine.space/tslocum/gmitohtml/pkg/gmitohtml) [![Donate](https://img.shields.io/liberapay/receives/rocketnine.space.svg?logo=liberapay)](https://liberapay.com/rocketnine.space) [Gemini](https://gemini.circumlunar.space) to [HTML](https://en.wikipedia.org/wiki/HTML) @@ -10,7 +9,7 @@ conversion tool and daemon [**Download gmitohtml**](https://gmitohtml.rocketnine.space/download/?sort=name&order=desc) -gmitohtml is available on Android as [Xenia](https://gitlab.com/tslocum/xenia). +gmitohtml is available on Android as [Xenia](https://code.rocketnine.space/tslocum/xenia). ## Compile @@ -18,14 +17,14 @@ gmitohtml is written in [Go](https://golang.org). Run the following command to download and build gmitohtml from source. ```bash -go get gitlab.com/tslocum/gmitohtml +go get code.rocketnine.space/tslocum/gmitohtml ``` The resulting binary is available as `~/go/bin/gmitohtml`. ## Configure -See [CONFIGURATION.md](https://gitlab.com/tslocum/gmitohtml/blob/master/CONFIGURATION.md) +See [CONFIGURATION.md](https://code.rocketnine.space/tslocum/twins/src/branch/master/CONFIGURATION.md) ## Usage @@ -43,4 +42,4 @@ gmitohtml < document.gmi ## Support -Please share issues and suggestions [here](https://gitlab.com/tslocum/gmitohtml/issues). +Please share issues and suggestions [here](https://code.rocketnine.space/tslocum/gmitohtml/issues). diff --git a/config.go b/config.go index f750142..ab9104b 100644 --- a/config.go +++ b/config.go @@ -8,7 +8,7 @@ import ( "os" "path" - "gitlab.com/tslocum/gmitohtml/pkg/gmitohtml" + "code.rocketnine.space/tslocum/gmitohtml/pkg/gmitohtml" "gopkg.in/yaml.v3" ) diff --git a/go.mod b/go.mod index b02318c..52d97e1 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module gitlab.com/tslocum/gmitohtml +module code.rocketnine.space/tslocum/gmitohtml go 1.15 diff --git a/main.go b/main.go index 1a6fc43..1b3685f 100644 --- a/main.go +++ b/main.go @@ -10,7 +10,7 @@ import ( "os/exec" "runtime" - "gitlab.com/tslocum/gmitohtml/pkg/gmitohtml" + "code.rocketnine.space/tslocum/gmitohtml/pkg/gmitohtml" ) func openBrowser(url string) {