Skip to content

Commit caead92

Browse files
Added Center() and Right() to output formatting functions, fixed fileperms that the NAS screwed up :-/
1 parent a5df61e commit caead92

15 files changed

+103
-12
lines changed

.github/workflows/publish_release.yaml

100644100755
File mode changed.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: Publish Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
branches:
8+
- develop
9+
10+
jobs:
11+
check-tag:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@latest
17+
18+
- name: Verify SemVer tag
19+
id: semver
20+
run: |
21+
if ! [[ ${{ github.ref }} =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+ ]]; then
22+
echo "Invalid SemVer tag."
23+
exit 1
24+
fi
25+
26+
- name: Check Release Notes
27+
id: check_release_notes
28+
run: |
29+
if [ -f "docs/RELEASE_NOTES.md" ]; then
30+
previous_notes=$(git tag -l --format='%(contents)' "${{ github.ref }}^{}")
31+
current_notes=$(cat docs/RELEASE_NOTES.md)
32+
if [ "$previous_notes" == "$current_notes" ]; then
33+
echo "Release notes are the same as the previous release. Skipping."
34+
exit 0
35+
fi
36+
else
37+
echo "Release notes file not found. Skipping."
38+
exit 0
39+
fi
40+
41+
- name: Get Release Notes
42+
id: release_notes
43+
run: |
44+
echo "::set-output name=notes::$(cat path/to/release_notes.md)"
45+
46+
- name: Create Release
47+
id: create_release
48+
if: steps.semver.outputs.valid && success()
49+
uses: actions/create-release@v1
50+
env:
51+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52+
with:
53+
tag_name: ${{ github.ref }}
54+
release_name: Release ${{ github.ref }}
55+
body: ${{ steps.release_notes.outputs.notes }}
56+
draft: false
57+
prerelease: false

.gitignore

100644100755
File mode changed.

CHANGELOG.md

100644100755
+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
| Release | Date | Comments |
22
|---------|------------|-----------------------------------------------------------------------------------------------|
3+
| 1.8.0 | 2025.02.18 | Added Center() and Right() for more text formatting features, GO version bump (1.23.6) |
34
| 1.7.0 | 2024.11.19 | Blue() actually printed in yellow; how comes I never noticed that ?!<br/>Updated to GO 1.23.3 |
4-
| 1.6.x | 2024.xx.yy | |
5+
| 1.6.x | 2024.xx.yy | |
56
| 1.5.2 | 2024.06.22 | Added function to check mountpoint type (only supports linux) |
67
| 1.4.0 | 2024.04.29 | Added a generic prompt function |
78
| 1.3.2 | 2024.04.14 | Reverted v1.3.1 |

LICENSE

100644100755
File mode changed.

README.md

100644100755
File mode changed.

current_package_version

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.7.0
1+
1.8.0

debug/main.go

100644100755
File mode changed.

encodeDecodePassword.go

100644100755
File mode changed.

fileutils.go

100644100755
File mode changed.

go.mod

100644100755
+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
module github.com/jeanfrancoisgratton/helperFunctions
22

3-
go 1.23.3
3+
go 1.23.6
44

55
require (
66
github.com/jeanfrancoisgratton/customError v1.7.2
77
github.com/jwalton/gchalk v1.3.0
8-
golang.org/x/crypto v0.26.0
8+
golang.org/x/crypto v0.33.0
99
)
1010

1111
require (
1212
github.com/jwalton/go-supportscolor v1.2.0 // indirect
13-
golang.org/x/sys v0.24.0 // indirect
14-
golang.org/x/term v0.23.0 // indirect
13+
golang.org/x/sys v0.30.0 // indirect
14+
golang.org/x/term v0.29.0 // indirect
1515
)

go.sum

