OpenSUSE 15.0/OpenSUSE 15.1 support

This commit is contained in:
Scott E. Graves
2019-07-04 14:37:56 -05:00
parent 8071d9b076
commit 37821cbb3a
5 changed files with 35 additions and 1 deletions

View File

@@ -1,4 +1,9 @@
# Changelog #
## 1.0.4 ##
* Additional Linux distribution support:
* OpenSUSE Leap 15
* OpenSUSE Leap 15.1
## 1.0.3 ##
* Linux distribution support
* Arch Linux
@@ -17,7 +22,6 @@
* Ubuntu 19.04
* Removed `react-css-modules` dependency
* Removed Hyperspace (no active development/insufficient host network)
* Added signature or SHA-256 validation to downloads
* Restore main window on error message
## 1.0.2 ##

View File

@@ -24,6 +24,8 @@ Repertory allows you to mount Sia and/or SiaPrime blockchain storage solutions v
* Fedora 30
* Linux Mint 19
* Linux Mint 19.1
* OpenSUSE Leap 15
* OpenSUSE Leap 15.1
* Solus
* Ubuntu 18.04
* Ubuntu 18.10

View File

@@ -65,6 +65,16 @@ elif [ -f /etc/os-release ]; then
. /etc/os-release
if [ "$ID" == "arch" ]; then
DISTNAME=arch
elif [ "$ID" == "opensuse-leap" ]; then
if [ "$VERSION_ID" == "15.0" ]; then
DISTNAME=opensuse
DISTVER=15
elif [ "$VERSION_ID" == "15.1" ]; then
DISTNAME=opensuse
DISTVER=15.1
else
resetDistVer
fi
else
resetDistVer
fi

View File

@@ -56,6 +56,22 @@
]
}
},
"opensuse15": {
"1.0.4": {
"sha256": "",
"sig": "",
"urls": [
]
}
},
"opensuse15.1": {
"1.0.4": {
"sha256": "",
"sig": "",
"urls": [
]
}
},
"solus": {
"1.0.4": {
"sha256": "",

View File

@@ -38,6 +38,8 @@ exports.DATA_LOCATIONS = {
fedora29: '~/.local/repertory/ui',
fedora30: '~/.local/repertory/ui',
linux: '~/.local/repertory/ui',
opensuse15: '~/.local/repertory/ui',
'opensuse15.1': '~/.local/repertory/ui',
solus: '~/.local/repertory/ui',
'ubuntu18.04': '~/.local/repertory/ui',
'ubuntu18.10': '~/.local/repertory/ui',