aboutsummaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2020-04-19 18:10:14 +0300
committerTulir Asokan <tulir@maunium.net>2020-04-19 18:10:14 +0300
commit0943374892197dbeaaa591705a6c81df16a73fb8 (patch)
tree1e18e7ebc1cdba955444f2ff41955faa2e23009e /ui
parenta66b02ae8b65db97ee51adccd34cd6c173f22b8d (diff)
Update copyright year
Diffstat (limited to 'ui')
-rw-r--r--ui/command-processor.go2
-rw-r--r--ui/commands.go2
-rw-r--r--ui/fuzzy-search-modal.go2
-rw-r--r--ui/member-list.go2
-rw-r--r--ui/message-view.go2
-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
-rw-r--r--ui/room-list.go2
-rw-r--r--ui/room-view.go2
-rw-r--r--ui/tag-room-list.go2
-rw-r--r--ui/ui.go2
-rw-r--r--ui/view-login.go2
-rw-r--r--ui/view-main.go2
-rw-r--r--ui/widget/border.go2
-rw-r--r--ui/widget/color.go2
-rw-r--r--ui/widget/util.go2
34 files changed, 34 insertions, 34 deletions
diff --git a/ui/command-processor.go b/ui/command-processor.go
index 082d157..10478cc 100644
--- a/ui/command-processor.go
+++ b/ui/command-processor.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/commands.go b/ui/commands.go
index f9f9ec9..4dd1482 100644
--- a/ui/commands.go
+++ b/ui/commands.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/fuzzy-search-modal.go b/ui/fuzzy-search-modal.go
index 8aeb058..5540760 100644
--- a/ui/fuzzy-search-modal.go
+++ b/ui/fuzzy-search-modal.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/member-list.go b/ui/member-list.go
index 87e7b5d..eda9da4 100644
--- a/ui/member-list.go
+++ b/ui/member-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/message-view.go b/ui/message-view.go
index 764143f..e96a588 100644
--- a/ui/message-view.go
+++ b/ui/message-view.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/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
diff --git a/ui/room-list.go b/ui/room-list.go
index 3169bba..b185287 100644
--- a/ui/room-list.go
+++ b/ui/room-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/room-view.go b/ui/room-view.go
index ba6259b..334545a 100644
--- a/ui/room-view.go
+++ b/ui/room-view.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/tag-room-list.go b/ui/tag-room-list.go
index 3bea033..8d1e0e5 100644
--- a/ui/tag-room-list.go
+++ b/ui/tag-room-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/ui.go b/ui/ui.go
index c22a154..93b14f0 100644
--- a/ui/ui.go
+++ b/ui/ui.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/view-login.go b/ui/view-login.go
index d1cd4ee..ec07ee4 100644
--- a/ui/view-login.go
+++ b/ui/view-login.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/view-main.go b/ui/view-main.go
index b2f4ff0..af99b29 100644
--- a/ui/view-main.go
+++ b/ui/view-main.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/widget/border.go b/ui/widget/border.go
index f7f367f..4be8226 100644
--- a/ui/widget/border.go
+++ b/ui/widget/border.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/widget/color.go b/ui/widget/color.go
index 5a8d001..6beb7d9 100644
--- a/ui/widget/color.go
+++ b/ui/widget/color.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/widget/util.go b/ui/widget/util.go
index ae8c6b3..35dd73c 100644
--- a/ui/widget/util.go
+++ b/ui/widget/util.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