mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-07 06:32:47 -04:00
change pom files for 0.3.2.2-SNAPSHOT
This commit is contained in:
parent
0da30453b1
commit
b1c4d7b636
18 changed files with 26 additions and 34 deletions
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bitsquare</groupId>
|
<groupId>io.bitsquare</groupId>
|
||||||
<version>0.3.2.1</version>
|
<version>0.3.2.2-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ public class Version {
|
||||||
private static final Logger log = LoggerFactory.getLogger(Version.class);
|
private static final Logger log = LoggerFactory.getLogger(Version.class);
|
||||||
|
|
||||||
// The application versions
|
// The application versions
|
||||||
public static final String VERSION = "0.3.2.1";
|
public static final String VERSION = "0.3.2.2";
|
||||||
|
|
||||||
// The version nr. for the objects sent over the network. A change will break the serialization of old objects.
|
// The version nr. for the objects sent over the network. A change will break the serialization of old objects.
|
||||||
// If objects are used for both network and database the network version is applied.
|
// If objects are used for both network and database the network version is applied.
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bitsquare</groupId>
|
<groupId>io.bitsquare</groupId>
|
||||||
<version>0.3.2.1</version>
|
<version>0.3.2.2-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>core</artifactId>
|
<artifactId>core</artifactId>
|
||||||
|
|
|
@ -2,21 +2,10 @@
|
||||||
|
|
||||||
# Here are the typical locations for the data directory:
|
# Here are the typical locations for the data directory:
|
||||||
|
|
||||||
# Windows:
|
# Mac OSX: /Users/username/Library/Application Support/Bitsquare/
|
||||||
# %APPDATA%\Bitcoin\
|
# Linux: /home/username/.Bitsquare/
|
||||||
# (XP) C:\Documents and Settings\username\Application Data\Bitcoin\bitcoin.conf
|
# Windows XP: C:\Documents and Settings\username\Application Data\Bitsquare\
|
||||||
# (Vista, 7) C:\Users\username\AppData\Roaming\Bitcoin\bitcoin.conf
|
# Windows Vista or 7: %appdata%/Bitsquare/
|
||||||
|
|
||||||
# Linux:
|
|
||||||
# $HOME/.bitcoin/
|
|
||||||
# /home/username/.bitcoin/bitcoin.conf
|
|
||||||
|
|
||||||
# Mac OSX:
|
|
||||||
# $HOME/Library/Application Support/Bitcoin/
|
|
||||||
# /Users/username/Library/Application Support/Bitcoin/bitcoin.conf
|
|
||||||
|
|
||||||
|
|
||||||
# Supported properties:
|
|
||||||
# bitcoin.network=regtest | testnet | mainnet
|
|
||||||
|
|
||||||
|
# Supported properties for bitcoin.network=regtest | testnet | mainnet
|
||||||
bitcoin.network = regtest
|
bitcoin.network = regtest
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bitsquare</groupId>
|
<groupId>io.bitsquare</groupId>
|
||||||
<version>0.3.2.1</version>
|
<version>0.3.2.2-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ import static io.bitsquare.app.BitsquareEnvironment.APP_NAME_KEY;
|
||||||
public class BitsquareApp extends Application {
|
public class BitsquareApp extends Application {
|
||||||
private static final Logger log = (ch.qos.logback.classic.Logger) LoggerFactory.getLogger(BitsquareApp.class);
|
private static final Logger log = (ch.qos.logback.classic.Logger) LoggerFactory.getLogger(BitsquareApp.class);
|
||||||
|
|
||||||
public static final boolean DEV_MODE = false;
|
public static final boolean DEV_MODE = true;
|
||||||
public static final boolean IS_RELEASE_VERSION = !DEV_MODE && true;
|
public static final boolean IS_RELEASE_VERSION = !DEV_MODE && true;
|
||||||
|
|
||||||
private static Environment env;
|
private static Environment env;
|
||||||
|
|
|
@ -55,6 +55,8 @@ public class ImageUtil {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isRetina() {
|
public static boolean isRetina() {
|
||||||
|
// Latest JDK renamed getMaxPixelScale to getMaxRenderScale
|
||||||
|
// return ((QuantumToolkit) QuantumToolkit.getToolkit()).getMaxRenderScale() > 1.9f;
|
||||||
return ((QuantumToolkit) QuantumToolkit.getToolkit()).getMaxPixelScale() > 1.9f;
|
return ((QuantumToolkit) QuantumToolkit.getToolkit()).getMaxPixelScale() > 1.9f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bitsquare</groupId>
|
<groupId>io.bitsquare</groupId>
|
||||||
<version>0.3.2.1</version>
|
<version>0.3.2.2-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bitsquare</groupId>
|
<groupId>io.bitsquare</groupId>
|
||||||
<version>0.3.2.1</version>
|
<version>0.3.2.2-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bitsquare</groupId>
|
<groupId>io.bitsquare</groupId>
|
||||||
<version>0.3.2.1</version>
|
<version>0.3.2.2-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bitsquare</groupId>
|
<groupId>io.bitsquare</groupId>
|
||||||
<version>0.3.2.1</version>
|
<version>0.3.2.2-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
|
@ -164,6 +164,7 @@ public class P2PService implements SetupListener, MessageListener, ConnectionLis
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// MessageListener implementation
|
// MessageListener implementation
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -6,7 +6,7 @@ mkdir -p gui/deploy
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Edit versions
|
# Edit versions
|
||||||
fullVersion=0.3.2.1
|
fullVersion=0.3.2.2
|
||||||
|
|
||||||
# Copy jar file from mac build (1.jar from processed folder) to linux box
|
# Copy jar file from mac build (1.jar from processed folder) to linux box
|
||||||
# Note: fakeroot needs to be installed on linux
|
# Note: fakeroot needs to be installed on linux
|
||||||
|
|
|
@ -5,7 +5,7 @@ mkdir -p gui/deploy
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
fullVersion="0.3.2.1"
|
fullVersion="0.3.2.2"
|
||||||
|
|
||||||
mvn clean package -DskipTests -Dmaven.javadoc.skip=true
|
mvn clean package -DskipTests -Dmaven.javadoc.skip=true
|
||||||
cp gui/target/shaded.jar gui/deploy/Bitsquare.jar
|
cp gui/target/shaded.jar gui/deploy/Bitsquare.jar
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
[Setup]
|
[Setup]
|
||||||
AppId={{bitsquare}}
|
AppId={{bitsquare}}
|
||||||
AppName=Bitsquare
|
AppName=Bitsquare
|
||||||
AppVersion=0.3.2.1
|
AppVersion=0.3.2.2
|
||||||
AppVerName=Bitsquare
|
AppVerName=Bitsquare
|
||||||
AppPublisher=Bitsquare
|
AppPublisher=Bitsquare
|
||||||
AppComments=Bitsquare
|
AppComments=Bitsquare
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
cd ..\..\
|
cd ..\..\
|
||||||
mkdir gui\deploy
|
mkdir gui\deploy
|
||||||
|
|
||||||
:: edit iss file -> AppVersion=0.3.2.1
|
:: edit iss file -> AppVersion=0.3.2.2
|
||||||
|
|
||||||
:: Copy gui/deploy.Bitsquare.jar file from mac build to windows
|
:: Copy gui/deploy.Bitsquare.jar file from mac build to windows
|
||||||
:: edit -> -BappVersion=0.3.2.1 and -srcfiles
|
:: edit -> -BappVersion=0.3.2.2 and -srcfiles
|
||||||
|
|
||||||
:: 64 bit build
|
:: 64 bit build
|
||||||
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
|
:: Needs Inno Setup 5 or later (http://www.jrsoftware.org/isdl.php)
|
||||||
:: Build with jdk1.8.0_40 fails but jdk1.8.0_3 works
|
:: Build with jdk1.8.0_40 fails but jdk1.8.0_3 works
|
||||||
call "C:\Program Files\Java\jdk1.8.0_31\bin\javapackager.exe" -deploy -BappVersion=0.3.2.1 -native exe -name Bitsquare -title Bitsquare -vendor Bitsquare -outdir gui\deploy -appclass io.bitsquare.app.BitsquareAppMain -srcfiles "gui\deploy\Bitsquare.jar" -outfile Bitsquare -Bruntime="C:\Program Files\Java\jdk1.8.0_31\jre"
|
call "C:\Program Files\Java\jdk1.8.0_31\bin\javapackager.exe" -deploy -BappVersion=0.3.2.2 -native exe -name Bitsquare -title Bitsquare -vendor Bitsquare -outdir gui\deploy -appclass io.bitsquare.app.BitsquareAppMain -srcfiles "gui\deploy\Bitsquare.jar" -outfile Bitsquare -Bruntime="C:\Program Files\Java\jdk1.8.0_31\jre"
|
||||||
|
|
||||||
:: 32 bit build
|
:: 32 bit build
|
||||||
:: call "C:\Program Files (x86)\Java\jdk1.8.0_31\bin\javapackager.exe" -deploy -BappVersion=0.3.2.1 -native exe -name Bitsquare -title Bitsquare -vendor Bitsquare -outdir gui\deploy -appclass io.bitsquare.app.BitsquareAppMain -srcfiles "gui\deploy\Bitsquare.jar" -outfile Bitsquare -Bruntime="C:\Program Files (x86)\Java\jdk1.8.0_31\jre"
|
:: call "C:\Program Files (x86)\Java\jdk1.8.0_31\bin\javapackager.exe" -deploy -BappVersion=0.3.2.2 -native exe -name Bitsquare -title Bitsquare -vendor Bitsquare -outdir gui\deploy -appclass io.bitsquare.app.BitsquareAppMain -srcfiles "gui\deploy\Bitsquare.jar" -outfile Bitsquare -Bruntime="C:\Program Files (x86)\Java\jdk1.8.0_31\jre"
|
||||||
|
|
||||||
cd package\windows
|
cd package\windows
|
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
||||||
<groupId>io.bitsquare</groupId>
|
<groupId>io.bitsquare</groupId>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>0.3.2.1</version>
|
<version>0.3.2.2-SNAPSHOT</version>
|
||||||
<description>Bitsquare - The decentralized bitcoin exchange</description>
|
<description>Bitsquare - The decentralized bitcoin exchange</description>
|
||||||
<url>https://bitsquare.io</url>
|
<url>https://bitsquare.io</url>
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
<parent>
|
<parent>
|
||||||
<artifactId>parent</artifactId>
|
<artifactId>parent</artifactId>
|
||||||
<groupId>io.bitsquare</groupId>
|
<groupId>io.bitsquare</groupId>
|
||||||
<version>0.3.2.1</version>
|
<version>0.3.2.2-SNAPSHOT</version>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue