From b5ebe6759c9efe4e9bf985cffffc0ba06abc5f59 Mon Sep 17 00:00:00 2001 From: NI Date: Sun, 29 Dec 2019 14:11:54 +0800 Subject: [PATCH] Update copyright date to 2020. Happy new year! --- application/application.go | 2 +- application/command/commander.go | 2 +- application/command/commands.go | 2 +- application/command/fsm.go | 2 +- application/command/handler.go | 2 +- application/command/handler_echo_test.go | 2 +- application/command/handler_stream_test.go | 2 +- application/command/handler_test.go | 2 +- application/command/header.go | 2 +- application/command/streams.go | 2 +- application/command/streams_test.go | 2 +- application/commands/address.go | 2 +- application/commands/address_test.go | 2 +- application/commands/commands.go | 2 +- application/commands/integer.go | 2 +- application/commands/integer_test.go | 2 +- application/commands/ssh.go | 2 +- application/commands/string.go | 2 +- application/commands/string_test.go | 2 +- application/commands/telnet.go | 2 +- application/configuration/config.go | 2 +- application/configuration/loader.go | 2 +- application/configuration/loader_direct.go | 2 +- application/configuration/loader_enviro.go | 2 +- application/configuration/loader_file.go | 2 +- application/configuration/loader_redundant.go | 2 +- application/controller/base.go | 2 +- application/controller/common.go | 2 +- application/controller/common_test.go | 2 +- application/controller/controller.go | 2 +- application/controller/error.go | 2 +- application/controller/failure.go | 2 +- application/controller/home.go | 2 +- application/controller/socket.go | 2 +- application/controller/static.go | 2 +- application/controller/static_page_generater/main.go | 2 +- application/controller/static_pages.go | 2 +- application/log/ditch.go | 2 +- application/log/log.go | 2 +- application/log/writer.go | 2 +- application/log/writer_nodebug.go | 2 +- application/network/conn.go | 2 +- application/network/conn_timeout.go | 2 +- application/network/dial.go | 2 +- application/network/dial_socks5.go | 2 +- application/plate.go | 2 +- application/rw/fetch.go | 2 +- application/rw/fetch_test.go | 2 +- application/rw/limited.go | 2 +- application/rw/rw.go | 2 +- application/server/conn.go | 2 +- application/server/server.go | 2 +- babel.config.js | 2 +- go.mod | 2 +- sshwifty.go | 2 +- ui/app.css | 2 +- ui/app.js | 2 +- ui/auth.vue | 2 +- ui/commands/address.js | 2 +- ui/commands/address_test.js | 2 +- ui/commands/color.js | 2 +- ui/commands/commands.js | 2 +- ui/commands/common.js | 2 +- ui/commands/common_test.js | 2 +- ui/commands/controls.js | 2 +- ui/commands/events.js | 2 +- ui/commands/exception.js | 2 +- ui/commands/history.js | 2 +- ui/commands/integer.js | 2 +- ui/commands/integer_test.js | 2 +- ui/commands/ssh.js | 2 +- ui/commands/string.js | 2 +- ui/commands/string_test.js | 2 +- ui/commands/telnet.js | 2 +- ui/common.css | 2 +- ui/control/ssh.js | 2 +- ui/control/telnet.js | 2 +- ui/crypto.js | 2 +- ui/error.html | 2 +- ui/history.js | 2 +- ui/home.css | 2 +- ui/home.vue | 2 +- ui/index.html | 2 +- ui/landing.css | 2 +- ui/loading.vue | 2 +- ui/socket.js | 2 +- ui/stream/common.js | 2 +- ui/stream/common_test.js | 2 +- ui/stream/exception.js | 2 +- ui/stream/header.js | 2 +- ui/stream/header_test.js | 2 +- ui/stream/reader.js | 2 +- ui/stream/reader_test.js | 2 +- ui/stream/sender.js | 2 +- ui/stream/sender_test.js | 2 +- ui/stream/stream.js | 2 +- ui/stream/streams.js | 2 +- ui/stream/streams_test.js | 2 +- ui/stream/subscribe.js | 2 +- ui/widgets/chart.vue | 2 +- ui/widgets/connect.css | 2 +- ui/widgets/connect.vue | 2 +- ui/widgets/connect_known.css | 2 +- ui/widgets/connect_known.vue | 2 +- ui/widgets/connect_new.css | 2 +- ui/widgets/connect_new.vue | 2 +- ui/widgets/connect_switch.css | 2 +- ui/widgets/connect_switch.vue | 2 +- ui/widgets/connector.css | 2 +- ui/widgets/connector.vue | 2 +- ui/widgets/screen_console.css | 2 +- ui/widgets/screen_console.vue | 2 +- ui/widgets/screen_console_keys.js | 2 +- ui/widgets/screens.css | 2 +- ui/widgets/screens.vue | 2 +- ui/widgets/status.css | 2 +- ui/widgets/status.vue | 2 +- ui/widgets/tab_list.vue | 2 +- ui/widgets/tab_window.css | 2 +- ui/widgets/tab_window.vue | 2 +- ui/widgets/tabs.vue | 2 +- ui/widgets/window.css | 2 +- ui/widgets/window.vue | 2 +- ui/xhr.js | 2 +- webpack.config.js | 2 +- 125 files changed, 125 insertions(+), 125 deletions(-) diff --git a/application/application.go b/application/application.go index e15e638..3d4555b 100644 --- a/application/application.go +++ b/application/application.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/command/commander.go b/application/command/commander.go index e94291e..94479a4 100644 --- a/application/command/commander.go +++ b/application/command/commander.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/command/commands.go b/application/command/commands.go index 63f8ed6..6b29700 100644 --- a/application/command/commands.go +++ b/application/command/commands.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/command/fsm.go b/application/command/fsm.go index 791f9ed..637fc12 100644 --- a/application/command/fsm.go +++ b/application/command/fsm.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/command/handler.go b/application/command/handler.go index e861d85..e45b68c 100644 --- a/application/command/handler.go +++ b/application/command/handler.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/command/handler_echo_test.go b/application/command/handler_echo_test.go index 9ef0fc9..35206e5 100644 --- a/application/command/handler_echo_test.go +++ b/application/command/handler_echo_test.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/command/handler_stream_test.go b/application/command/handler_stream_test.go index 2bf112e..0bf3587 100644 --- a/application/command/handler_stream_test.go +++ b/application/command/handler_stream_test.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/command/handler_test.go b/application/command/handler_test.go index ccf11d7..0c1b49c 100644 --- a/application/command/handler_test.go +++ b/application/command/handler_test.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/command/header.go b/application/command/header.go index 466c83c..9dd6ad3 100644 --- a/application/command/header.go +++ b/application/command/header.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/command/streams.go b/application/command/streams.go index 455700b..a3760ff 100644 --- a/application/command/streams.go +++ b/application/command/streams.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/command/streams_test.go b/application/command/streams_test.go index c62741d..ad01029 100644 --- a/application/command/streams_test.go +++ b/application/command/streams_test.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/commands/address.go b/application/commands/address.go index d884794..bcf036e 100644 --- a/application/commands/address.go +++ b/application/commands/address.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/commands/address_test.go b/application/commands/address_test.go index 5271e94..4953d21 100644 --- a/application/commands/address_test.go +++ b/application/commands/address_test.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/commands/commands.go b/application/commands/commands.go index 01ec202..474b03e 100644 --- a/application/commands/commands.go +++ b/application/commands/commands.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/commands/integer.go b/application/commands/integer.go index faa50bf..1a23964 100644 --- a/application/commands/integer.go +++ b/application/commands/integer.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/commands/integer_test.go b/application/commands/integer_test.go index 36fe32c..8f50496 100644 --- a/application/commands/integer_test.go +++ b/application/commands/integer_test.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/commands/ssh.go b/application/commands/ssh.go index 8a379cd..15fef7a 100644 --- a/application/commands/ssh.go +++ b/application/commands/ssh.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/commands/string.go b/application/commands/string.go index b7ea33b..552a84a 100644 --- a/application/commands/string.go +++ b/application/commands/string.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/commands/string_test.go b/application/commands/string_test.go index 9ff8424..80b7095 100644 --- a/application/commands/string_test.go +++ b/application/commands/string_test.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/commands/telnet.go b/application/commands/telnet.go index 6352fe3..42a5fb3 100644 --- a/application/commands/telnet.go +++ b/application/commands/telnet.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/configuration/config.go b/application/configuration/config.go index c3747d3..1a77129 100644 --- a/application/configuration/config.go +++ b/application/configuration/config.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/configuration/loader.go b/application/configuration/loader.go index 8c24404..d6cc2c4 100644 --- a/application/configuration/loader.go +++ b/application/configuration/loader.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/configuration/loader_direct.go b/application/configuration/loader_direct.go index b4e07d8..3274460 100644 --- a/application/configuration/loader_direct.go +++ b/application/configuration/loader_direct.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/configuration/loader_enviro.go b/application/configuration/loader_enviro.go index 99574a2..69a1efa 100644 --- a/application/configuration/loader_enviro.go +++ b/application/configuration/loader_enviro.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/configuration/loader_file.go b/application/configuration/loader_file.go index 2c58031..89e711f 100644 --- a/application/configuration/loader_file.go +++ b/application/configuration/loader_file.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/configuration/loader_redundant.go b/application/configuration/loader_redundant.go index 4f3542a..b85c99c 100644 --- a/application/configuration/loader_redundant.go +++ b/application/configuration/loader_redundant.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/controller/base.go b/application/controller/base.go index 3a84bd9..92adfe8 100644 --- a/application/controller/base.go +++ b/application/controller/base.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/controller/common.go b/application/controller/common.go index d9ef892..1e2aac8 100644 --- a/application/controller/common.go +++ b/application/controller/common.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/controller/common_test.go b/application/controller/common_test.go index 28cac27..109421e 100644 --- a/application/controller/common_test.go +++ b/application/controller/common_test.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/controller/controller.go b/application/controller/controller.go index 5e68d0f..cae1dc5 100644 --- a/application/controller/controller.go +++ b/application/controller/controller.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/controller/error.go b/application/controller/error.go index 7aa672b..96f5189 100644 --- a/application/controller/error.go +++ b/application/controller/error.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/controller/failure.go b/application/controller/failure.go index 2075906..6607efa 100644 --- a/application/controller/failure.go +++ b/application/controller/failure.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/controller/home.go b/application/controller/home.go index d9996cb..5261d88 100644 --- a/application/controller/home.go +++ b/application/controller/home.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/controller/socket.go b/application/controller/socket.go index 1367505..1d1c8a9 100644 --- a/application/controller/socket.go +++ b/application/controller/socket.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/controller/static.go b/application/controller/static.go index e85d08e..058442d 100644 --- a/application/controller/static.go +++ b/application/controller/static.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/controller/static_page_generater/main.go b/application/controller/static_page_generater/main.go index 4ab3c4b..0c45488 100644 --- a/application/controller/static_page_generater/main.go +++ b/application/controller/static_page_generater/main.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/controller/static_pages.go b/application/controller/static_pages.go index 1a08d25..64e45cf 100644 --- a/application/controller/static_pages.go +++ b/application/controller/static_pages.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/log/ditch.go b/application/log/ditch.go index 6431812..9339b82 100644 --- a/application/log/ditch.go +++ b/application/log/ditch.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/log/log.go b/application/log/log.go index 16e8adf..6f9d022 100644 --- a/application/log/log.go +++ b/application/log/log.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/log/writer.go b/application/log/writer.go index a83221e..861ea81 100644 --- a/application/log/writer.go +++ b/application/log/writer.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/log/writer_nodebug.go b/application/log/writer_nodebug.go index 2c13163..52cd234 100644 --- a/application/log/writer_nodebug.go +++ b/application/log/writer_nodebug.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/network/conn.go b/application/network/conn.go index 294152c..e3dc489 100644 --- a/application/network/conn.go +++ b/application/network/conn.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/network/conn_timeout.go b/application/network/conn_timeout.go index 2542c60..ecaeeaf 100644 --- a/application/network/conn_timeout.go +++ b/application/network/conn_timeout.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/network/dial.go b/application/network/dial.go index 2d37741..9c84299 100644 --- a/application/network/dial.go +++ b/application/network/dial.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/network/dial_socks5.go b/application/network/dial_socks5.go index 8868d07..ae2f7c4 100644 --- a/application/network/dial_socks5.go +++ b/application/network/dial_socks5.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/plate.go b/application/plate.go index b5e7255..8c3145d 100644 --- a/application/plate.go +++ b/application/plate.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/rw/fetch.go b/application/rw/fetch.go index 3dab8f6..30583bf 100644 --- a/application/rw/fetch.go +++ b/application/rw/fetch.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/rw/fetch_test.go b/application/rw/fetch_test.go index 586cd71..3ba22ff 100644 --- a/application/rw/fetch_test.go +++ b/application/rw/fetch_test.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/rw/limited.go b/application/rw/limited.go index c37abea..ab35a3e 100644 --- a/application/rw/limited.go +++ b/application/rw/limited.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/rw/rw.go b/application/rw/rw.go index bd6ea34..f11c41a 100644 --- a/application/rw/rw.go +++ b/application/rw/rw.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/server/conn.go b/application/server/conn.go index 6f0c250..74e1c60 100644 --- a/application/server/conn.go +++ b/application/server/conn.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/application/server/server.go b/application/server/server.go index f01a38a..1da13f5 100644 --- a/application/server/server.go +++ b/application/server/server.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/babel.config.js b/babel.config.js index 1fda97f..3240da0 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/go.mod b/go.mod index 3470e49..5fc22ed 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/sshwifty.go b/sshwifty.go index 52638d3..8691f3f 100644 --- a/sshwifty.go +++ b/sshwifty.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/ui/app.css b/ui/app.css index 7d2608a..6be4635 100644 --- a/ui/app.css +++ b/ui/app.css @@ -1,7 +1,7 @@ /* // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/ui/app.js b/ui/app.js index bf9d2bd..8cb0790 100644 --- a/ui/app.js +++ b/ui/app.js @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019 Rui NI +// Copyright (C) 2019-2020 Rui NI // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as diff --git a/ui/auth.vue b/ui/auth.vue index d2455d5..c51f3eb 100644 --- a/ui/auth.vue +++ b/ui/auth.vue @@ -1,7 +1,7 @@