aboutsummaryrefslogtreecommitdiff
path: root/ui/messages
diff options
context:
space:
mode:
Diffstat (limited to 'ui/messages')
-rw-r--r--ui/messages/base.go2
-rw-r--r--ui/messages/expandedtextmessage.go2
-rw-r--r--ui/messages/filemessage.go2
-rw-r--r--ui/messages/html/base.go2
-rw-r--r--ui/messages/html/blockquote.go2
-rw-r--r--ui/messages/html/break.go2
-rw-r--r--ui/messages/html/codeblock.go2
-rw-r--r--ui/messages/html/container.go2
-rw-r--r--ui/messages/html/entity.go2
-rw-r--r--ui/messages/html/horizontalline.go2
-rw-r--r--ui/messages/html/list.go2
-rw-r--r--ui/messages/html/parser.go2
-rw-r--r--ui/messages/html/text.go2
-rw-r--r--ui/messages/htmlmessage.go2
-rw-r--r--ui/messages/parser.go2
-rw-r--r--ui/messages/redactedmessage.go2
-rw-r--r--ui/messages/textbase.go2
-rw-r--r--ui/messages/textmessage.go2
-rw-r--r--ui/messages/tstring/cell.go2
-rw-r--r--ui/messages/tstring/string.go2
20 files changed, 20 insertions, 20 deletions
diff --git a/ui/messages/base.go b/ui/messages/base.go
index c4e10b0..d3bf251 100644
--- a/ui/messages/base.go
+++ b/ui/messages/base.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/expandedtextmessage.go b/ui/messages/expandedtextmessage.go
index 5c9b5bd..d8ee3a2 100644
--- a/ui/messages/expandedtextmessage.go
+++ b/ui/messages/expandedtextmessage.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/filemessage.go b/ui/messages/filemessage.go
index 5b7b21c..7422146 100644
--- a/ui/messages/filemessage.go
+++ b/ui/messages/filemessage.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/html/base.go b/ui/messages/html/base.go
index fa4f3f0..a1e9a8c 100644
--- a/ui/messages/html/base.go
+++ b/ui/messages/html/base.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/html/blockquote.go b/ui/messages/html/blockquote.go
index bb7c009..4fa91be 100644
--- a/ui/messages/html/blockquote.go
+++ b/ui/messages/html/blockquote.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/html/break.go b/ui/messages/html/break.go
index fca1d0e..7c35e44 100644
--- a/ui/messages/html/break.go
+++ b/ui/messages/html/break.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/html/codeblock.go b/ui/messages/html/codeblock.go
index aee2bb4..e7851a3 100644
--- a/ui/messages/html/codeblock.go
+++ b/ui/messages/html/codeblock.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/html/container.go b/ui/messages/html/container.go
index c1cf865..7e8fb0c 100644
--- a/ui/messages/html/container.go
+++ b/ui/messages/html/container.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/html/entity.go b/ui/messages/html/entity.go
index 0c7785d..d95e0eb 100644
--- a/ui/messages/html/entity.go
+++ b/ui/messages/html/entity.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/html/horizontalline.go b/ui/messages/html/horizontalline.go
index ff82397..8db2e58 100644
--- a/ui/messages/html/horizontalline.go
+++ b/ui/messages/html/horizontalline.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/html/list.go b/ui/messages/html/list.go
index c0042d9..66b4d65 100644
--- a/ui/messages/html/list.go
+++ b/ui/messages/html/list.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/html/parser.go b/ui/messages/html/parser.go
index 7bb4a84..17edc74 100644
--- a/ui/messages/html/parser.go
+++ b/ui/messages/html/parser.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/html/text.go b/ui/messages/html/text.go
index 9501cab..5236d17 100644
--- a/ui/messages/html/text.go
+++ b/ui/messages/html/text.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/htmlmessage.go b/ui/messages/htmlmessage.go
index cc206fd..b9366e4 100644
--- a/ui/messages/htmlmessage.go
+++ b/ui/messages/htmlmessage.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/parser.go b/ui/messages/parser.go
index 616e7cb..9e44647 100644
--- a/ui/messages/parser.go
+++ b/ui/messages/parser.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/redactedmessage.go b/ui/messages/redactedmessage.go
index ac79008..d50d40f 100644
--- a/ui/messages/redactedmessage.go
+++ b/ui/messages/redactedmessage.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/textbase.go b/ui/messages/textbase.go
index 0d1cc3b..1e8b376 100644
--- a/ui/messages/textbase.go
+++ b/ui/messages/textbase.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/textmessage.go b/ui/messages/textmessage.go
index cf3b590..79bf87e 100644
--- a/ui/messages/textmessage.go
+++ b/ui/messages/textmessage.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/tstring/cell.go b/ui/messages/tstring/cell.go
index 3ea7b5a..2b1a716 100644
--- a/ui/messages/tstring/cell.go
+++ b/ui/messages/tstring/cell.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
diff --git a/ui/messages/tstring/string.go b/ui/messages/tstring/string.go
index 48a6507..ee86a92 100644
--- a/ui/messages/tstring/string.go
+++ b/ui/messages/tstring/string.go
@@ -1,5 +1,5 @@
// gomuks - A terminal Matrix client written in Go.
-// Copyright (C) 2019 Tulir Asokan
+// Copyright (C) 2020 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by