-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tui-spacing
- Loading branch information
Showing
91 changed files
with
2,023 additions
and
893 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[alias] | ||
xtask = "run --package xtask --" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,20 @@ | |
|
||
## Supported Versions | ||
|
||
It is recommended that you run the stable version as this is more tested and used by most. The dev branch is bleed-edge commits that are not well tested and aren't meant to be used in production environments | ||
It is recommended that you use the stable branch as it's tested and used by most. The dev branch may contain bleeding-edge commits that are not well tested and are not meant to be used in production environments.<br> | ||
Version tags lower than the [latest stable release](https://github.com/ChrisTitusTech/linutil/releases/latest) are **not** supported. | ||
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| latest | :white_check_mark: | | ||
| dev | :x: | | ||
| Branch | Supported | | ||
| ------- | ---------------------- | | ||
| Stable | :white_check_mark: YES | | ||
| Dev | :x: NO | | ||
|
||
| Version | Supported | | ||
| -------------------------------------------------- | ---------------------- | | ||
| [![LATEST](https://img.shields.io/github/v/release/ChrisTitusTech/linutil?color=%230567ff&label=Latest&style=for-the-badge)](https://github.com/ChrisTitusTech/linutil/releases/latest) | :white_check_mark: YES | | ||
| Below LATEST | :x: NO | | ||
| Above LATEST | :x: NO | | ||
|
||
## Reporting a Vulnerability | ||
|
||
I'd recommend making an Issue for reporting a bug. If you would like privately submit the bug you can email me at [email protected] | ||
If you have any reason to believe there are security vulnerabilities in Linutil, fill out the [report form](https://github.com/christitustech/linutil/security/advisories/new) or e-mail [[email protected]](mailto:[email protected]). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,3 +88,24 @@ jobs: | |
env: | ||
version: ${{ env.version }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Setup Preview | ||
run: | | ||
echo "$(pwd)/build" >> $GITHUB_PATH | ||
- name: Generate preview | ||
uses: charmbracelet/[email protected] | ||
with: | ||
path: "docs/assets/preview.tape" | ||
|
||
- name: Move preview | ||
run: | | ||
mv preview.gif docs/assets/preview.gif | ||
- name: Upload preview | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: Preview for ${{ env.version }} | ||
file_pattern: "docs/assets/preview.gif" | ||
add_options: "--force" | ||
if: success() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
branches: ["main"] | ||
paths: | ||
- '**/*.rs' | ||
- 'Cargo.toml' | ||
- '**/Cargo.toml' | ||
- 'Cargo.lock' | ||
|
||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,34 @@ | ||
name: ShellCheck | ||
name: Script Checks | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'core/tabs/**/*.sh' | ||
- '**/*.sh' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
shellcheck: | ||
name: Shellcheck | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: git fetch origin ${{ github.base_ref }} | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
|
||
- name: Download and set up shellcheck | ||
run : | | ||
wget https://github.com/koalaman/shellcheck/releases/download/v0.10.0/shellcheck-v0.10.0.linux.x86_64.tar.xz | ||
tar -xf shellcheck-v0.10.0.linux.x86_64.tar.xz | ||
cd shellcheck-v0.10.0 | ||
chmod +x shellcheck | ||
- name: Run ShellCheck | ||
uses: reviewdog/action-shellcheck@v1 | ||
with: | ||
reviewdog_flags: '-fail-level=any' | ||
|
||
- name: Run shellcheck | ||
run: | | ||
for file in $(git diff --name-only origin/${{ github.base_ref }} HEAD core/tabs); do | ||
if [[ "$file" == *.sh ]] && [[ -f "$file" ]]; then | ||
./shellcheck-v0.10.0/shellcheck -S error "$file" | ||
fi | ||
done | ||
shfmt: | ||
name: Shell Fomatting | ||
runs-on: ubuntu-latest | ||
needs: shellcheck | ||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run shfmt | ||
uses: reviewdog/action-shfmt@v1 | ||
with: | ||
shfmt_flags: '-i 4 -ci' | ||
reviewdog_flags: '-fail-level=any' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Check for typos | ||
|
||
on: | ||
[push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
check-typos: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: git fetch origin ${{ github.base_ref }} | ||
|
||
- name: Run spellcheck | ||
uses: crate-ci/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: XTasks | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "xtask" | ||
- "Cargo.toml" | ||
- "Cargo.lock" | ||
- ".cargo" | ||
- "core/tabs" | ||
- "docs" | ||
push: | ||
paths: | ||
- "xtask" | ||
- "Cargo.toml" | ||
- "Cargo.lock" | ||
- ".cargo" | ||
- "core/tabs" | ||
- "docs" | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
docgen: | ||
name: DocGen | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@stable | ||
|
||
- name: Cache Cargo registry | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cargo/registry | ||
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | ||
restore-keys: ${{ runner.os }}-cargo-registry- | ||
|
||
- name: Cache Cargo index | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.cargo/git | ||
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} | ||
restore-keys: ${{ runner.os }}-cargo-index- | ||
|
||
- name: Run cargo xtask docgen | ||
run: cargo xtask docgen | ||
|
||
- name: Check uncommitted documentation changes | ||
run: | | ||
git diff | ||
git diff-files --quiet \ | ||
|| (echo "Run 'cargo xtask docgen' and push the changes" \ | ||
&& exit 1) |
Oops, something went wrong.