100644100755
+6-6
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ github.com/jwalton/gchalk v1.3.0/go.mod h1:ytRlj60R9f7r53IAElbpq4lVuPOPNg2J4tJcC
55
github.com/jwalton/go-supportscolor v1.1.0/go.mod h1:hFVUAZV2cWg+WFFC4v8pT2X/S2qUUBYMioBD9AINXGs=
66
github.com/jwalton/go-supportscolor v1.2.0 h1:g6Ha4u7Vm3LIsQ5wmeBpS4gazu0UP1DRDE8y6bre4H8=
77
github.com/jwalton/go-supportscolor v1.2.0/go.mod h1:hFVUAZV2cWg+WFFC4v8pT2X/S2qUUBYMioBD9AINXGs=
8-
golang.org/x/crypto v0.26.0 h1:RrRspgV4mU+YwB4FYnuBoKsUapNIL5cohGAmSH3azsw=
9-
golang.org/x/crypto v0.26.0/go.mod h1:GY7jblb9wI+FOo5y8/S2oY4zWP07AkOJ4+jxCqdqn54=
8+
golang.org/x/crypto v0.33.0 h1:IOBPskki6Lysi0lo9qQvbxiQ+FvsCC/YWOecCHAixus=
9+
golang.org/x/crypto v0.33.0/go.mod h1:bVdXmD7IV/4GdElGPozy6U7lWdRXA4qyRVGJV57uQ5M=
1010
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
1111
golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
1212
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1313
golang.org/x/sys v0.0.0-20211004093028-2c5d950f24ef/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
14-
golang.org/x/sys v0.24.0 h1:Twjiwq9dn6R1fQcyiK+wQyHWfaz/BJB+YIpzU/Cv3Xg=
15-
golang.org/x/sys v0.24.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
14+
golang.org/x/sys v0.30.0 h1:QjkSwP/36a20jFYWkSue1YwXzLmsV5Gfq7Eiy72C1uc=
15+
golang.org/x/sys v0.30.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
1616
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
1717
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
18-
golang.org/x/term v0.23.0 h1:F6D4vR+EHoL9/sWAWgAR1H2DcHr4PareCbAaCo1RpuU=
19-
golang.org/x/term v0.23.0/go.mod h1:DgV24QBUrK6jhZXl+20l6UWznPlwAHm1Q1mGHtydmSk=
18+
golang.org/x/term v0.29.0 h1:L6pJp37ocefwRRtYPKSWOWzOtWSxVajvz2ldH/xi3iU=
19+
golang.org/x/term v0.29.0/go.mod h1:6bl4lRlvVuDgSf3179VpIxBF0o10JUpXWOnI7nErv7s=

misc.go

100644100755
File mode changed.

prompt4Types.go

100644100755
File mode changed.

terminal.go

100644100755
+33
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ package helperFunctions
88
import (
99
"fmt"
1010
"github.com/jwalton/gchalk"
11+
"strings"
1112
"syscall"
1213
"unsafe"
1314
)
@@ -37,6 +38,38 @@ func ClearTTY() {
3738
fmt.Print("\x1b[H") // Moves cursor to top-left corner
3839
}
3940

41+
// Center string in the terminal
42+
func Center(input string) string {
43+
width, _ := GetTerminalSize()
44+
if width == 0 {
45+
width = 80 // Default to 80 columns if size retrieval fails
46+
}
47+
48+
// Calculate the padding needed to center the text
49+
padding := (width - len(input)) / 2
50+
if padding < 0 {
51+
padding = 0 // Avoid negative padding if the string is longer than the terminal width
52+
}
53+
54+
return strings.Repeat(" ", padding) + input
55+
}
56+
57+
// Right aligns the input string to the right side of the terminal.
58+
func Right(input string) string {
59+
width, _ := GetTerminalSize()
60+
if width == 0 {
61+
width = 80 // Default width if retrieval fails
62+
}
63+
64+
// Calculate the padding needed to right-align the text
65+
padding := width - len(input)
66+
if padding < 0 {
67+
padding = 0 // Avoid negative padding if the string is longer than the terminal width
68+
}
69+
70+
return strings.Repeat(" ", padding) + input
71+
}
72+
4073
// COLOR FUNCTIONS
4174
// ===============
4275
func Red(sentence string) string {

0 commit comments

Comments
 (0)