From 049d79448cf6de4326a045065af802ef3cebe5a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=8D=9A=E4=BB=81=28Buo-ren=20Lin=29?= Date: Sun, 1 Mar 2020 15:07:40 +0800 Subject: [PATCH 001/208] Snap: Fix license top-level property MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Snapcraft uses SPDX 2.1 syntax[1], which allows specifying "or later" license style by appending a `+` operator after the license expression. Refer Appendix IV: SPDX License Expressions[2] for more info regarding this syntax. [1] https://spdx.org/spdx-specification-21-web-version [2] https://spdx.org/spdx-specification-21-web-version#h.jxpfx0ykyb60 Refer-to: license - Snapcraft top-level metadata - doc - snapcraft.io Signed-off-by: 林博仁(Buo-ren Lin) --- snap/snapcraft.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 295d457..35e7943 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,6 +1,5 @@ name: remote-touchpad -# WORKAROUND: Snapcraft doesn't accept GPL-3.0-or-later -license: GPL-3.0 +license: GPL-3.0+ grade: stable adopt-info: remote-touchpad From 08b852f8360612df3c9444130de48b3abaa453cb Mon Sep 17 00:00:00 2001 From: Unrud Date: Thu, 30 Apr 2020 13:29:01 +0200 Subject: [PATCH 002/208] Update dependencies --- flatpak/com.github.unrud.RemoteTouchpad.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flatpak/com.github.unrud.RemoteTouchpad.yaml b/flatpak/com.github.unrud.RemoteTouchpad.yaml index 33f190e..9c4a3dd 100644 --- a/flatpak/com.github.unrud.RemoteTouchpad.yaml +++ b/flatpak/com.github.unrud.RemoteTouchpad.yaml @@ -14,7 +14,7 @@ modules: sources: - type: git url: https://github.com/golang/net - commit: 16171245cfb220d5317888b716d69c1fb4e7992b + commit: ff2c4b7c35a07b0c1e90ce72aa7bfe41bb66a3cb dest: src/golang.org/x/net - type: git url: https://github.com/skip2/go-qrcode @@ -26,7 +26,7 @@ modules: dest: src/github.com/elazarl/go-bindata-assetfs - type: git url: https://salsa.debian.org/go-team/packages/golang-dbus.git - commit: 23d235ce6d5fee2616e6c9325987ef9cdf14ef23 + commit: ed647c482535c2296517ff0c45d8bdcb5efce458 dest: src/salsa.debian.org/go-team/packages/golang-dbus.git - type: git path: .. From fad0e2d7c021612e9bffb326432156ec25c04e22 Mon Sep 17 00:00:00 2001 From: Stefano Mersi Date: Sat, 2 May 2020 13:18:36 +0200 Subject: [PATCH 003/208] Update main.go --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index e537554..b95a179 100644 --- a/main.go +++ b/main.go @@ -164,10 +164,10 @@ func main() { return } if certFile != "" && keyFile == "" { - log.Fatal("TLS certificate missing") + log.Fatal("TLS private key file missing") } if certFile == "" && keyFile != "" { - log.Fatal("TLS private key missing") + log.Fatal("TLS certificate file missing") } tls := certFile != "" && keyFile != "" if secret == "" { From b432b9541357e773e11248e359ef1ab911d9b40c Mon Sep 17 00:00:00 2001 From: Unrud Date: Sun, 17 May 2020 03:11:49 +0200 Subject: [PATCH 004/208] Update dependencies --- flatpak/com.github.unrud.RemoteTouchpad.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flatpak/com.github.unrud.RemoteTouchpad.yaml b/flatpak/com.github.unrud.RemoteTouchpad.yaml index 9c4a3dd..9839211 100644 --- a/flatpak/com.github.unrud.RemoteTouchpad.yaml +++ b/flatpak/com.github.unrud.RemoteTouchpad.yaml @@ -14,7 +14,7 @@ modules: sources: - type: git url: https://github.com/golang/net - commit: ff2c4b7c35a07b0c1e90ce72aa7bfe41bb66a3cb + commit: a91f0712d120a21e49061d61eb6ba9b88cb0d376 dest: src/golang.org/x/net - type: git url: https://github.com/skip2/go-qrcode @@ -22,7 +22,7 @@ modules: dest: src/github.com/skip2/go-qrcode - type: git url: https://github.com/elazarl/go-bindata-assetfs - commit: d0111fe6fb11d467f8aa090457c2edaa4a2d7bab + commit: 234c15e7648ff35458026de92b34c637bae5e6f7 dest: src/github.com/elazarl/go-bindata-assetfs - type: git url: https://salsa.debian.org/go-team/packages/golang-dbus.git From 7c0d47539403bdf9dba26be79f165f056e58db93 Mon Sep 17 00:00:00 2001 From: Unrud Date: Sun, 17 May 2020 03:12:19 +0200 Subject: [PATCH 005/208] Bump version to 0.0.18 --- CHANGELOG.md | 4 ++++ .../com.github.unrud.RemoteTouchpad.appdata.xml | 15 +++++++++++---- main.go | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfdc6d6..081a947 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.0.18 (2020-05-16) + + * Fix error messages for TLS certificate and private key files + ## 0.0.17 (2020-02-20) * Minor HTML improvements diff --git a/desktop/com.github.unrud.RemoteTouchpad.appdata.xml b/desktop/com.github.unrud.RemoteTouchpad.appdata.xml index a71f5d1..87218c8 100644 --- a/desktop/com.github.unrud.RemoteTouchpad.appdata.xml +++ b/desktop/com.github.unrud.RemoteTouchpad.appdata.xml @@ -19,6 +19,13 @@ https://github.com/Unrud/remote-touchpad Unrud + + +
    +
  • Fix error messages for TLS certificate and private key files
  • +
+
+