feat: Pre-commit and tag-appversion syncing (#926)
* add pre-commit to release container * use pip install --no-cache-dir * whoopsies * lint fixes * add some verbosity during pre-commit build process * add more pre-commit checks * repo pre-commit cleanup * add pre-commit to release scripting * try showing some more pre-commit dockerbuild verbosity * some tweaks and polish to release scripting. Also adds syncing primary tag and appversion
This commit is contained in:
@@ -14,14 +14,6 @@ jobs:
|
|||||||
container:
|
container:
|
||||||
image: ghcr.io/truecharts/truecharts-release:v1.2.0
|
image: ghcr.io/truecharts/truecharts-release:v1.2.0
|
||||||
steps:
|
steps:
|
||||||
- name: Cache helm repo cache
|
|
||||||
id: cache
|
|
||||||
uses: actions/cache@v2
|
|
||||||
with:
|
|
||||||
key: helmrepocache-${{ github.sha }}
|
|
||||||
path: |
|
|
||||||
~/.cache/helm/repository
|
|
||||||
~/.config/helm/repositories.yaml
|
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
name: Checkout
|
name: Checkout
|
||||||
|
|||||||
@@ -116,6 +116,8 @@ jobs:
|
|||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
uses: pre-commit/action@v2.0.3
|
uses: pre-commit/action@v2.0.3
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Copy general readme to website
|
- name: Copy general readme to website
|
||||||
run: |
|
run: |
|
||||||
yes | cp -rf index.yaml docs/index.yaml || echo "chart-index copy failed, continuing..."
|
yes | cp -rf index.yaml docs/index.yaml || echo "chart-index copy failed, continuing..."
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# See https://pre-commit.com for more information
|
# See https://pre-commit.com for more information
|
||||||
repos:
|
repos:
|
||||||
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
||||||
|
rev: v1.1.10
|
||||||
|
hooks:
|
||||||
|
- id: remove-crlf
|
||||||
|
- id: remove-tabs
|
||||||
|
|
||||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
rev: v4.0.1
|
rev: v4.0.1
|
||||||
hooks:
|
hooks:
|
||||||
|
|||||||
Vendored
+4
-4
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"recommendations": [
|
"recommendations": [
|
||||||
"ms-vscode-remote.remote-containers",
|
"ms-vscode-remote.remote-containers",
|
||||||
"golang.go"
|
"golang.go"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="oscam-1.0.2"></a>
|
<a name="oscam-1.0.2"></a>
|
||||||
## [oscam-1.0.2](https://github.com/truecharts/apps/compare/oscam-1.0.1...oscam-1.0.2) (2021-09-08)
|
## [oscam-1.0.2](https://github.com/truecharts/apps/compare/oscam-1.0.1...oscam-1.0.2) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="sogo-1.0.4"></a>
|
<a name="sogo-1.0.4"></a>
|
||||||
## [sogo-1.0.4](https://github.com/truecharts/apps/compare/sogo-1.0.3...sogo-1.0.4) (2021-09-08)
|
## [sogo-1.0.4](https://github.com/truecharts/apps/compare/sogo-1.0.3...sogo-1.0.4) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="sogo-1.0.4"></a>
|
<a name="sogo-1.0.4"></a>
|
||||||
## [sogo-1.0.4](https://github.com/truecharts/apps/compare/sogo-1.0.3...sogo-1.0.4) (2021-09-08)
|
## [sogo-1.0.4](https://github.com/truecharts/apps/compare/sogo-1.0.3...sogo-1.0.4) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package common
|
|||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/truecharts/apps/tests/helmunit"
|
"github.com/truecharts/apps/tests/helmunit"
|
||||||
"github.com/stretchr/testify/suite"
|
"github.com/stretchr/testify/suite"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -13,7 +13,7 @@ type ContainerTestSuite struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (suite *ContainerTestSuite) SetupSuite() {
|
func (suite *ContainerTestSuite) SetupSuite() {
|
||||||
suite.Chart = helmunit.New("common-test", "../../common-test")
|
suite.Chart = helmunit.New("common-test", "../../common-test")
|
||||||
suite.Chart.UpdateDependencies()
|
suite.Chart.UpdateDependencies()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="authelia-1.7.3"></a>
|
<a name="authelia-1.7.3"></a>
|
||||||
## [authelia-1.7.3](https://github.com/truecharts/apps/compare/authelia-1.7.2...authelia-1.7.3) (2021-09-08)
|
## [authelia-1.7.3](https://github.com/truecharts/apps/compare/authelia-1.7.2...authelia-1.7.3) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="authelia-1.7.3"></a>
|
<a name="authelia-1.7.3"></a>
|
||||||
## [authelia-1.7.3](https://github.com/truecharts/apps/compare/authelia-1.7.2...authelia-1.7.3) (2021-09-08)
|
## [authelia-1.7.3](https://github.com/truecharts/apps/compare/authelia-1.7.2...authelia-1.7.3) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="external-service-1.4.15"></a>
|
<a name="external-service-1.4.15"></a>
|
||||||
## [external-service-1.4.15](https://github.com/truecharts/apps/compare/external-service-1.4.14...external-service-1.4.15) (2021-09-08)
|
## [external-service-1.4.15](https://github.com/truecharts/apps/compare/external-service-1.4.14...external-service-1.4.15) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="external-service-1.4.15"></a>
|
<a name="external-service-1.4.15"></a>
|
||||||
## [external-service-1.4.15](https://github.com/truecharts/apps/compare/external-service-1.4.14...external-service-1.4.15) (2021-09-08)
|
## [external-service-1.4.15](https://github.com/truecharts/apps/compare/external-service-1.4.14...external-service-1.4.15) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="hyperion-ng-1.9.16"></a>
|
<a name="hyperion-ng-1.9.16"></a>
|
||||||
## [hyperion-ng-1.9.16](https://github.com/truecharts/apps/compare/hyperion-ng-1.9.15...hyperion-ng-1.9.16) (2021-09-08)
|
## [hyperion-ng-1.9.16](https://github.com/truecharts/apps/compare/hyperion-ng-1.9.15...hyperion-ng-1.9.16) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="jdownloader2-1.0.5"></a>
|
<a name="jdownloader2-1.0.5"></a>
|
||||||
## [jdownloader2-1.0.5](https://github.com/truecharts/apps/compare/jdownloader2-1.0.4...jdownloader2-1.0.5) (2021-09-08)
|
## [jdownloader2-1.0.5](https://github.com/truecharts/apps/compare/jdownloader2-1.0.4...jdownloader2-1.0.5) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="jdownloader2-1.0.5"></a>
|
<a name="jdownloader2-1.0.5"></a>
|
||||||
## [jdownloader2-1.0.5](https://github.com/truecharts/apps/compare/jdownloader2-1.0.4...jdownloader2-1.0.5) (2021-09-08)
|
## [jdownloader2-1.0.5](https://github.com/truecharts/apps/compare/jdownloader2-1.0.4...jdownloader2-1.0.5) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="k8s-gateway-1.0.10"></a>
|
<a name="k8s-gateway-1.0.10"></a>
|
||||||
## [k8s-gateway-1.0.10](https://github.com/truecharts/apps/compare/k8s-gateway-1.0.9...k8s-gateway-1.0.10) (2021-09-08)
|
## [k8s-gateway-1.0.10](https://github.com/truecharts/apps/compare/k8s-gateway-1.0.9...k8s-gateway-1.0.10) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
<a name="k8s-gateway-1.0.10"></a>
|
<a name="k8s-gateway-1.0.10"></a>
|
||||||
## [k8s-gateway-1.0.10](https://github.com/truecharts/apps/compare/k8s-gateway-1.0.9...k8s-gateway-1.0.10) (2021-09-08)
|
## [k8s-gateway-1.0.10](https://github.com/truecharts/apps/compare/k8s-gateway-1.0.9...k8s-gateway-1.0.10) (2021-09-08)
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,3 @@
|
|||||||
### Fix
|
### Fix
|
||||||
|
|
||||||
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922))
|
||||||
|
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user