From deb78ca3d0a0fde7d2ebcb8ce290b641606b0b18 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Sun, 28 Nov 2021 20:29:50 -0800 Subject: [PATCH 1/2] add warning for --link deprecation --- internal/cmd/bind.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/internal/cmd/bind.go b/internal/cmd/bind.go index e1b31eb..fa06e28 100644 --- a/internal/cmd/bind.go +++ b/internal/cmd/bind.go @@ -113,6 +113,13 @@ func (c *bindCmd) Run(fl *pflag.FlagSet) { } } + flog.Info("code-server --link is deprecated. While the servers will remain online,") + flog.Info("we are unable to troubleshoot --link issues. A future code-server") + flog.Info("release will include a v2 with new features. If you would") + flog.Info("like early access, reach out on https://cdr.co/join-community") + flog.Info("") + + flog.Info("Proxying code-server, you can access your IDE at %v", url) proxy() From 22d6757981e4a9f55fa79320f5f6cb8864d3248a Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Sun, 28 Nov 2021 20:31:27 -0800 Subject: [PATCH 2/2] change wording --- internal/cmd/bind.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cmd/bind.go b/internal/cmd/bind.go index fa06e28..866c5ab 100644 --- a/internal/cmd/bind.go +++ b/internal/cmd/bind.go @@ -114,7 +114,7 @@ func (c *bindCmd) Run(fl *pflag.FlagSet) { } flog.Info("code-server --link is deprecated. While the servers will remain online,") - flog.Info("we are unable to troubleshoot --link issues. A future code-server") + flog.Info("we are not releasing new features or bugfixes. A future code-server") flog.Info("release will include a v2 with new features. If you would") flog.Info("like early access, reach out on https://cdr.co/join-community") flog.Info("")