Browse Source

v1.7.1

master
Craig Raw 2 years ago
parent
commit
d44aecea90
  1. 2
      build.gradle
  2. 2
      docs/reproducible.md
  3. 2
      src/main/deploy/package/osx/Info.plist
  4. 2
      src/main/java/com/sparrowwallet/sparrow/SparrowWallet.java

2
build.gradle

@ -7,7 +7,7 @@ plugins {
id 'org.beryx.jlink' version '2.25.0'
}
def sparrowVersion = '1.7.0'
def sparrowVersion = '1.7.1'
def os = org.gradle.internal.os.OperatingSystem.current()
def osName = os.getFamilyName()
if(os.macOsX) {

2
docs/reproducible.md

@ -82,7 +82,7 @@ sudo apt install -y rpm fakeroot binutils
First, assign a temporary variable in your shell for the specific release you want to build. For the current one specify:
```shell
GIT_TAG="1.7.0"
GIT_TAG="1.7.1"
```
The project can then be initially cloned as follows:

2
src/main/deploy/package/osx/Info.plist

@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.7.0</string>
<string>1.7.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<!-- See https://developer.apple.com/app-store/categories/ for list of AppStore categories -->

2
src/main/java/com/sparrowwallet/sparrow/SparrowWallet.java

@ -18,7 +18,7 @@ import java.util.*;
public class SparrowWallet {
public static final String APP_ID = "com.sparrowwallet.sparrow";
public static final String APP_NAME = "Sparrow";
public static final String APP_VERSION = "1.7.0";
public static final String APP_VERSION = "1.7.1";
public static final String APP_VERSION_SUFFIX = "";
public static final String APP_HOME_PROPERTY = "sparrow.home";
public static final String NETWORK_ENV_PROPERTY = "SPARROW_NETWORK";

Loading…
Cancel
Save