Merge branch '1.0.3_branch' of bitbucket.org:blockstorage/repertory-ui into 1.0.3_branch

This commit is contained in:
Scott E. Graves
2019-05-02 16:51:41 -05:00
5 changed files with 17 additions and 1 deletions

View File

@@ -9,6 +9,7 @@
* Elementary OS 5.0 * Elementary OS 5.0
* Fedora 28 * Fedora 28
* Fedora 29 * Fedora 29
* Fedora 30
* Linux Mint 19 * Linux Mint 19
* Linux Mint 19.1 * Linux Mint 19.1
* Solus * Solus

View File

@@ -17,6 +17,7 @@ Repertory allows you to mount Sia and/or SiaPrime blockchain storage solutions v
* Elementary OS 5.0 * Elementary OS 5.0
* Fedora 28 * Fedora 28
* Fedora 29 * Fedora 29
* Fedora 30
* Linux Mint 19 * Linux Mint 19
* Linux Mint 19.1 * Linux Mint 19.1
* Solus * Solus

View File

@@ -18,7 +18,10 @@ if [ -f /etc/centos-release ]; then
fi fi
elif [ -f /etc/fedora-release ]; then elif [ -f /etc/fedora-release ]; then
. /etc/os-release . /etc/os-release
if [ "$VERSION_ID" == "29" ]; then if [ "$VERSION_ID" == "30" ]; then
DISTNAME=fedora
DISTVER=30
elif [ "$VERSION_ID" == "29" ]; then
DISTNAME=fedora DISTNAME=fedora
DISTVER=29 DISTVER=29
elif [ "$VERSION_ID" == "28" ]; then elif [ "$VERSION_ID" == "28" ]; then

View File

@@ -42,6 +42,13 @@
"urls": [] "urls": []
} }
}, },
"fedora30": {
"1.0.3": {
"sha256": "",
"sig": "",
"urls": []
}
},
"solus": { "solus": {
"1.0.3": { "1.0.3": {
"sha256": "", "sha256": "",
@@ -97,6 +104,9 @@
"fedora29": [ "fedora29": [
"1.0.3" "1.0.3"
], ],
"fedora30": [
"1.0.3"
],
"linux": [ "linux": [
"unavailable" "unavailable"
], ],

View File

@@ -34,6 +34,7 @@ exports.DATA_LOCATIONS = {
debian9: '~/.local/repertory/ui', debian9: '~/.local/repertory/ui',
fedora28: '~/.local/repertory/ui', fedora28: '~/.local/repertory/ui',
fedora29: '~/.local/repertory/ui', fedora29: '~/.local/repertory/ui',
fedora30: '~/.local/repertory/ui',
linux: '~/.local/repertory/ui', linux: '~/.local/repertory/ui',
solus: '~/.local/repertory/ui', solus: '~/.local/repertory/ui',
'ubuntu18.04': '~/.local/repertory/ui', 'ubuntu18.04': '~/.local/repertory/ui',