From 9847eb74fd3efb0e48b72e7d63e184b57a1f2cec Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Mon, 19 Jul 2021 08:59:30 -0500 Subject: [PATCH] Updated version --- CHANGELOG.md | 2 +- README.md | 12 ++++++------ package.json | 2 +- src/constants.js | 6 ++++-- 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b727153..1b0ddeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 1.3.5 +## 1.4.0 - Remove Linux platform selection ## 1.3.4 diff --git a/README.md b/README.md index e4ce2c7..92b0071 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ Skynet support is considered EXPERIMENTAL. Files added to Skynet should not be c * ScPrime >=1.4.1.2 ## Downloads -* **Repertory UI v1.3.5 Linux - 64-bit** [](https://bitbucket.org/blockstorage/repertory-ui/downloads/repertory-ui_1.3.5_linux_x86_64.AppImage) +* **Repertory UI v1.4.0 Linux + 64-bit** [](https://bitbucket.org/blockstorage/repertory-ui/downloads/repertory-ui_1.4.0_linux_x86_64.AppImage) * NOTE: Linux distributions require `fuse` and `libfuse` to be installed. -* **Repertory UI v1.3.5 OS X - 64-bit** [](https://bitbucket.org/blockstorage/repertory-ui/downloads/repertory-ui_1.3.5_mac.dmg) -* **Repertory UI v1.3.5 Windows - 64-bit** [](https://bitbucket.org/blockstorage/repertory-ui/downloads/repertory-ui_1.3.5_win.exe) +* **Repertory UI v1.4.0 OS X + 64-bit** [](https://bitbucket.org/blockstorage/repertory-ui/downloads/repertory-ui_1.4.0_mac.dmg) +* **Repertory UI v1.4.0 Windows + 64-bit** [](https://bitbucket.org/blockstorage/repertory-ui/downloads/repertory-ui_1.4.0_win.exe) ## Supported Platforms * OS X 64-bit diff --git a/package.json b/package.json index a9310d6..42c8f7c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "repertory-ui", - "version": "1.3.5", + "version": "1.4.0", "private": true, "author": "scott.e.graves@protonmail.com", "description": "GUI for Repertory - Repertory allows you to mount Sia, Skynet, and/or ScPrime storage solutions via FUSE on Linux/OS X or via WinFSP on Windows.", diff --git a/src/constants.js b/src/constants.js index 70120e1..fd8b2f8 100644 --- a/src/constants.js +++ b/src/constants.js @@ -26,13 +26,15 @@ exports.DEV_PUBLIC_KEY = '9wIDAQAB\n' + '-----END PUBLIC KEY-----'; -const _REPERTORY_BRANCH = '1.3.x_branch'; -const _REPERTORY_UI_BRANCH = '1.3.x_branch'; +const _REPERTORY_BRANCH = '1.4.x_branch'; +const _REPERTORY_UI_BRANCH = '1.4.x_branch'; exports.REPERTORY_BRANCH = _REPERTORY_BRANCH; exports.REPERTORY_UI_BRANCH = _REPERTORY_UI_BRANCH; exports.RELEASES_URL = + 'https://bitbucket.org/blockstorage/repertory/raw/' + _REPERTORY_BRANCH + '/releases_1.4.json'; +exports.RELEASES_URL_PREVIOUS = 'https://bitbucket.org/blockstorage/repertory/raw/' + _REPERTORY_BRANCH + '/releases_1.3.json'; exports.UI_RELEASES_URL = 'https://bitbucket.org/blockstorage/repertory-ui/raw/' + _REPERTORY_UI_BRANCH + '/releases.json';