aboutsummaryrefslogtreecommitdiff
path: root/README.md (follow)
AgeCommit message (Collapse)AuthorFilesLines
2021-03-20Merge pull request #7417luigi11111-3/+5
bf86e95 added link to moneropedia to pruning in README.md (Luxter77) b3238a8 Update size figures on the pruning section of README.md (Luxter77) cf96615 Make pruning section more consistent in README.md (Luxter77)
2021-03-04added link to moneropedia to pruning in README.mdLuxter771-0/+2
2021-03-04Update size figures on the pruning section of README.mdLuxter771-1/+1
2021-03-02Make pruning section more consistent in README.mdLucas Daniel Velazquez M1-2/+2
use syntax highlighting on commands and command line arguments
2021-02-23README: update libzmq minimum version to 4.2.0 for zmq_send_constmoneromooo-monero1-1/+1
2021-01-20Updated copyright date in README.mdJoseph Richardson1-1/+1
2020 -> 2021
2020-12-21edited readme version table to include v0.17.1.7Gingeropolous1-1/+1
edited readme version table to include v0.17.1.7 as recommended version
2020-12-10Merge pull request #6947Alexander Blair1-0/+3
19d1b3590 add a convenience script to start monero with inbound tor (moneromooo-monero)
2020-11-29Merge pull request #6903luigi11111-0/+1
453b8e2 README: add OSS-fuzz status banner (moneromooo-monero)
2020-11-29Merge pull request #6873luigi11111-2/+2
3be170d Update README.md (Jkat)
2020-11-29Merge pull request #6858luigi11111-3/+3
49a279b docs: Add release checklist (setsimmo) d00ca88 Move documentation files to their own directory (glv2)
2020-10-28add a convenience script to start monero with inbound tormoneromooo-monero1-0/+3
2020-10-18README: update fork table recommended versionselsta1-2/+2
2020-10-17README: add OSS-fuzz status bannermoneromooo-monero1-0/+1
2020-10-13Merge pull request #6889luigi11111-5/+5
c01d1c1 README: recommend v0.17.1.0 (selsta)
2020-10-13README: recommend v0.17.1.0selsta1-5/+5
2020-10-08Update README.mdJustin Kat1-2/+2
2020-10-08README: update sponsorsselsta1-9/+7
2020-10-03Move documentation files to their own directoryGuillaume Le Vaillant1-3/+3
2020-09-14build: prepare v0.17selsta1-4/+6
2020-08-28Made spelling, grammar, and punctuation changes. Squashed commits into one ↵cryptographicfool1-21/+20
as requested. Made some corrections as suggested.
2020-08-27Merge pull request #6762Alexander Blair1-3/+22
3614f78d5 README: update list of third party monero packages (erciccione)
2020-08-26Merge pull request #6610Alexander Blair1-0/+11
b6e904e54 README: mention pruning (moneromooo-monero)
2020-08-16Merge pull request #6712Alexander Blair1-0/+8
01cd3d934 For NetBSD, add instructions to README.md and define to ea_config.h (thomasvaughan)
2020-08-16Merge pull request #6618Alexander Blair1-3/+3
2d5d74ff5 Mention correct libusb and libudev dependencies (MaxXor)
2020-08-16README: update list of third party monero packageserciccione1-3/+22
Removed AUR package, since doesn't seem to exist anymore and added Debian package (the CCS-funded one)
2020-07-19For NetBSD, add instructions to README.md and define to ea_config.hthomasvaughan1-0/+8
2020-07-19Merge pull request #6529Alexander Blair1-2/+2
153977aed libzmq should be libzmq4. (russoj88)
2020-07-19Merge pull request #6512Alexander Blair1-1/+1
5ef0607da Update copyright year to 2020 (SomaticFanatic)
2020-06-09repo: update donation fund addressselsta1-1/+1
2020-06-02Mention correct libusb and libudev dependenciesMaxXor1-3/+3
2020-06-01README: mention pruningmoneromooo-monero1-0/+11
2020-05-13libzmq should be libzmq4.russoj881-2/+2
2020-05-13build: prepare v0.16.0.0 releaseselsta1-5/+5
2020-05-06Update copyright year to 2020SomaticFanatic1-1/+1
Update copyright year to 2020
2020-04-04Merge pull request #6386luigi11111-2/+0
68ffc1c README: clean up TOC (selsta)
2020-04-04Merge pull request #6371luigi11111-5/+2
b40c27c cppzmq: remove leftovers (selsta)
2020-04-04Merge pull request #6370luigi11111-4/+4
3031deb Bump downloaded boost version to 1.72 (omartijn) 6079042 Use boost::asio::ssl::context::sslv23 for backwards compatibility (omartijn)
2020-04-04Merge pull request #6356luigi11111-2/+3
56c4eda Provides safer semaphore privilege to jail; notes port/pkg availability (scoobybejesus)
2020-03-27Merge pull request #6281Alexander Blair1-1/+1
6772ce70 10 block time is for incoming outputs, not transactions (rating89us)
2020-03-13README: clean up TOCselsta1-2/+0
2020-03-11Bump downloaded boost version to 1.72Martijn Otto1-4/+4
2020-03-06cppzmq: remove leftoversselsta1-5/+2
2020-02-28Merge pull request #6204Alexander Blair1-0/+5
1d78db27 Add travis freebsd (TheCharlatan)
2020-02-25Provides safer semaphore privilege to jail; notes port/pkg availabilityscoobybejesus1-2/+3
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-19Merge pull request #6188luigi11111-0/+1
0bae227 update readme to encourage joining #monero-dev (Gingeropolous)
2020-02-19Merge pull request #6065luigi11111-25/+25
f498dfc README: add Void Linux package dependencies (kevcrumb)
2020-02-06Merge pull request #6100Alexander Blair1-1/+2
4d804443 Fixes a minor formatting error (TheGoose)
2020-01-24Merge pull request #6287Alexander Blair1-20/+0
dbcfae6f README: remove unmaintained build status (selsta)
2020-01-09README: remove unmaintained build statusselsta1-20/+0
2020-01-0510 block time is for incoming outputs, not transactionsrating89us1-1/+1
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)
2019-12-17README: fix translation linkmoneromooo-monero1-1/+1
2019-12-02Add travis freebsdTheCharlatan1-0/+5
2019-11-26update readme to encourage joining #monero-devGingeropolous1-0/+1
replaces #6126 because I can't squash things with the github web GUI
2019-11-05Fixes a minor formatting errorTheGoose1-1/+2
Fixes a minor formatting error
2019-11-020.15.0.0 release engineeringRiccardo Spagni1-4/+4
2019-10-31README update upgrade table with detailsGingeropolous1-1/+3
of the november 30th fork
2019-10-30README: add Void Linux package dependenciesKevin Crumb1-25/+25
see also https://github.com/void-linux/void-packages/blob/master/srcpkgs/monero/template
2019-10-10Change 'Pootle' to 'Weblate' in Readmeerciccione1-1/+1
2019-09-30Merge pull request #5913luigi11111-1/+1
dbc7c44 README: fix TOC link (selsta)
2019-09-26README: Add deps for translations and hardware wallet supportGuillaume Le Vaillant1-21/+26
2019-09-24Merge pull request #5886luigi11111-1/+1
ae32862 README: fix master branch spelling, it is not Master (moneromooo-monero)
2019-09-14README: fix TOC linkselsta1-1/+1
2019-09-14Merge pull request #5818luigi11111-1/+1
f91a06c Dropping cppzmq dependency; adding some zmq utils (vtnerd)
2019-09-09updating Readme.md TOCHarry MacFinned1-0/+3
updating the TOC
2019-09-06README: fix master branch spelling, it is not Mastermoneromooo-monero1-1/+1
2019-08-25readme: remove snap monero package and add debianerciccione1-4/+3
2019-08-21Merge pull request #5702luigi11111-0/+2
13c0b8c Add depends riscv 64 bit support (TheCharlatan)
2019-08-20Add depends riscv 64 bit supportTheCharlatan1-0/+2
2019-08-19Merge pull request #5773luigi11111-92/+2
441f318 fix building on OpenBSD, simplify Readme section (mrme0w/The-King-of-Toasters)
2019-08-19Merge pull request #5723luigi11111-0/+6
a2484a1 README: add coredumpctl info from iDunk (moneromooo-monero)
2019-08-19Merge pull request #5701luigi11111-0/+18
962dd93 README: add beginnings of 'Known Issues' (anonimal) b2813ab README: add blockchain-based issue to 'Known Issues' (anonimal)
2019-08-15Merge pull request #5691luigi11111-2/+2
1a6af80 distinguish "build status" from "build" (ghost)
2019-07-30fix building on OpenBSD, simplify Readme sectionMr. Me0w1-92/+2
Based on a patch from @mrme0w (#5569). Fixes #5770
2019-07-22Dropping cppzmq dependency; adding some zmq utilsLee Clagett1-1/+1
2019-07-18bump version to 0.14.1.2Riccardo Spagni1-5/+5
2019-07-17prep for 0.14.1.1Riccardo Spagni1-5/+5
2019-07-04README: add blockchain-based issue to "Known Issues"anonimal1-0/+10
Referencing https://hackerone.com/reports/417515
2019-07-02README: add coredumpctl info from iDunkmoneromooo-monero1-0/+6
2019-06-26README: add beginnings of "Known Issues"anonimal1-0/+8
Referencing https://hackerone.com/reports/592094
2019-06-25distinguish "build status" from "build"Lazaridis1-2/+2
2019-06-14prep for 0.14.1 releaseRiccardo Spagni1-3/+3
2019-05-13Changed odd bullet point to low level headerRohaq1-1/+1
2019-05-12Used subeaders to avoid slightly wonky looking formattingRohaq1-2/+2
2019-05-12Made code block usage consistent across all .md filesRohaq1-95/+173
2019-05-12Updated Copyright noticeRohaq1-1/+1
2019-05-12Added Table of Contents to main README.mdRohaq1-0/+20
2019-04-16Merge pull request #5447Riccardo Spagni1-2/+2
02c01c0b Add Brewfile to allow for an even easier management of dependencies (Florian)
2019-04-16Merge pull request #5412Riccardo Spagni1-2/+2
f4f1471c readme: add some more instructions for translators (erciccione)
2019-04-15Add Brewfile to allow for an even easier management of dependenciesFlorian1-2/+2
2019-04-11Merge pull request #5411Riccardo Spagni1-3/+4
3de49afc README.md: fork table, copy lines from release branch (Gingeropolous) e172fbae README.md: fix missing comma (Tyler Saballus) 97f0899b README.md: minor spelling issue (Justin Gerber)
2019-04-08readme: add some more instructions for translatorserciccione1-2/+2
- added link to guide for Pootle - link directly to CLI project on Pootle - improved wording
2019-04-07README.md: fork table, copy lines from release branchGingeropolous1-1/+2
2019-04-07README.md: fix missing commaTyler Saballus1-1/+1
2019-04-07README.md: minor spelling issueJustin Gerber1-1/+1
The word 'dont' is not spelled correctly.
2019-04-01README: add and remove dependencies on OSX lineGeorge1-1/+5
2019-03-21Merge pull request #5072Riccardo Spagni1-0/+2
5c79abe5 update readme to include blurb on decentralization (Gingeropolous)
2019-03-17Merge pull request #5181Riccardo Spagni1-5/+5
8681f8ef OS X -> macOS (Jesse Jackson)
2019-03-05fix merge errors, update recommended version to 0.14.0.2Riccardo Spagni1-4/+4
2019-03-05update checkpoints, update README for 0.14.1 releaseRiccardo Spagni1-7/+7
2019-03-05update readme via cherry-pickRiccardo Spagni1-3/+4
2019-03-04Merge pull request #5129Riccardo Spagni1-0/+6
08f60f8e readme: add new workflow for translations (Pootle) (erciccione)
2019-03-04Merge pull request #5105Riccardo Spagni1-5/+8
59a7b9aa README.md - add few FreeBSD instructions, fix v13.0 release tag (monerorus)
2019-02-21OS X -> macOSJesse Jackson1-5/+5
2019-02-07readme: add new workflow for translations (Pootle)erciccione1-0/+6
2019-01-29README.md - add few FreeBSD instructions, fix v13.0 release tagmonerorus1-5/+8
tested on current FreeBSD 11.2-p4 , used master and release-v0.13 branchs of monero (w\o any patches) `gmake` - success `gmake release-static` - fail (-fPIC error, i think i need build dependencies from ports static instead install from pkg) `gmake debug` - fail (wallet2.cpp.o - file not recognized: file format no recognized) `gmake release-test` - success (100% passed)
2019-01-28Adding initial support for broadcasting transactions over TorLee Clagett1-0/+6
- Support for ".onion" in --add-exclusive-node and --add-peer - Add --anonymizing-proxy for outbound Tor connections - Add --anonymous-inbounds for inbound Tor connections - Support for sharing ".onion" addresses over Tor connections - Support for broadcasting transactions received over RPC exclusively over Tor (else broadcast over public IP when Tor not enabled).
2019-01-28Merge pull request #5058Riccardo Spagni1-3/+18
99b3bc5b README.md: updated build instructions for OpenBSD 6.4 (ston1th)
2019-01-16Merge pull request #5043Riccardo Spagni1-2/+2
3dd89bdd Changed Windows build commands. (Aniket Pradhan)
2019-01-13update readme to include blurb on decentralizationGingeropolous1-0/+2
it occurred to me that someone discovering monero for the first time, through the code and actually reading the readme, would not have any indication of the design focuses of keeping monero decentralized, both in terms of the mining infrastructure and the low cost of node operation. I know the topic is sort of a ... wishy washy thing, but I tried to craft some language that gets the point across in general terms.
2019-01-09README.md: updated build instructions for OpenBSD 6.4ston1th1-3/+18
2019-01-04Changed Windows build commands.Aniket Pradhan1-2/+2
`pacman -Syuu` can either upgrade or degrade the packages (depending upon the package lists), and should not be normally used. Instead of that, one should use `pacman -Syu` which only upgrades the packages.
2019-01-02remove trailing whitespace in README.mdDavid Meister1-15/+15
2018-12-31Merge pull request #4929luigi11111-0/+2
5a76933 Add glibc back compat code (TheCharlatan)
2018-12-04Merge pull request #4838Riccardo Spagni1-2/+2
8dde0d48 readme 0.13.0.4 in the table (Gingeropolous)
2018-12-04Add glibc back compat codeTheCharlatan1-0/+2
To ensure that the binaries compiled by gitian run across many linux distributions, enforce 2.17 as the minimum libc version supported.
2018-11-14Merge pull request #4756Riccardo Spagni1-2/+2
aa40047e README.md: increase swap size on Raspberry Pi (Neofito89)
2018-11-11readme 0.13.0.4 in the tableGingeropolous1-2/+2
its the one thing I do. I change the table.
2018-11-06Merge pull request #4722Riccardo Spagni1-0/+9
8a512b1d Minor wording changes; added research repository links (Sarang Noether) e9fc9ff2 Added research information to main readme (Sarang Noether)
2018-10-29README.md: increase swap size on Raspberry PiNeofito891-2/+2
Increased swap size on raspberry pi compiling guide, since it might crash if the raspberry has any service runing in the background
2018-10-26Merge pull request #4607Riccardo Spagni1-12/+9
e623f2b2 Add building with depends to the Makefile (TheCharlatan)
2018-10-26Merge pull request #4597Riccardo Spagni1-2/+4
9ea50781 README: add libnorm to the dependency list (moneromooo-monero)
2018-10-26Merge pull request #4585Riccardo Spagni1-1/+1
5dff61d4 readme: update OSX build badges (xiphon)
2018-10-26Merge pull request #4553Riccardo Spagni1-0/+2
d46c765d README: mention max_usb_current setting on Raspberry Pi (moneromooo-monero)
2018-10-24Minor wording changes; added research repository linksSarang Noether1-3/+3
2018-10-24Added research information to main readmeSarang Noether1-0/+9
2018-10-22Merge pull request #4699Riccardo Spagni1-3/+3
9da67502 update readme for 0.13.0.4 (Riccardo Spagni)
2018-10-22update readme for 0.13.0.4Riccardo Spagni1-3/+3
2018-10-16Add building with depends to the MakefileTheCharlatan1-12/+9
Depends can now be compiled with `make depends target=$triple`, where $triple is one of the supported build targets. Adapt the Makefile for this change, remove not needed windows deps from depends setup description.
2018-10-15README: add libnorm to the dependency listmoneromooo-monero1-2/+4
2018-10-15Merge pull request #4494Riccardo Spagni1-17/+20
0a9bd1b3 Move cross compiling steps into proper heading (K3v1n Kur14k053)
2018-10-14readme: update OSX build badgesxiphon1-1/+1
2018-10-10README: mention max_usb_current setting on Raspberry Pimoneromooo-monero1-0/+2
2018-10-09Merge pull request #4517Riccardo Spagni1-2/+4
02c2b43a Utils: Add Dockerfile for android 64-bit build (Gregory Lemercier)
2018-10-09Utils: Add Dockerfile for android 64-bit buildGregory Lemercier1-2/+4
2018-10-08Remove last traces of libpcsc-litemoneromooo-monero1-2/+1
2018-10-07README: update MSYS2 dependencies for LedgerLafudoci1-2/+2
2018-10-03Move cross compiling steps into proper headingK3v1n Kur14k0531-17/+20
As per #3430
2018-09-29Merge pull request #4434Riccardo Spagni1-2/+12
89288863 README: mention ASAN usage alongside valgrind (moneromooo-monero)
2018-09-22update readme with v13.0Riccardo Spagni1-4/+4
2018-09-22README: remove overlooked conflictmoneromooo-monero1-46/+0
2018-09-21Merge pull request #4401Riccardo Spagni1-3/+49
66901901 README: harmonize command formatting inside README.md (Andrea) 8cd98408 disable AES on s390x architecture (Tuan M. Hoang) 4ed30bab wallet: implement coin splitting for sweep_* 'outputs' option (whythat) 24f52396 wallet: add 'outputs' option for sweep_* commands (whythat) 52e19d69 README: Compile boost with cxxflags=-fPIC cflags=-fPIC (Italocoin Project) 0c77523d README: fill in libsodium package name for Arch (phloatingman)
2018-09-21Merge pull request #4382Riccardo Spagni1-1/+3
ff72200d update readme fork table (Gingeropolous)
2018-09-18Merge pull request #4349Riccardo Spagni1-1/+1
7418aa60 README: bump cmake requirement to 3.5, as required by miniupnpc (moneromooo-monero)
2018-09-18README: harmonize command formatting inside README.mdAndrea1-1/+47
rebased by moneromooo
2018-09-18README: Compile boost with cxxflags=-fPIC cflags=-fPICItalocoin Project1-1/+1
Rebased and squashed by moneromooo
2018-09-18README: fill in libsodium package name for Archphloatingman1-1/+1
Rebased by moneromooo, with a sensible commit message
2018-09-14update readme fork tableGingeropolous1-1/+3
with consensus rules and block heights
2018-09-10Update readmes to reflect the usage of dependsTheCharlatan1-1/+17
Explain the role of the SDK in the darwin build. Add instructions to compile depends to the basic readme.
2018-09-09README: bump cmake requirement to 3.5, as required by miniupnpcmoneromooo-monero1-1/+1
2018-09-04Merge pull request #4294luigi11111-2/+2
620105e Translations: handle cross compiling (MoroccanMalinois) fa814af Build: Fix target release-static-android (MoroccanMalinois) 339a23a Docker: Fix android build (MorrocanMalinois)
2018-08-23add and use constant time 32 byte equality functionmoneromooo-monero1-1/+1
2018-08-22Merge pull request #4243luigi11111-1/+2
95766fe README: add dependency on libpgm-dev (stoffu)
2018-08-22Docker: Fix android buildMoroccanMalinois1-2/+2
2018-08-12README: add dependency on libpgm-devstoffu1-1/+2
2018-08-02update README to change all 0.12.2 to 0.12.3Gingeropolous1-5/+5
I didn't change the minimum version in the table though, because 0.12.0 will work for this block version
2018-07-27Merge pull request #4098luigi11111-4/+3
96f8c62 README: remove mentions of external miniupnpc dependency (moneromooo-monero)
2018-07-19Merge pull request #4045luigi11111-9/+9
7cdd147 Changed URLs to HTTPS (einsteinsfool)
2018-07-04README: remove mentions of external miniupnpc dependencymoneromooo-monero1-4/+3
2018-07-03docker: update to new versions of dependenciesHomDx1-0/+3
2018-06-25Merge pull request #3964luigi11111-0/+3
9ddb07f update readme to include debian one liner for deps (Gingeropolous)
2018-06-25Merge pull request #3963luigi11111-0/+1
f61fe2e Update readme to include pcslite dependency (Gingeropolous)
2018-06-23Changed URLs to HTTPSeinsteinsfool1-9/+9
2018-06-20Merge pull request #3933luigi11111-2/+13
2861289 readme - explain building master vs. release (Gingeropolous)
2018-06-20Merge pull request #3932luigi11111-0/+2
8962f00 simplewallet: add optional trusted/untrusted argument to set_daemon (moneromooo-monero) 941a608 util: consider Tor/I2P addresses to be non local (moneromooo-monero) 2b3357e README: mention --untrusted-daemon (moneromooo-monero)
2018-06-20Merge pull request #3927luigi11111-1/+1
5f00df3 Update Readme to indicate recommended version (Gingeropolous)
2018-06-20Merge pull request #3880luigi11111-0/+14
91663fc adding win building details. (k1nghat)
2018-06-16add disclaimer about 3rd party packagesJethro Grassie1-43/+40
Demoted the 3rd party maintained package installs to after compiling from repository source and removed the broken Homebrew package instructions.
2018-06-08update readme to include debian one liner for depsGingeropolous1-0/+3
update readme to include debian one liner for deps , because who wants to select all of those individually
2018-06-08Update readme to include pcslite dependencyGingeropolous1-0/+1
Update readme to include pcslite dependency
2018-06-05README: mention --untrusted-daemonmoneromooo-monero1-0/+2
when connecting the wallet to a daemon on a tor hidden service
2018-06-05readme - explain building master vs. releaseGingeropolous1-2/+13
Update readme to explain and warn about building master, and encourage (via example) to build release branches. Also updated instance where example build instructions had 0.11.0 as the most recent release.
2018-06-04Update Readme to indicate recommended versionGingeropolous1-1/+1
... is v0.12.2.0
2018-05-31Incorporate Window debug build targetsphilkode1-0/+10
2018-05-29adding win building details.k1nghat1-0/+14
cloning and extra build details included.
2018-05-06Update readme to include link to announcement listGingeropolous1-0/+4
Added link to readme for https://lists.getmonero.org
2018-04-29README.md: mention building deps with -fPIC for static buildsmoneromooo-monero1-0/+2
2018-04-12Merge pull request #3466Riccardo Spagni1-1/+1
1d79c14d Revert bb19386b (Howard Chu) 522be96f Fix generating version.cpp (Howard Chu)
2018-04-12Merge pull request #3464Riccardo Spagni1-3/+4
e520cc06 change wording in hard fork description section (Gingeropolous)
2018-03-21Revert bb19386bHoward Chu1-1/+1
The requirement for CMake 3.2.0 was introduced erroneously in commit e29282d2081709e126b1fb67f49e9d4a666794da and is no longer present
2018-03-21change wording in hard fork description sectionGingeropolous1-3/+4
changed wording in hard fork section because reasons. Added prospective slot of next hardfork to communicate that more are coming because it never stops. its everywhere and all at the same time.
2018-03-18README: add instructions for cloning / submodulesanonimal1-0/+10
2018-03-18Move v7 fork to 1546000 to give more update timemoneromooo-monero1-1/+1
2018-03-14Merge pull request #3378Riccardo Spagni1-15/+20
0014a7cc README.md: Updated OpenBSD build instructions (ston1th)
2018-03-14Merge pull request #3381Riccardo Spagni1-15/+33
fcb180f5 systemd,readme: torsocks config for service (redfish)
2018-03-12README.md: Updated OpenBSD build instructionsston1th1-15/+20
* Removed the db package, as it is not required * Added the libiconv package * Updated the boost build instructions (added locale) * Updated cppzmq to version 4.2.3 which does not require the symlink hack anymore added missing hashes for boost patches
2018-03-10systemd,readme: torsocks config for serviceredfish1-15/+33
2018-03-07core: add v7 for 1539500 on mainnetmoneromooo-monero1-2/+2
2018-02-20Merge pull request #3266Riccardo Spagni1-1/+1
bb19386b README.md: bump minimum cmake version to 3.2.0 (iDunk5400)
2018-02-16Merge pull request #3160Riccardo Spagni1-1/+1
a3c5a73c Update readme with correct tag version (Calvin Liang)
2018-02-14README.md: bump minimum cmake version to 3.2.0iDunk54001-1/+1
2018-01-26Update 2018 copyrightxmr-eric1-1/+1
2018-01-25Merge pull request #3009Riccardo Spagni1-19/+19
78835645 Added Fedora devel dependencies (Jonny Heggheim)
2018-01-19Update readme with correct tag versionCalvin Liang1-1/+1
2017-12-28Merge pull request #2947Riccardo Spagni1-5/+1
e12ee76a README.md: Improve copy for supporting the project (xmr-eric)
2017-12-26Added Fedora devel dependenciesJonny Heggheim1-19/+19
2017-12-25Merge pull request #2924Riccardo Spagni1-0/+4
67fe4b1b Add Guix SD to available distro packages in README.md (vasi)
2017-12-25Merge pull request #2910Riccardo Spagni1-0/+4
37f9c6e6 Dockerfile: add option to set build parallelism (MoroccanMalinois)
2017-12-25Merge pull request #2897Riccardo Spagni1-0/+2
463d385c add libsodium as dependency for building in readme (Gingeropolous)
2017-12-17README.md: Improve copy for supporting the projectxmr-eric1-5/+1