diff --git a/CHANGELOG.md b/CHANGELOG.md index b1a4059..6dcadb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ * Elementary OS 5.0 * Fedora 28 * Fedora 29 + * Fedora 30 * Linux Mint 19 * Linux Mint 19.1 * Solus diff --git a/README.md b/README.md index 041f0ca..6ab071c 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Repertory allows you to mount Sia and/or SiaPrime blockchain storage solutions v * Elementary OS 5.0 * Fedora 28 * Fedora 29 + * Fedora 30 * Linux Mint 19 * Linux Mint 19.1 * Solus diff --git a/public/detect_linux.sh b/public/detect_linux.sh index c3f7ed7..c20dcf0 100644 --- a/public/detect_linux.sh +++ b/public/detect_linux.sh @@ -18,7 +18,10 @@ if [ -f /etc/centos-release ]; then fi elif [ -f /etc/fedora-release ]; then . /etc/os-release - if [ "$VERSION_ID" == "29" ]; then + if [ "$VERSION_ID" == "30" ]; then + DISTNAME=fedora + DISTVER=30 + elif [ "$VERSION_ID" == "29" ]; then DISTNAME=fedora DISTVER=29 elif [ "$VERSION_ID" == "28" ]; then diff --git a/releases.json b/releases.json index 0631e27..47039fe 100644 --- a/releases.json +++ b/releases.json @@ -42,6 +42,13 @@ "urls": [] } }, + "fedora30": { + "1.0.3": { + "sha256": "", + "sig": "", + "urls": [] + } + }, "solus": { "1.0.3": { "sha256": "", @@ -97,6 +104,9 @@ "fedora29": [ "1.0.3" ], + "fedora30": [ + "1.0.3" + ], "linux": [ "unavailable" ], diff --git a/src/constants.js b/src/constants.js index 5ccf561..e0c9dc9 100644 --- a/src/constants.js +++ b/src/constants.js @@ -34,6 +34,7 @@ exports.DATA_LOCATIONS = { debian9: '~/.local/repertory/ui', fedora28: '~/.local/repertory/ui', fedora29: '~/.local/repertory/ui', + fedora30: '~/.local/repertory/ui', linux: '~/.local/repertory/ui', solus: '~/.local/repertory/ui', 'ubuntu18.04': '~/.local/repertory/ui',