Commit Graph

25 Commits

Author SHA1 Message Date
woodser
f64b12e615 update to monero-java v0.7.11 2023-02-15 09:26:09 -05:00
woodser
b6682746fd update to monero-java v0.7.10 2023-01-05 10:01:34 -05:00
woodser
416d21a8aa update to monero-java v0.7.8 2022-10-28 08:55:58 -04:00
woodser
45bac8c264 update to monero-java v0.7.7 2022-10-27 08:06:18 -04:00
woodser
6ad30e646b update to jfx 16 to fix segfault in legacy ui 2022-10-27 08:06:18 -04:00
woodser
14c5384edc update to monero-java v0.7.6 to fix jackson dependency 2022-10-14 16:02:08 -04:00
woodser
940800cecd fix build verification hash to use jackson 2.14.0-rc2 2022-10-12 08:48:35 -04:00
woodser
1a6d635e3b
fix build hash verification due to dependency update (#459)
Co-authored-by: duriancrepe <duriancrepe@protonmail.com>
2022-09-30 07:36:58 -04:00
duriancrepe
9975d7398b
upgrade to Gradle 7.3.3 (#439)
* upgrade to Gradle 7.3.3

* add verification hashes for mac and windows

* add verification hash for windows
2022-09-19 08:59:57 -04:00
woodser
bdaa054c95 update to monero-java v0.7.4 2022-08-30 10:25:45 -04:00
woodser
3727d12ef6
select online, registered, and least used arbitrator (#400)
support registering and unregistering arbitrators over grpc
maker always sends InitTradeRequest to arbitrator
share original contract for comparision
remove backup arbitator from model
cleanup trade states
2022-08-13 09:47:33 -04:00
woodser
3753a42023 update to monero-project v0.18.0.0, monero-java v0.7.2 2022-08-08 13:45:46 -04:00
jmacxx
14a03f3027 Upgrade XChange 5.0.13, remove BitBay CoinPaprika add CoinbasePro.
Co-Authored-by: jmacxx <47253594+jmacxx@users.noreply.github.com>
2022-07-31 14:50:37 -04:00
erciccione
50d8346d48 deps: update to netlayer 0.7.3
Co-authored-by: chimp1984 <chimp1984@gmx.com>
2022-07-08 11:39:12 -04:00
woodser
88578bed10 general rebase in order to update payment methods and desktop app
Co-authored-by: Alva Swanson <alvasw@protonmail.com>
Co-authored-by: andyheko <haoen.ko@gmail.com>
Co-authored-by: Bisq GitHub Admin <51445974+bisq-github-admin-3@users.noreply.github.com>
Co-authored-by: BtcContributor <79100296+BtcContributor@users.noreply.github.com>
Co-authored-by: cd2357 <cd2357@users.noreply.github.com>
Co-authored-by: chimp1984 <chimp1984@gmx.com>
Co-authored-by: Chris Beams <chris@beams.io>
Co-authored-by: Christoph Atteneder <christoph.atteneder@gmail.com>
Co-authored-by: Devin Bileck <603793+devinbileck@users.noreply.github.com>
Co-authored-by: ghubstan <36207203+ghubstan@users.noreply.github.com>
Co-authored-by: Huey <hueydane@gmail.com>
Co-authored-by: Jakub Loucký <jakub.loucky@outlook.cz>
Co-authored-by: jmacxx <47253594+jmacxx@users.noreply.github.com>
Co-authored-by: KanoczTomas <tomas.kanocz@cnl.sk>
Co-authored-by: m52go <735155+m52go@users.noreply.github.com>
Co-authored-by: Marcus0x <marcus0x@xrhodium.org>
Co-authored-by: MarnixCroes <93143998+MarnixCroes@users.noreply.github.com>
Co-authored-by: Martin Harrigan <martinharrigan@gmail.com>
Co-authored-by: MwithM <50149324+MwithM@users.noreply.github.com>
Co-authored-by: sqrrm <sqrrm@users.noreply.github.com>
Co-authored-by: Stan <36207203+ghubstan@users.noreply.github.com>
Co-authored-by: Stephan Oeste <emzy@emzy.de>
Co-authored-by: Steven Barclay <stejbac@gmail.com>
Co-authored-by: WAT <shiido.it@gmail.com>
Co-authored-by: wiz <j@wiz.biz>
Co-authored-by: xyzmaker123 <84982606+xyzmaker123@users.noreply.github.com>
2022-05-28 13:56:29 -04:00
woodser
2da77de41b update lombok to fix eclipse refactor > rename issue 2022-05-16 13:33:07 -04:00
woodser
e4a8aa45e7 update to monero-java v0.7.0 2022-05-10 09:54:37 -04:00
erciccione
e49aef88d5 deps: update tor to 0.4.5.10 (netlayer 0.7.2)
https://github.com/bisq-network/netlayer/releases/tag/0.7.2
2022-04-03 12:11:13 -04:00
woodser
71a592cbb8
update to monero-java v0.6.4 (#237) 2022-02-06 12:10:08 -05:00
Přemek Vyhnal
17d109a15e
replace witness plugin with gradle dependency checksum verification (#223)
* replace witness plugin with gradle builtin dependency checksum verification

I noticed that a recent dependency change didn't needed checksum change. It was because the witness plugin only checked the listed checksums, not all the dependencies. If the dependency was not on the list, the new checksum was not verified.

Gradle now has its own verification mechanism, see https://docs.gradle.org/current/userguide/dependency_verification.html

After a dependency is added or a version is changed, the checksums could be regenerated using the following command.

```
gradle --write-verification-metadata sha256 help
````

 The help task is just used to discover as much as possible dependencies, and if subsequent builds fail with a verification error, you can re-execute generation with the appropriate tasks to "discover" more dependencies

 I verified that all the checksums from the removed file are present in the new one.

jcenter repository (used only for gradle shadow plugin) is replaced with gradlePluginPortal. jcenter is shutting down anyway and the checksums for shadow plugin and its dependencies were not added automatically to the xml file for some reason.

* add javadoc and source as trusted artifacts

Co-authored-by: woodser <woodser@protonmail.com>
2022-02-06 11:36:58 -05:00
premek
a7a515ec94 substitute jtorctl transitive dependency to resolve checksum issues
on jitpack versions can be built from git tags or commits. Tag 1.5 and commit 9b5ba2036b points to exactly the same code. Lets see if this change resolves the issues when version 2 versions 1.5 were cached somewhere with different checksums
2022-01-17 08:53:33 -05:00
la-rocinante
fd9201f8c6
Updated checksum of jtorctl (#128)
Updated checksum of jtorctl

Co-authored-by: el-rocinante <>
2021-10-30 08:46:43 -04:00
woodser
c0e7202f06 compile specific version of jackson 2021-07-24 07:59:26 -04:00
woodser
a22edd60f8 Haveno 2021-05-04 22:49:48 -04:00
woodser
8a38081c04 Bisq 2021-05-04 20:20:01 -04:00