From 2ab2721a9cb9ce092db9e2d9119ed3f9450727c2 Mon Sep 17 00:00:00 2001 From: NI Date: Sun, 13 Feb 2022 17:33:52 +0800 Subject: [PATCH] Bump copyright date --- 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/common.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/configuration/string.go | 2 +- application/configuration/string_test.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/socket_verify.go | 2 +- application/controller/static.go | 2 +- application/controller/static_page_generater/main.go | 6 +++--- 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_ac.go | 2 +- application/network/dial_socks5.go | 2 +- application/plate.go | 4 ++-- 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 +- 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/presets.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 | 4 ++-- 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/connector_field_builder.js | 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 +- 130 files changed, 134 insertions(+), 134 deletions(-) diff --git a/application/application.go b/application/application.go index 650f098b..671782c4 100644 --- a/application/application.go +++ b/application/application.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 4e4ce955..c30b46a2 100644 --- a/application/command/commander.go +++ b/application/command/commander.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 b5d01336..09691b59 100644 --- a/application/command/commands.go +++ b/application/command/commands.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 0f4265c8..9101b4f2 100644 --- a/application/command/fsm.go +++ b/application/command/fsm.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 032bdc45..b8aab221 100644 --- a/application/command/handler.go +++ b/application/command/handler.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 ba60eed2..e9e9c5aa 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 f1f65924..2d5fac16 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 9aee17a4..802ea63f 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 a9acff1f..7319fac7 100644 --- a/application/command/header.go +++ b/application/command/header.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 aa8b7434..abc4c558 100644 --- a/application/command/streams.go +++ b/application/command/streams.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 c8712d41..43d4dfa7 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 dd27c058..dcab6f06 100644 --- a/application/commands/address.go +++ b/application/commands/address.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 3ab2cfae..e452adc8 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 d28152be..b6b45606 100644 --- a/application/commands/commands.go +++ b/application/commands/commands.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 54ef4c14..c7432549 100644 --- a/application/commands/integer.go +++ b/application/commands/integer.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 4e7a7c35..5eeee9d4 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 35d1e076..781c3767 100644 --- a/application/commands/ssh.go +++ b/application/commands/ssh.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 e0137646..2b86e983 100644 --- a/application/commands/string.go +++ b/application/commands/string.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 0a13bae8..8049d6f0 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 4117f12b..6bb69ffb 100644 --- a/application/commands/telnet.go +++ b/application/commands/telnet.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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/common.go b/application/configuration/common.go index 7bbd8177..8aa56fcc 100644 --- a/application/configuration/common.go +++ b/application/configuration/common.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 87aa9fae..321cd806 100644 --- a/application/configuration/config.go +++ b/application/configuration/config.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 b58e81f9..9e48df50 100644 --- a/application/configuration/loader.go +++ b/application/configuration/loader.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 98ef4ad0..ca14995b 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 b1ff5c91..d4093c83 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 f1bc4041..e7ab3b49 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 ce5eb0af..180e5040 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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/string.go b/application/configuration/string.go index 34df7eab..afb03e6c 100644 --- a/application/configuration/string.go +++ b/application/configuration/string.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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/string_test.go b/application/configuration/string_test.go index 7f4a35cc..7deafa61 100644 --- a/application/configuration/string_test.go +++ b/application/configuration/string_test.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 1446392e..c023dcd9 100644 --- a/application/controller/base.go +++ b/application/controller/base.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 dbc9a318..40ab1bda 100644 --- a/application/controller/common.go +++ b/application/controller/common.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 d97b7e39..18a875b0 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 25a46d91..3fd34d89 100644 --- a/application/controller/controller.go +++ b/application/controller/controller.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 130ee1e6..86cee44b 100644 --- a/application/controller/error.go +++ b/application/controller/error.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 ccc9e10d..ea50042f 100644 --- a/application/controller/failure.go +++ b/application/controller/failure.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 eedabafa..1ea401b2 100644 --- a/application/controller/home.go +++ b/application/controller/home.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 9b08ae59..af74a900 100644 --- a/application/controller/socket.go +++ b/application/controller/socket.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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_verify.go b/application/controller/socket_verify.go index c34eee97..610a2a4a 100644 --- a/application/controller/socket_verify.go +++ b/application/controller/socket_verify.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 8bb0bd62..6aa319d8 100644 --- a/application/controller/static.go +++ b/application/controller/static.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 0f35d7ca..08e7a986 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as @@ -41,7 +41,7 @@ const ( const ( staticListHeader = `// Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as @@ -197,7 +197,7 @@ var ( // This file is part of Sshwifty Project // -// Copyright (C) {{ .Date.Year }} NI Rui (ranqus@gmail.com) +// Copyright (C) {{ .Date.Year }} Ni Rui (ranqus@gmail.com) // // https://github.com/nirui/sshwifty // diff --git a/application/log/ditch.go b/application/log/ditch.go index 68fc05f3..ad0644f7 100644 --- a/application/log/ditch.go +++ b/application/log/ditch.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 69948c46..6c05d488 100644 --- a/application/log/log.go +++ b/application/log/log.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 5c47f590..e2684139 100644 --- a/application/log/writer.go +++ b/application/log/writer.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 2a0a4a16..2612d594 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 3ecc7a51..0601f5e7 100644 --- a/application/network/conn.go +++ b/application/network/conn.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 fe97c7ce..332cfefc 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 c7f1abcf..18edd910 100644 --- a/application/network/dial.go +++ b/application/network/dial.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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_ac.go b/application/network/dial_ac.go index 75f5b0b7..201fe3d5 100644 --- a/application/network/dial_ac.go +++ b/application/network/dial_ac.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 deea1618..b8508eb4 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 8397147c..fbe64512 100644 --- a/application/plate.go +++ b/application/plate.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as @@ -21,7 +21,7 @@ package application const ( Name = "Sshwifty" FullName = "Sshwifty Web SSH Client" - Author = "NI Rui " + Author = "Ni Rui " URL = "https://github.com/nirui/sshwifty" ) diff --git a/application/rw/fetch.go b/application/rw/fetch.go index 1295e047..13d1e2fd 100644 --- a/application/rw/fetch.go +++ b/application/rw/fetch.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 fb739d58..410bdd8d 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-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 3d72e86a..eb304277 100644 --- a/application/rw/limited.go +++ b/application/rw/limited.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 e4112b0a..b172c318 100644 --- a/application/rw/rw.go +++ b/application/rw/rw.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 722cb44e..12304261 100644 --- a/application/server/conn.go +++ b/application/server/conn.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 38f7ffa2..64fae3da 100644 --- a/application/server/server.go +++ b/application/server/server.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 27bb503e..af80d76f 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 0e2e0a30..886eae91 100644 --- a/sshwifty.go +++ b/sshwifty.go @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 f521c883..e88f2bb3 100644 --- a/ui/app.css +++ b/ui/app.css @@ -1,7 +1,7 @@ /* // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 5dc14daf..6fc966d5 100644 --- a/ui/app.js +++ b/ui/app.js @@ -1,6 +1,6 @@ // Sshwifty - A Web SSH client // -// Copyright (C) 2019-2021 NI Rui +// Copyright (C) 2019-2022 Ni Rui // // 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 086d9b2d..ac117195 100644 --- a/ui/auth.vue +++ b/ui/auth.vue @@ -1,7 +1,7 @@