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 650f098..671782c 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 4e4ce95..c30b46a 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 b5d0133..09691b5 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 0f4265c..9101b4f 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 032bdc4..b8aab22 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 ba60eed..e9e9c5a 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 f1f6592..2d5fac1 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 9aee17a..802ea63 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 a9acff1..7319fac 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 aa8b743..abc4c55 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 c8712d4..43d4dfa 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 dd27c05..dcab6f0 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 3ab2cfa..e452adc 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 d28152b..b6b4560 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 54ef4c1..c743254 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 4e7a7c3..5eeee9d 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 35d1e07..781c376 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 e013764..2b86e98 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 0a13bae..8049d6f 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 4117f12..6bb69ff 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 7bbd817..8aa56fc 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 87aa9fa..321cd80 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 b58e81f..9e48df5 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 98ef4ad..ca14995 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 b1ff5c9..d4093c8 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 f1bc404..e7ab3b4 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 ce5eb0a..180e504 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 34df7ea..afb03e6 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 7f4a35c..7deafa6 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 1446392..c023dcd 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 dbc9a31..40ab1bd 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 d97b7e3..18a875b 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 25a46d9..3fd34d8 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 130ee1e..86cee44 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 ccc9e10..ea50042 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 eedabaf..1ea401b 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 9b08ae5..af74a90 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 c34eee9..610a2a4 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 8bb0bd6..6aa319d 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 0f35d7c..08e7a98 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 68fc05f..ad0644f 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 69948c4..6c05d48 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 5c47f59..e268413 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 2a0a4a1..2612d59 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 3ecc7a5..0601f5e 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 fe97c7c..332cfef 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 c7f1abc..18edd91 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 75f5b0b..201fe3d 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 deea161..b8508eb 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 8397147..fbe6451 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 1295e04..13d1e2f 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 fb739d5..410bdd8 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 3d72e86..eb30427 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 e4112b0..b172c31 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 722cb44..1230426 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 38f7ffa..64fae3d 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 27bb503..af80d76 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 0e2e0a3..886eae9 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 f521c88..e88f2bb 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 5dc14da..6fc966d 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 086d9b2..ac11719 100644 --- a/ui/auth.vue +++ b/ui/auth.vue @@ -1,7 +1,7 @@