Commit Graph

381 Commits

Author SHA1 Message Date
selsta c18cdd3623 build: prepare v0.17.2.0 2021-03-26 01:53:45 +01:00
selsta 31b2572ec7 build: prepare v0.17.1.9 2021-01-02 18:13:47 +01:00
selsta ba60541f3e build: prepare v0.17.1.8 2020-12-23 02:13:16 +01:00
selsta a700e6103b build: prepare v0.17.1.7 2020-12-10 20:12:27 +01:00
selsta b34d50fa76 build: prepare v0.17.1.6 2020-12-03 21:37:33 +01:00
selsta 5bb83ab042 build: prepare v0.17.1.5 2020-11-23 15:22:35 +01:00
selsta 752837b2c8 build: prepare v0.17.1.3 2020-11-07 18:19:08 +01:00
selsta f3dd25c0e0 build: prepare v0.17.1.2 2020-11-07 00:12:39 +01:00
selsta c028f4c4d8 build: prepare v0.17.1.1 2020-10-18 16:11:37 +02:00
selsta a2e37eb3d8 build: prepare v0.17.1.0 2020-10-13 01:13:06 +02:00
selsta c02d24f838 build: prepare v0.17.0.1 2020-09-25 02:15:13 +02:00
selsta f240b1dd88 build: prepare v0.17 2020-09-14 16:52:42 +02:00
cryptographicfool 5245ba132b Made spelling, grammar, and punctuation changes. Squashed commits into one as requested.
Made some corrections as suggested.
2020-08-28 18:23:54 +00:00
Alexander Blair 05390fd2d4 Merge pull request #6762
3614f78d5 README: update list of third party monero packages (erciccione)
2020-08-27 03:02:12 -07:00
Alexander Blair aadd72202f Merge pull request #6610
b6e904e54 README: mention pruning (moneromooo-monero)
2020-08-26 12:53:55 -07:00
Alexander Blair 65d7d8312d Merge pull request #6712
01cd3d934 For NetBSD, add instructions to README.md and define to ea_config.h (thomasvaughan)
2020-08-16 12:51:41 -07:00
Alexander Blair 976a9e0c72 Merge pull request #6618
2d5d74ff5 Mention correct libusb and libudev dependencies (MaxXor)
2020-08-16 12:44:28 -07:00
erciccione 3614f78d5f README: update list of third party monero packages
Removed AUR package, since doesn't seem to exist anymore and added Debian package (the CCS-funded one)
2020-08-16 21:38:11 +02:00
thomasvaughan 01cd3d9342 For NetBSD, add instructions to README.md and define to ea_config.h 2020-07-19 12:53:57 +00:00
Alexander Blair 912cbad6db Merge pull request #6529
153977aed libzmq should be libzmq4. (russoj88)
2020-07-19 03:35:14 -07:00
Alexander Blair a0d179e528 Merge pull request #6512
5ef0607da Update copyright year to 2020 (SomaticFanatic)
2020-07-19 03:32:59 -07:00
selsta 58e1c8b031 repo: update donation fund address 2020-06-09 12:19:39 +02:00
MaxXor 2d5d74ff5c Mention correct libusb and libudev dependencies 2020-06-02 14:00:31 +02:00
moneromooo-monero b6e904e547 README: mention pruning 2020-06-01 17:48:11 +00:00
russoj88 153977aed4 libzmq should be libzmq4. 2020-05-13 14:21:18 -07:00
selsta 4baee200a7 build: prepare v0.16.0.0 release 2020-05-13 16:15:03 +02:00
SomaticFanatic 5ef0607da6 Update copyright year to 2020
Update copyright year to 2020
2020-05-06 22:36:54 -04:00
luigi1111 ee06f56619 Merge pull request #6386
68ffc1c README: clean up TOC (selsta)
2020-04-04 13:15:07 -05:00
luigi1111 6aa5da09f5 Merge pull request #6371
b40c27c cppzmq: remove leftovers (selsta)
2020-04-04 13:08:22 -05:00
luigi1111 d86d1a4d29 Merge pull request #6370
3031deb Bump downloaded boost version to 1.72 (omartijn)
6079042 Use boost::asio::ssl::context::sslv23 for backwards compatibility (omartijn)
2020-04-04 13:06:36 -05:00
luigi1111 b1808c9920 Merge pull request #6356
56c4eda Provides safer semaphore privilege to jail; notes port/pkg availability (scoobybejesus)
2020-04-04 12:57:48 -05:00
Alexander Blair a5acebfb6f Merge pull request #6281
6772ce70 10 block time is for incoming outputs, not transactions (rating89us)
2020-03-27 12:18:21 -07:00
selsta 68ffc1ca19 README: clean up TOC 2020-03-13 18:29:19 +01:00
Martijn Otto 3031debfd6 Bump downloaded boost version to 1.72 2020-03-11 09:16:30 +01:00
selsta b40c27cd42 cppzmq: remove leftovers 2020-03-06 02:30:07 +01:00
Alexander Blair 442739a347 Merge pull request #6204
1d78db27 Add travis freebsd (TheCharlatan)
2020-02-28 19:35:01 -08:00
scoobybejesus 56c4eda53f Provides safer semaphore privilege to jail; notes port/pkg availability
From the FreeBSD architecture handbook (https://www.freebsd.org/doc/en/books/arch-handbook/jail-restrictions.html) as it relates to `allow.sysvipc`, "By default, this sysctl is set to 0. If it were set to 1, it would defeat the whole purpose of having a jail; privileged users from the jail would be able to affect processes outside the jailed environment."  This is undesirable behavior.

Per `man jail`, regarding `allow.sysvipc`, "A process within the jail has access to System V primitives.  This is deprecated in favor of the per-module parameters."

Since FreeBSD 11, the new way to deal with this (the per-module parameters) is with: `sysvshm`, for shared memory, `sysvsem`, for semaphores, and `sysvmsg`, for message queues.  These can be set selectively to either `disable`; `inherit`, for the previous behavior (problematic due to UID collision, apparently); and `new`, for new behavior that avoids the UID collision problem. 

Monero only uses semaphores, therefore we should recommend that jails be run with `sysvsem="new"` in the jail's jail.conf.  Tested on FreeBSD 12.1.

Also, Monero is now able to be downloaded as a package or built from ports as `monero-cli` with a versioned suffix.  It's got `Monero 'Carbon Chamaeleon' (v0.15.0.1-release)` as of right now, and it's been there 2-3 months, meaning it's currently and timely.
2020-02-25 21:12:56 -05:00
luigi1111 9b2ebffb6c Merge pull request #6188
0bae227 update readme to encourage joining #monero-dev (Gingeropolous)
2020-02-19 22:19:49 -05:00
luigi1111 d692030e78 Merge pull request #6065
f498dfc README: add Void Linux package dependencies (kevcrumb)
2020-02-19 22:18:47 -05:00
Alexander Blair 7e6c8082e7 Merge pull request #6100
4d804443 Fixes a minor formatting error (TheGoose)
2020-02-06 00:32:16 -08:00
Alexander Blair 605ad84804 Merge pull request #6287
dbcfae6f README: remove unmaintained build status (selsta)
2020-01-24 20:20:53 -08:00
selsta dbcfae6ffe README: remove unmaintained build status 2020-01-09 18:23:01 +01:00
rating89us 6772ce7062 10 block time is for incoming outputs, not transactions
10 block lock time is for incoming outputs and not only incoming transactions (outgoing transaction has an incoming change output that is also locked for 10 blocks)
2020-01-05 00:21:57 -03:00
moneromooo-monero cce4ea02ff README: fix translation link 2019-12-17 19:21:23 +00:00
TheCharlatan 1d78db2709 Add travis freebsd 2019-12-02 01:04:40 +01:00
Gingeropolous 0bae2277b5 update readme to encourage joining #monero-dev
replaces #6126 because I can't squash things with the github web GUI
2019-11-26 10:13:59 -05:00
TheGoose 4d804443cd Fixes a minor formatting error
Fixes a minor formatting error
2019-11-05 14:11:17 +11:00
Riccardo Spagni e4d1674e8c 0.15.0.0 release engineering 2019-11-02 17:21:52 +02:00
Gingeropolous f89ea437d0 README update upgrade table with details
of the november 30th fork
2019-10-31 15:43:05 -04:00
Kevin Crumb f498dfc158 README: add Void Linux package dependencies
see also https://github.com/void-linux/void-packages/blob/master/srcpkgs/monero/template
2019-10-30 21:39:29 +00:00