From 0f96757b05e8874a9627827644291e41398af2a2 Mon Sep 17 00:00:00 2001
From: Konrad Langenberg <k@knt.li>
Date: Mon, 11 Jun 2018 11:36:25 +0000
Subject: [PATCH 1/2] Fixed typos in readme (#1)

---
 README.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 262d9ef..85d60b4 100644
--- a/README.md
+++ b/README.md
@@ -36,7 +36,7 @@ gitea-github-migrator migrate \
     --token GITEA_TOKEN \
     --owner 1
 ```
-`gh-token` is only required if you have more then 50 issues / repositories.
+`gh-token` is only required if you have more than 50 issues / repositories.
 
 Migrate all repositories:
 ```bash
@@ -48,7 +48,7 @@ gitea-github-migrator migrate-all \
     --owner 1
 ```
 
-Migrate all repository without issues etc. (classic):
+Migrate all repositories without issues etc. (classic):
 ```bash
 gitea-github-migrator migrate-all \
     --gh-user username \
@@ -60,6 +60,6 @@ gitea-github-migrator migrate-all \
 ```
 
 ## Problems
-* This migrator does not work with Gitea instances utilizing a SQLite database.
-* Comments / Issues will be added by token's user (information about date and author will be added)
-* Current Date is utilized for creation date (information about date is added in a comment)
\ No newline at end of file
+* This migration tool does not work with Gitea instances using a SQLite database.
+* Comments / Issues will be added in the name of the user to whom belongs the token (information about the original date and author will be added)
+* The current date is used for creation date (information about the actual date is added in a comment)

From 5c5fdafd2556c92c331c93c648500f1f84d7bbdb Mon Sep 17 00:00:00 2001
From: Jonas Franz <info@jonasfranz.software>
Date: Wed, 13 Jun 2018 13:45:45 +0000
Subject: [PATCH 2/2] Improve static releases by using gox (#2)

---
 .drone.yml | 21 ++++-----------------
 1 file changed, 4 insertions(+), 17 deletions(-)

diff --git a/.drone.yml b/.drone.yml
index 26a6d42..4311106 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -28,13 +28,13 @@ pipeline:
       - go vet ./...
       - go test -cover ./...
   static:
-    image: karalabe/xgo-latest:latest
+    image: golang:1.10
     pull: true
     environment:
       GOPATH: /go
     commands:
-      - go get -u github.com/karalabe/xgo
-      - xgo -out gitea-github-migrator -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" --targets=windows/*,darwin/*,linux/* .
+      - go get -u github.com/mitchellh/gox
+      - gox -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -output "releases/gitea-github-migrator_{{.OS}}_{{.Arch}}"
     when:
       event: [ tag ]
   gitea:
@@ -43,20 +43,7 @@ pipeline:
     base_url: "https://git.jonasfranz.software"
     secrets: [ gitea_token ]
     files:
-      - gitea-github-migrator-darwin-10.6-386
-      - gitea-github-migrator-linux-amd64
-      - gitea-github-migrator-linux-arm64
-      - gitea-github-migrator-linux-mips64
-      - gitea-github-migrator-windows-4.0-386.exe
-      - gitea-github-migrator-darwin-10.6-amd64
-      - gitea-github-migrator-linux-arm-5
-      - gitea-github-migrator-linux-arm-7
-      - gitea-github-migrator-linux-mips64le
-      - gitea-github-migrator-windows-4.0-amd64.exe
-      - gitea-github-migrator-linux-386
-      - gitea-github-migrator-linux-arm-6
-      - gitea-github-migrator-linux-mips
-      - gitea-github-migrator-linux-mipsle
+      - releases/*
     checksum:
       - sha256
       - md5