Skip to content

Commit

Permalink
Release Upterm 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
owenthereal committed Sep 30, 2023
1 parent 4b81f02 commit 51018fd
Show file tree
Hide file tree
Showing 21 changed files with 38 additions and 31 deletions.
2 changes: 1 addition & 1 deletion charts/uptermd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: uptermd
description: Secure Terminal Sharing
type: application
version: 0.2.0
appVersion: 0.10.0
appVersion: 0.11.0
home: https://upterm.dev
sources:
- https://github.com/owenthereal/upterm
Expand Down
2 changes: 1 addition & 1 deletion cmd/upterm/command/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/spf13/cobra"
)

const Version = "0.10.0"
const Version = "0.11.0"

func versionCmd() *cobra.Command {
cmd := &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion docs/upterm.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ Upterm is an open-source solution for sharing terminal sessions instantly with t
* [upterm upgrade](upterm_upgrade.md) - Upgrade the CLI
* [upterm version](upterm_version.md) - Show version

###### Auto generated by spf13/cobra on 3-Dec-2022
###### Auto generated by spf13/cobra on 29-Sep-2023
2 changes: 1 addition & 1 deletion docs/upterm_host.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ upterm host [flags]

* [upterm](upterm.md) - Secure Terminal Sharing

###### Auto generated by spf13/cobra on 3-Dec-2022
###### Auto generated by spf13/cobra on 29-Sep-2023
2 changes: 1 addition & 1 deletion docs/upterm_proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ upterm proxy [flags]

* [upterm](upterm.md) - Secure Terminal Sharing

###### Auto generated by spf13/cobra on 3-Dec-2022
###### Auto generated by spf13/cobra on 29-Sep-2023
2 changes: 1 addition & 1 deletion docs/upterm_session.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ Display session
* [upterm session info](upterm_session_info.md) - Display session by name
* [upterm session list](upterm_session_list.md) - List shared sessions

###### Auto generated by spf13/cobra on 3-Dec-2022
###### Auto generated by spf13/cobra on 29-Sep-2023
2 changes: 1 addition & 1 deletion docs/upterm_session_current.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ upterm session current [flags]

* [upterm session](upterm_session.md) - Display session

###### Auto generated by spf13/cobra on 3-Dec-2022
###### Auto generated by spf13/cobra on 29-Sep-2023
2 changes: 1 addition & 1 deletion docs/upterm_session_info.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ upterm session info [flags]

* [upterm session](upterm_session.md) - Display session

###### Auto generated by spf13/cobra on 3-Dec-2022
###### Auto generated by spf13/cobra on 29-Sep-2023
2 changes: 1 addition & 1 deletion docs/upterm_session_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ upterm session list [flags]

* [upterm session](upterm_session.md) - Display session

###### Auto generated by spf13/cobra on 3-Dec-2022
###### Auto generated by spf13/cobra on 29-Sep-2023
2 changes: 1 addition & 1 deletion docs/upterm_upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ upterm upgrade [flags]

* [upterm](upterm.md) - Secure Terminal Sharing

###### Auto generated by spf13/cobra on 3-Dec-2022
###### Auto generated by spf13/cobra on 29-Sep-2023
2 changes: 1 addition & 1 deletion docs/upterm_version.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ upterm version [flags]

* [upterm](upterm.md) - Secure Terminal Sharing

###### Auto generated by spf13/cobra on 3-Dec-2022
###### Auto generated by spf13/cobra on 29-Sep-2023
11 changes: 9 additions & 2 deletions etc/completion/upterm.zsh_completion
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#compdef upterm
compdef _upterm upterm

# zsh completion for upterm -*- shell-script -*-

Expand All @@ -17,8 +18,9 @@ _upterm()
local shellCompDirectiveNoFileComp=4
local shellCompDirectiveFilterFileExt=8
local shellCompDirectiveFilterDirs=16
local shellCompDirectiveKeepOrder=32

local lastParam lastChar flagPrefix requestComp out directive comp lastComp noSpace
local lastParam lastChar flagPrefix requestComp out directive comp lastComp noSpace keepOrder
local -a completions

__upterm_debug "\n========= starting completion logic =========="
Expand Down Expand Up @@ -136,6 +138,11 @@ _upterm()
noSpace="-S ''"
fi

if [ $((directive & shellCompDirectiveKeepOrder)) -ne 0 ]; then
__upterm_debug "Activating keep order."
keepOrder="-V"
fi

if [ $((directive & shellCompDirectiveFilterFileExt)) -ne 0 ]; then
# File extension filtering
local filteringCmd
Expand Down Expand Up @@ -171,7 +178,7 @@ _upterm()
return $result
else
__upterm_debug "Calling _describe"
if eval _describe "completions" completions $flagPrefix $noSpace; then
if eval _describe $keepOrder "completions" completions $flagPrefix $noSpace; then
__upterm_debug "_describe found some completions"

# Return the success of having called _describe
Expand Down
4 changes: 2 additions & 2 deletions etc/man/man1/upterm-host.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.nh
.TH "UPTERM" "1" "Dec 2022" "Upterm 0.10.0" "Upterm Manual"
.TH "UPTERM" "1" "Sep 2023" "Upterm 0.11.0" "Upterm Manual"

.SH NAME
.PP
Expand Down Expand Up @@ -88,4 +88,4 @@ Host a terminal session over a reverse SSH tunnel to the Upterm server with the

.SH HISTORY
.PP
3-Dec-2022 Auto generated by spf13/cobra
29-Sep-2023 Auto generated by spf13/cobra
4 changes: 2 additions & 2 deletions etc/man/man1/upterm-proxy.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.nh
.TH "UPTERM" "1" "Dec 2022" "Upterm 0.10.0" "Upterm Manual"
.TH "UPTERM" "1" "Sep 2023" "Upterm 0.11.0" "Upterm Manual"

.SH NAME
.PP
Expand Down Expand Up @@ -44,4 +44,4 @@ Proxy a terminal session over WebSocket. This must be used in conjunction with S

.SH HISTORY
.PP
3-Dec-2022 Auto generated by spf13/cobra
29-Sep-2023 Auto generated by spf13/cobra
4 changes: 2 additions & 2 deletions etc/man/man1/upterm-session-current.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.nh
.TH "UPTERM" "1" "Dec 2022" "Upterm 0.10.0" "Upterm Manual"
.TH "UPTERM" "1" "Sep 2023" "Upterm 0.11.0" "Upterm Manual"

.SH NAME
.PP
Expand Down Expand Up @@ -47,4 +47,4 @@ Display the current session. By default, the command fetches the current session

.SH HISTORY
.PP
3-Dec-2022 Auto generated by spf13/cobra
29-Sep-2023 Auto generated by spf13/cobra
4 changes: 2 additions & 2 deletions etc/man/man1/upterm-session-info.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.nh
.TH "UPTERM" "1" "Dec 2022" "Upterm 0.10.0" "Upterm Manual"
.TH "UPTERM" "1" "Sep 2023" "Upterm 0.11.0" "Upterm Manual"

.SH NAME
.PP
Expand Down Expand Up @@ -41,4 +41,4 @@ Display session by name.

.SH HISTORY
.PP
3-Dec-2022 Auto generated by spf13/cobra
29-Sep-2023 Auto generated by spf13/cobra
4 changes: 2 additions & 2 deletions etc/man/man1/upterm-session-list.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.nh
.TH "UPTERM" "1" "Dec 2022" "Upterm 0.10.0" "Upterm Manual"
.TH "UPTERM" "1" "Sep 2023" "Upterm 0.11.0" "Upterm Manual"

.SH NAME
.PP
Expand Down Expand Up @@ -41,4 +41,4 @@ List shared sessions. Session admin sockets are located in ~/.upterm.

.SH HISTORY
.PP
3-Dec-2022 Auto generated by spf13/cobra
29-Sep-2023 Auto generated by spf13/cobra
4 changes: 2 additions & 2 deletions etc/man/man1/upterm-session.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.nh
.TH "UPTERM" "1" "Dec 2022" "Upterm 0.10.0" "Upterm Manual"
.TH "UPTERM" "1" "Sep 2023" "Upterm 0.11.0" "Upterm Manual"

.SH NAME
.PP
Expand Down Expand Up @@ -29,4 +29,4 @@ Display session

.SH HISTORY
.PP
3-Dec-2022 Auto generated by spf13/cobra
29-Sep-2023 Auto generated by spf13/cobra
4 changes: 2 additions & 2 deletions etc/man/man1/upterm-upgrade.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.nh
.TH "UPTERM" "1" "Dec 2022" "Upterm 0.10.0" "Upterm Manual"
.TH "UPTERM" "1" "Sep 2023" "Upterm 0.11.0" "Upterm Manual"

.SH NAME
.PP
Expand Down Expand Up @@ -44,4 +44,4 @@ Upgrade the CLI

.SH HISTORY
.PP
3-Dec-2022 Auto generated by spf13/cobra
29-Sep-2023 Auto generated by spf13/cobra
4 changes: 2 additions & 2 deletions etc/man/man1/upterm-version.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.nh
.TH "UPTERM" "1" "Dec 2022" "Upterm 0.10.0" "Upterm Manual"
.TH "UPTERM" "1" "Sep 2023" "Upterm 0.11.0" "Upterm Manual"

.SH NAME
.PP
Expand Down Expand Up @@ -29,4 +29,4 @@ Show version

.SH HISTORY
.PP
3-Dec-2022 Auto generated by spf13/cobra
29-Sep-2023 Auto generated by spf13/cobra
4 changes: 2 additions & 2 deletions etc/man/man1/upterm.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.nh
.TH "UPTERM" "1" "Dec 2022" "Upterm 0.10.0" "Upterm Manual"
.TH "UPTERM" "1" "Sep 2023" "Upterm 0.11.0" "Upterm Manual"

.SH NAME
.PP
Expand Down Expand Up @@ -54,4 +54,4 @@ Upterm is an open-source solution for sharing terminal sessions instantly with t

.SH HISTORY
.PP
3-Dec-2022 Auto generated by spf13/cobra
29-Sep-2023 Auto generated by spf13/cobra

0 comments on commit 51018fd

Please sign in to comment.