-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add mobile notifications #1624
Add mobile notifications #1624
Changes from 24 commits
a0b05c0
253eb4c
b86c03e
9ee9b93
fa20815
5dec138
0832f3a
751567d
a957145
4c2366b
d2e8c0c
24915af
af08f57
dbad395
4ce22ec
4a0c8b6
703bc08
671daac
be5d191
7e1dcba
c3e7fe0
bbc1306
a8b5b1e
c03f4c1
6499772
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
buildscript { | ||
repositories { | ||
mavenLocal() | ||
jcenter() | ||
} | ||
dependencies { | ||
|
@@ -15,7 +16,7 @@ apply plugin: 'witness' | |
apply plugin: 'com.github.johnrengelman.shadow' | ||
|
||
group = 'network.bisq' | ||
version = '0.7.1-SNAPSHOT' | ||
version = '0.8.0' | ||
|
||
sourceCompatibility = 1.8 | ||
|
||
|
@@ -33,25 +34,29 @@ tasks.withType(JavaCompile) { | |
sourceSets.main.resources.srcDirs += ['src/main/java'] // to copy fxml and css files | ||
|
||
repositories { | ||
mavenLocal() | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Was this only for testing purposes locally? |
||
jcenter() | ||
maven { url 'https://jitpack.io' } | ||
maven { url 'https://raw.githubusercontent.com/JesusMcCloud/tor-binary/master/release/' } | ||
maven { url 'https://dl.bintray.com/jerady/maven' } | ||
} | ||
|
||
dependencies { | ||
compile 'network.bisq:bisq-p2p:-SNAPSHOT' | ||
compile 'network.bisq:bisq-core:-SNAPSHOT' | ||
compile 'network.bisq:bisq-common:-SNAPSHOT' | ||
compile 'network.bisq:bisq-p2p:0.8.0' | ||
compile 'network.bisq:bisq-core:0.8.0' | ||
compile 'network.bisq:bisq-common:0.8.0' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here: I think this should be -SNAPSHOT when merging |
||
compile 'org.controlsfx:controlsfx:8.0.6_20' | ||
compile 'org.reactfx:reactfx:2.0-M3' | ||
compile 'net.glxn:qrgen:1.3' | ||
compile 'de.jensd:fontawesomefx:8.0.0' | ||
compile 'de.jensd:fontawesomefx-commons:8.15' | ||
compile 'de.jensd:fontawesomefx-materialdesignfont:1.7.22-4' | ||
compile 'com.googlecode.jcsv:jcsv:1.4.0' | ||
compile 'com.github.sarxos:webcam-capture:0.3.12' | ||
|
||
|
||
compileOnly 'org.projectlombok:lombok:1.16.16' | ||
annotationProcessor 'org.projectlombok:lombok:1.16.16' | ||
//annotationProcessor 'org.projectlombok:lombok:1.16.16' | ||
testCompile('org.mockito:mockito-core:2.8.9') { | ||
exclude(module: 'objenesis') | ||
} | ||
|
@@ -61,7 +66,7 @@ dependencies { | |
testCompile 'org.springframework:spring-test:4.3.6.RELEASE' | ||
testCompile 'com.natpryce:make-it-easy:4.0.1' | ||
testCompileOnly 'org.projectlombok:lombok:1.16.16' | ||
testAnnotationProcessor 'org.projectlombok:lombok:1.16.16' | ||
//testAnnotationProcessor 'org.projectlombok:lombok:1.16.16' | ||
} | ||
|
||
build.dependsOn installDist | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ mkdir -p deploy | |
set -e | ||
|
||
# Edit version | ||
version=0.7.1 | ||
version=0.8.0 | ||
|
||
dir="/media/sf_vm_shared_ubuntu" | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ mkdir -p deploy | |
|
||
set -e | ||
|
||
version="0.7.1" | ||
version="0.8.0" | ||
|
||
./gradlew --include-build ../common --include-build ../assets --include-build ../p2p --include-build ../core build -x test shadowJar | ||
|
||
|
@@ -82,18 +82,18 @@ $JAVA_HOME/bin/javapackager \ | |
-Bicon=package/osx/Bisq.icns \ | ||
-Bruntime="$JAVA_HOME/jre" \ | ||
-native dmg \ | ||
-name Bisq \ | ||
-title Bisq \ | ||
-name Bisq_notifications \ | ||
-title Bisq_notifications \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also shouldn't be changed here |
||
-vendor Bisq \ | ||
-outdir deploy \ | ||
-srcfiles "deploy/Bisq-$version.jar" \ | ||
-appclass bisq.desktop.app.BisqAppMain \ | ||
-outfile Bisq | ||
-outfile Bisq_notifications | ||
|
||
rm "deploy/Bisq.html" | ||
rm "deploy/Bisq.jnlp" | ||
|
||
mv "deploy/bundles/Bisq-$version.dmg" "deploy/Bisq-$version.dmg" | ||
mv "deploy/bundles/Bisq_notifications-$version.dmg" "deploy/Bisq_notifications-$version.dmg" | ||
rm -r "deploy/bundles" | ||
|
||
open deploy | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
cd ../../ | ||
|
||
version="0.7.1" | ||
version="0.8.0" | ||
|
||
target_dir="releases/$version" | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we only do this during the release?