Monero: the secure, private, untraceable cryptocurrency

Related tags

GUI monero-gui
Overview

Monero GUI

Copyright (c) 2014-2019, The Monero Project

Table of Contents

Development resources

Vulnerability response

Introduction

Monero is a private, secure, untraceable, decentralised digital currency. You are your bank, you control your funds, and nobody can trace your transfers unless you allow them to do so.

Privacy: Monero uses a cryptographically sound system to allow you to send and receive funds without your transactions being easily revealed on the blockchain (the ledger of transactions that everyone has). This ensures that your purchases, receipts, and all transfers remain absolutely private by default.

Security: Using the power of a distributed peer-to-peer consensus network, every transaction on the network is cryptographically secured. Individual wallets have a 25 word mnemonic seed that is only displayed once, and can be written down to backup the wallet. Wallet files are encrypted with a passphrase to ensure they are useless if stolen.

Untraceability: By taking advantage of ring signatures, a special property of a certain type of cryptography, Monero is able to ensure that transactions are not only untraceable, but have an optional measure of ambiguity that ensures that transactions cannot easily be tied back to an individual user or computer.

About this project

This is the GUI for the core Monero implementation. It is open source and completely free to use without restrictions, except for those specified in the license agreement below. There are no restrictions on anyone creating an alternative implementation of Monero that uses the protocol and network in a compatible manner.

As with many development projects, the repository on Github is considered to be the "staging" area for the latest changes. Before changes are merged into that branch on the main repository, they are tested by individual developers in their own branches, submitted as a pull request, and then subsequently tested by contributors who focus on testing and code reviews. That having been said, the repository should be carefully considered before using it in a production environment, unless there is a patch in the repository for a particular show-stopping issue you are experiencing. It is generally a better idea to use a tagged release for stability.

Supporting the project

Monero is a 100% community-sponsored endeavor. If you want to join our efforts, the easiest thing you can do is support the project financially. Both Monero and Bitcoin donations can be made to donate.getmonero.org if using a client that supports the OpenAlias standard.

The Monero donation address is: 888tNkZrPN6JsEgekjMnABU4TBzc2Dt29EPAvkRxbANsAnjyPbb3iQ1YBRk1UXcdRsiKc9dhwMVgN5S9cQUiyoogDavup3H (viewkey: f359631075708155cc3d92a32b75a7d02a5dcf27756707b47a2b31b21c389501)

The Bitcoin donation address is: 1KTexdemPdxSBcG55heUuTjDRYqbC5ZL8H

GUI development funding and/or some supporting services are also graciously provided by sponsors:

There are also several mining pools that kindly donate a portion of their fees, a list of them can be found on our Bitcointalk post.

License

See LICENSE.

Translations

Do you speak a second language and would like to help translate the Monero GUI? Check out Weblate, our localization platform, at translate.getmonero.org. Choose the language and suggest a translation for a string or review an existing one. The Localization Workgroup made a guide with step-by-step instructions for Weblate.

If you need help/support or any info you can contact the localization workgroup on the IRC channel #monero-translations (relayed on Matrix) or by email at translate[at]getmonero[dot]org. For more info about the Localization workgroup: github.com/monero-ecosystem/monero-translations

Status of the translations:

Translation status

Installing the Monero GUI from a package

Packages are available for

Packaging for your favorite distribution would be a welcome contribution!

Compiling the Monero GUI from source

Note: Qt 5.9.7 is the minimum version required to build the GUI.

Note: Official GUI releases use monero-wallet-gui from this process alongside the supporting binaries (monerod, etc) from the CLI deterministic builds.

Building Reproducible Windows static binaries with Docker (any OS)

  1. Install Docker https://docs.docker.com/engine/install/

  2. Clone the repository

    git clone --branch master --recursive https://github.com/monero-project/monero-gui.git
    

    * master - replace with the desired version tag (e.g. v0.17.1.9) to build the release binaries.

  3. Prepare build environment

    cd monero-gui
    docker build --tag monero:build-env-windows --build-arg THREADS=4 --file Dockerfile.windows .
    

    * 4 - number of CPU threads to use

  4. Build

    docker run --rm -it -v <MONERO_GUI_DIR_FULL_PATH>:/monero-gui -w /monero-gui monero:build-env-windows sh -c 'make depends root=/depends target=x86_64-w64-mingw32 tag=win-x64 -j4'
    

    * <MONERO_GUI_DIR_FULL_PATH> - absolute path to monero-gui directory
    * 4 - number of CPU threads to use

  5. Monero GUI Windows static binaries will be placed in monero-gui/build/x86_64-w64-mingw32/release/bin directory

Building Reproducible Linux static binaries with Docker (any OS)

  1. Install Docker https://docs.docker.com/engine/install/

  2. Clone the repository

    git clone --branch master --recursive https://github.com/monero-project/monero-gui.git
    

    * master - replace with the desired version tag (e.g. v0.17.1.9) to build the release binaries.

  3. Prepare build environment

    cd monero-gui
    docker build --tag monero:build-env-linux --build-arg THREADS=4 --file Dockerfile.linux .
    

    * 4 - number of CPU threads to use

  4. Build

    docker run --rm -it -v <MONERO_GUI_DIR_FULL_PATH>:/monero-gui -w /monero-gui monero:build-env-linux sh -c 'make release-static -j4'
    

    * <MONERO_GUI_DIR_FULL_PATH> - absolute path to monero-gui directory
    * 4 - number of CPU threads to use

  5. Monero GUI Linux static binaries will be placed in monero-gui/build/release/bin directory

  6. (Optional) Compare monero-wallet-gui SHA-256 hash to the one obtained from a trusted source

    docker run --rm -it -v <MONERO_GUI_DIR_FULL_PATH>:/monero-gui -w /monero-gui monero:build-env-linux sh -c 'shasum -a 256 /monero-gui/build/release/bin/monero-wallet-gui'
    

    * <MONERO_GUI_DIR_FULL_PATH> - absolute path to monero-gui directory

Building Android APK with Docker (any OS) Experimental

  • Minimum Android 9 Pie (API 28)
  • ARMv8-A 64-bit CPU
  1. Install Docker https://docs.docker.com/engine/install/

  2. Clone the repository

    git clone --recursive https://github.com/monero-project/monero-gui.git
    
  3. Prepare build environment

    cd monero-gui
    docker build --tag monero:build-env-android --build-arg THREADS=4 --file Dockerfile.android .
    

    * 4 - number of CPU threads to use

  4. Build

    docker run --rm -it -v <MONERO_GUI_DIR_FULL_PATH>:/monero-gui -e THREADS=4 monero:build-env-android
    

    * <MONERO_GUI_DIR_FULL_PATH> - absolute path to monero-gui directory
    * 4 - number of CPU threads to use

  5. Monero GUI APK will be placed in monero-gui/build/Android/release/android-build directory

  6. Deploy

    • Using ADB (Android debugger bridge)
      • Connect your device with USB and install Monero GUI APK with adb:
      adb install build/Android/release/android-build/monero-gui.apk
      
      • Troubleshooting:
      adb devices -l
      adb logcat
      
      • If using adb inside docker, make sure you did
      docker run -v /dev/bus/usb:/dev/bus/usb --privileged
      
    • Using a web server
      mkdir /usr/tmp
      cp build/Android/release/android-build/monero-gui.apk /usr/tmp
      docker run -d -v /usr/tmp:/usr/share/nginx/html:ro -p 8080:80 nginx
      
      Now it should be accessible through a web browser at
      http://<your.local.ip>:8080/QtApp-debug.apk
      

Building on Linux

(Tested on Ubuntu 17.10 x64, Ubuntu 18.04 x64 and Gentoo x64)

  1. Install Monero dependencies
  • For Debian distributions (Debian, Ubuntu, Mint, Tails...)

    sudo apt install build-essential cmake libboost-all-dev miniupnpc libunbound-dev graphviz doxygen libunwind8-dev pkg-config libssl-dev libzmq3-dev libsodium-dev libhidapi-dev libnorm-dev libusb-1.0-0-dev libpgm-dev libprotobuf-dev protobuf-compiler libgcrypt20-dev

  • For Gentoo

    sudo emerge app-arch/xz-utils app-doc/doxygen dev-cpp/gtest dev-libs/boost dev-libs/expat dev-libs/openssl dev-util/cmake media-gfx/graphviz net-dns/unbound net-libs/ldns net-libs/miniupnpc net-libs/zeromq sys-libs/libunwind dev-libs/libsodium dev-libs/hidapi dev-libs/libgcrypt

  • For Fedora

    sudo dnf install make automake cmake gcc-c++ boost-devel miniupnpc-devel graphviz doxygen unbound-devel libunwind-devel pkgconfig openssl-devel libcurl-devel hidapi-devel libusb-devel zeromq-devel libgcrypt-devel

  1. Install Qt:

Note: The Qt 5.9.7 or newer requirement makes some distributions (mostly based on debian, like Ubuntu 16.x or Linux Mint 18.x) obsolete due to their repositories containing an older Qt version.

The recommended way is to install 5.9.7 from the official Qt installer or compiling it yourself. This ensures you have the correct version. Higher versions can work but as it differs from our production build target, slight differences may occur.

The following instructions will fetch Qt from your distribution's repositories instead. Take note of what version it installs. Your mileage may vary.

  • For Ubuntu 17.10+

    sudo apt install qtbase5-dev qt5-default qtdeclarative5-dev qml-module-qtqml-models2 qml-module-qtquick-controls qml-module-qtquick-controls2 qml-module-qtquick-dialogs qml-module-qtquick-xmllistmodel qml-module-qt-labs-settings qml-module-qt-labs-platform qml-module-qt-labs-folderlistmodel qttools5-dev-tools qml-module-qtquick-templates2 libqt5svg5-dev

  • For Gentoo

    The qml USE flag must be enabled.

    sudo emerge dev-qt/qtcore:5 dev-qt/qtdeclarative:5 dev-qt/qtquickcontrols:5 dev-qt/qtquickcontrols2:5 dev-qt/qtgraphicaleffects:5

  • Optional : To build the flag WITH_SCANNER

    • For Ubuntu

      sudo apt install qtmultimedia5-dev qml-module-qtmultimedia

    • For Gentoo

      emerge dev-qt/qtmultimedia:5

  1. Clone repository

    git clone --recursive https://github.com/monero-project/monero-gui.git
    cd monero-gui
    
  2. Build

    If on x86-64:

    make release -j4
    

    If on ppc64le:

    make release-linux-ppc64le -j4
    

    * 4 - number of CPU threads to use
    * Add CMAKE_PREFIX_PATH environment variable to set a custom Qt install directory, e.g. CMAKE_PREFIX_PATH=$HOME/Qt/5.9.7/gcc_64 make release -j4

The executable can be found in the build/release/bin folder.

Building on OS X

  1. Install Xcode from AppStore

  2. Install homebrew

  3. Install monero dependencies:

brew install cmake openssl boost unbound hidapi zmq libpgm libsodium miniupnpc ldns expat libunwind-headers protobuf libgcrypt

  1. Install Qt:

brew install qt5 (or download QT 5.9.7+ from qt.io)

  1. Grab an up-to-date copy of the monero-gui repository

    git clone --recursive https://github.com/monero-project/monero-gui.git
    cd monero-gui
    
  2. Start the build

    make release -j4
    

    * 4 - number of CPU threads to use
    * Add CMAKE_PREFIX_PATH environment variable to set a custom Qt install directory, e.g. CMAKE_PREFIX_PATH=$HOME/Qt/5.9.7/clang_64 make release -j4

The executable can be found in the build/release/bin folder.

For building an application bundle see DEPLOY.md.

Building on Windows

The Monero GUI on Windows is 64 bits only; 32-bit Windows GUI builds are not officially supported anymore.

  1. Install MSYS2, follow the instructions on that page on how to update system and packages to the latest versions

  2. Open an 64-bit MSYS2 shell: Use the MSYS2 MinGW 64-bit shortcut, or use the msys2_shell.cmd batch file with a -mingw64 parameter

  3. Install MSYS2 packages for Monero dependencies; the needed 64-bit packages have x86_64 in their names

    pacman -S mingw-w64-x86_64-toolchain make mingw-w64-x86_64-cmake mingw-w64-x86_64-boost mingw-w64-x86_64-openssl mingw-w64-x86_64-zeromq mingw-w64-x86_64-libsodium mingw-w64-x86_64-hidapi mingw-w64-x86_64-protobuf-c mingw-w64-x86_64-libusb mingw-w64-x86_64-libgcrypt
    

    You find more details about those dependencies in the Monero documentation. Note that that there is no more need to compile Boost from source; like everything else, you can install it now with a MSYS2 package.

  4. Install Qt5

    pacman -S mingw-w64-x86_64-qt5
    

    There is no more need to download some special installer from the Qt website, the standard MSYS2 package for Qt will do in almost all circumstances.

  5. Install git

    pacman -S git
    
  6. Clone repository

    git clone --recursive https://github.com/monero-project/monero-gui.git
    cd monero-gui
    
  7. Build

    make release-win64 -j4
    cd build/release
    make deploy
    

    * 4 - number of CPU threads to use

The executable can be found in the .\bin directory.

Comments
  • Closing GUI After Wallet Open for a While Results in Infinite Loading Animation

    Closing GUI After Wallet Open for a While Results in Infinite Loading Animation

    OS: Windows

    If I open a wallet at the start of the day, and close it at the end of the day (using Alt + F4), I get a "Closing wallet" loading screen that never goes away. I have to alt-f4 again to close the UI but I still see the process running in Task Manager image

    This issue cannot be reproduced by simply opening and closing the wallet. It happens if I have the wallet open for hours. It may be able to reproduce if you have the wallet open for 10 minutes, but I'm not sure.

    Furthermore, when I log out the wallet, I get presented with the Welcome to Monero screen instead of the select wallet screen. I know it's a separate issue, but usually when people log out of one wallet, it's to open the other wallet, not to create a new wallet or something, because that's a one time thing, whereas the open another wallet happens everytime after.

    Another feature request is to add a wallet_name[view-only].monero_gui file to the wallet directories that can be double clicked.

    Another Bug, is clicking on monero: links opens a new instance of the GUI and doesn't even auto fill the data. What I expect is for the existing GUI to focus and auto fill the data or at least the new instance to autofill the data. I think you could use IPC to inform the existing instance of the data. In my application, I make a post request to 127.0.0.1 with the relevant data.

    opened by elibroftw 100
  • GUI v0.12 unable to connect to remote / local daemon (error std::bad_cast)

    GUI v0.12 unable to connect to remote / local daemon (error std::bad_cast)

    Getting a few reports of people unable to connect to their own (local) node or remote node after upgrading to v0.12.0.0. Logs:

    Case 1:

    https://paste.fedoraproject.org/paste/QKowduN71M9OMENPNHX2Vg

    https://paste.fedoraproject.org/paste/W3HZGq7O9~TTIfw3SSKJew

    Reddit conversation: https://www.reddit.com/r/Monero/comments/89nn2p/monero_gui_v01200_lithium_luna_released/dws770b/


    Case 2:

    https://paste.fedoraproject.org/paste/dwXoiPEYE82lO5g7FB793Q

    https://paste.fedoraproject.org/paste/pj3gZVLxvpcE5VWAvDsIXA

    Reddit conversation: https://www.reddit.com/r/Monero/comments/89nn2p/monero_gui_v01200_lithium_luna_released/dwsh4fc/


    EDIT: Three more Linux users affected here. The issue seems specific to Linux.

    EDIT2: For anyone incurring this issue: As last resort you can always run GUI v0.11 with daemon (monerod) v0.12. Please see instructions below for using v0.11 and being sufficiently prepared for the upcoming scheduled network upgrade:

    <dEBRUYNE> You mean v0.11?
    <dEBRUYNE> If you're using a local node -> replace monerod v0.11 w/ monerod v0.12
    <dEBRUYNE> remote node, just open v0.11 and you should be able to use it past the fork
    <dEBRUYNE> However, the wallet cache may be incompatible, because (afaik) it's only forward compatible
    <dEBRUYNE> So if you incur an issue opening the wallet, use -> <dEBRUYNE> Go to your wallet directory (Documents\Monero\<wallet-name> on Windows | ~/Monero/<wallet-name>) and rename <wallet-name> to <wallet-name>-old
    

    After block 1546000 you should also ensure that your transaction uses ring size 7, otherwise it will be rejected by the network.

    EDIT3: Better overview of workarounds:

    https://monero.stackexchange.com/questions/7999/linux-gui-v0-12-does-not-connect-to-local-or-remote-node-stdbad-cast-error

    EDIT4: GUI v0.12.2.0, which includes a fix for this particular issue, has been released:

    https://www.reddit.com/r/Monero/comments/8vkx2g/gui_v01220_released/

    bug resolved 
    opened by dEBRUYNE-1 93
  • Monero-gui refuses to build

    Monero-gui refuses to build

    Beating my head against the wall trying to get the gui to install on Ubuntu 20.04 for Arm7. Following these instructions: https://github.com/monero-project/monero-gui"
    ./build.sh" can't find 3 files that should be there. -lwallet_merged -lepee -leasylogging (even though I installed the easylogging package separately to make sure it was there) Read a few threads similar to mine, but no avail. Here's a paste of the log output: PrivateBin I tried installing the regular monero first, then the gui; regular monerod installs and runs ok. Guibuild still produced this error. Noticed there's also a monero directory inside monero-gui, so tried "make" in that directory first, then "./build.sh" in monero-gui, but still no joy.

    opened by lulighttec 90
  • "Daemon failed to start"

    Hi guys, Monero keeps giving me this message when I try to setup localhost:18081 "Daemon failed to start. Please check your wallet and daemon log for errors. You can also try to start monerod.exe manually." unbenannt unbenannt2

    • I am running Windows 10 64 bit
    • I installed from https://getmonero.org/downloads/ -> Windows, 64-bit -> Version: 0.11.0.0 Helium Hydra
    • I use "localhost" and "18081" as daemon adress
    • My folder contains no spaces: "G:\MoneroGui2"
    • It used to be "MoneroGUI", I tried renaming it to "MoneroGui2", does not help
    • I just moved to a SSD drive, maybe that helps
    • The data.mdb currently has ~25GB.
    • Sometimes it does connect, sometimes it doesn't
    • When it does work, I have been waiting for days to synchronize and it never seemed to synchronize 100%
    • Starting monerod.exe leads to "Synchronization started" and shortly after to a windows fail message and I have to close the program
    • I'm just an average joe, I have no programming knowledge
    • Sadly I am not convinced that Monero is ready yet for mass adoption like this, but I see great potential and I thank everyone who developed it

    Sincerely

    invalid 
    opened by gitmehubscotty 77
  • [Discussion] Simple mode (for remote node users)

    [Discussion] Simple mode (for remote node users)

    The community has long stipulated that, in its current form, the GUI is not properly tailored to the less tech-savvy. I personally have acknowledged this particular issue and am therefore proposing to add a simple mode, which would be significantly better curtailed for the less tech-savvy. The goal of this ticket is to describe the layout of the proposed simple mode and to provide an opportunity for the community to post feedback. In a nutshell, the goal for simple mode is to let the GUI automatically connect to a remote node and remove all, arguably, advanced features.


    Let's start in the wizard. First, I'd suggest to add the mode selection after the language selection. This ensures a user can easily switch modes. Furthermore, this allows us to remove (disable) features from (in) the wizard (whilst in simple mode) such as the ability to select testnet/stagenet and the number of KDF rounds.

    I thus suggest to remove / disable the following in the wizard (whilst in simple mode).

    On this page:

    • Remove number of KDF rounds
    • Remove ability to select mainnet, testnet, or stagenet

    Additionally, fully remove this page and ensure the GUI automatically connects to a remote node. Users interested in using a custom remote node (e.g. their own remote node) will be 'delegated' to "Advanced mode", which would basically be similar to the current version of the GUI.


    After the wizard, I'd suggest to I'd suggest to remove / disable the following:

    1. On the Send page:
    • Remove all features under Advanced options
    1. On the `Receive page:
    • Remove all features except the ability to generate a new subaddress and perhaps the QR code.
    1. Fully remove the Advanced page.

    2. On the Settings page - Wallet tab:

    • Remove rescan wallet balance feature, as it requires a trusted node.
    1. Fully remove the Settings page - Node tab. To reiterate, users interested in using a custom remote node (e.g. their own remote node) will be 'delegated' to "Advanced mode", which would basically be similar to the current version of the GUI.

    2. Fully remove the Settings page - Log tab.

    3. To clarify, I'd like to fully keep the History page, Addressbook (sub)page,, Seed & keys (sub)page, Settings page - Layout tab, and Settings page - Info tab.

    A few final notes:

    • I also have a proposition to add a simple mode (for local node users), which will be posted tomorrow or the day thereafter.
    • The remote node would be randomly chosen from the set of remote nodes under the node aggregator that would, most likely, be set up and hosted by @xmrdsc.
    • Perhaps we could let users select their continent to improve performance, because, for instance, an American user will invariably have a better user experience whilst connected to a North-American remote node than whilst connected to an Asian remote node.
    • A checkbox could be added for Tails / Whonix users, that, if checked, ensures the GUI automatically connects to an onion remote node.
    • This particular mode would not be the default mode.
    • A (brief) warning about the security and privacy detriments of using a remote node should be added.
    resolved 
    opened by dEBRUYNE-1 53
  • Fix some swedish translations

    Fix some swedish translations

    Mining should be translated to Utvinning according to discussions on [email protected] since it is already an established term used in many Bitcoin projects. And, if another term should be used Myntning was sugested but had to stand back for the established term Utvinning.

    opened by snaggen 53
  • All languages need to be updated for 0.13 - Call for translators

    All languages need to be updated for 0.13 - Call for translators

    Another hard fork is approaching, and with it, a mayor release: 0.13 Since 0.12.3, the GUI changed a bit. Some strings were added and some were removed. #1572 refreshed all language files, so now they can all be updated with the missing translations, before 0.13 is out.

    This is a call for translators, down here can be found the list of the available languages. If the language is thicked, somebody worked on it and the translation is already PRd.

    If you wish to contribute, please make sure your language is still labelled as 'needed' on the Issue tracker of the Localization Workgroup on Taiga. The task related to this issue is "Update strings (0.13)". If the task is

    • Needed: nobody worked on it and still need a translator.
    • Work in progress: somebody is actively working on the language, but haven't opened a PR yet.
    • Ready for test: the translation was PRd on this repository (the link to the PR can be found in the description of the task)

    If you start to work on a language, please write here or let me know using one of the communication channel listed below, so that i can update the issue tracker and avoid double works.

    • [x] Arabic - #1591 - Merged
    • [ ] Bulgarian - New! Merged in #1637 , but won't be included in 0.13
    • [x] Catalan - #1620 (not sure it will make it for 0.13)
    • [x] Chinese (Simplified) - #1600 - Merged
    • [x] Chinese (Taiwanese) - #1581 - Merged
    • [ ] Croatian
    • [x] Czech - #1618 - Merged
    • [x] Danish - #1556 - Merged
    • [x] Dutch - ~~#1594~~ replaced by #1599 - Merged
    • [ ] Esperanto
    • [x] Finnish - #1593 - Merged
    • [x] French - #1586 - Merged
    • [x] German - #1588 - Merged
    • [x] Hebrew - #1603 - Merged
    • [x] Hungarian - #1612 - Merged
    • [ ] Indonesian
    • [x] Italian - #1584 - Merged
    • [x] Japanese - #1597 - Merged
    • [ ] Korean
    • [x] Lithuanian - #1608 - Merged
    • [ ] Pirate
    • [x] Polish - #1589 - Merged
    • [x] Portuguese (pt) - #1596 - Merged
    • [x] Portuguese (br) - #1590 - Merged
    • [x] Romanian - #1607
    • [x] Russian - #1598 - Merged
    • [x] Serbian - #1611 - Merged
    • [x] Slovak - #1592 - Merged
    • [x] Slovenian - #1613 - Merged
    • [x] Spanish - #1601 - Merged
    • [x] Swedish - #1609 - Merged
    • [x] Turkish - #1585
    • [ ] Ukrainian

    How to translate?

    Before starting the translation, we ask you to follow these few guidelines:

    • When possible, do not use gender specific terminology
    • If available, use the glossary for your language. This will help keep translations consistent over different works. Available glossaries are: Italian, German, Swedish, Spanish and French
    • If a string contains number, just keep them as they are
    • Read the guide Translation tips for Monero translators, Which cointains many useful tips and tools.

    A step-by-step guide on how to translate the GUI wallet is available here (the guide is about how to add a new language, but the instructions are also valid for updating one), but, basically, what a translator need to do is:

    1. Look for the correct language file in monero-gui/translations
    2. Find the strings labelled <translation type="unfinished">
    3. Add the correct translation of the <source> string between the <translation> label (removing the type="unfinished"tag)
    4. when done, commit and open a Pull Request with your changes. *Please refer to this issue (#1582) when the PR is opened.

    Support

    If you need help/informations, or have dubts about the workflow, post on this thread or contact me on these channels:

    • #monero-translations - Live support chat based on Freenode/IRC, but relayed on matrix/riot and MatterMost
    • reddit- just pm /u/ErCiccione
    • email - translate[at]getmonero[dot]org
    • Twitter - DM @calciferciccio
    • Wire - @ErCiccione

    Ping them all!

    Pinging contributors who helped with translations in past and members of the Monero Localization Workgroup:

    @3b7ameed @edwardlow @ruzaq @cryptobench @falcongoat @Rafficer @lovvskillz @Keksoj @i3visio @lh1008 @cryptochangements34 @glv2 @assylias @milargos @jonahar @TasmaniaKrama @hrumag @kenshi84 @takuto-h @isaacdigs @ProkhorZ @ElectricSlacks @fridzema @einsteinsfool @szogun1987 @netrik182 @rmbb @ordtrogen @mandrill-pie @fero-sk @jernejml @xmronadaily @alexej996 @snaggen @rtonline @zhizhongzhiwai @Lafudoci @el00ruobuob @Leza89 @turossztrapacska @rpinola @monerorus @kasperaitis @Fajl @TheFuzzStone @IST34 @kerastinell @MalMen

    Hacktoberfest 
    opened by erciccione 52
  • GUI wont open after updating Ubuntu 20.04.1

    GUI wont open after updating Ubuntu 20.04.1

    The GUI freezes when trying to open and can't be closed until killing process. Happened directly after running "sudo apt update, apt upgrade, apt full-upgrade"

    Haven't been able to roll back the updates to get working yet.

    First time reporting on git here and not a professional developer etc but logistically thinking issue can be a risk security wise at worst and a bug that needs fixing none the less. No funds in account was still in process of syncing node for the first time.

    If some guidance can be provided on how to pull logs or debug etc will be appreciated and glad to contribute to fix in any small way.

    Thanks in advance

    opened by 3ach1T3ach1 41
  • Monero GUI crashing on Mac

    Monero GUI crashing on Mac

    Whenever I try to run the Monero GUI on my Mac Catalina Vers 10.15.7, it crashes with the following logs monero-logs.txt

    I have to do

    export QMLSCENE_DEVICE=softwarecontext;
    /Volumes/Macintosh HD/Applications/monero-wallet-gui.app/Contents/MacOS/monero-wallet-gui
    

    to get it to run

    opened by b3K1ndRw1nd 33
  • Cannot use Ledger-based wallet:

    Cannot use Ledger-based wallet: "Invalid Password"

    I am attempting to create a new wallet from a hardware Ledger device (Nano X) using the Monero GUI (v0.16.0.3 - Nitrogen Nebula, though I also encounted this issue on 0.16.0.2) on macOS (v10.15.6). I followed the steps here.

    I can successfully create the wallet and set any password; however, I consistently receive the following error while attempting to open the wallet:

    image

    I've tried setting & opening with:

    • No password
    • The letter 'a'
    • A random password, copied & pasted both times

    I've tried both the restore & the create new wallet options, and both have this issue. I found a Reddit thread where a Windows user is describing a similar issue.

    Steps to reproduce:

    1. Open a new Monero wallet on the Ledger device
    2. Attempt to create or restore a wallet from a hardware device in the Monero GUI
    3. Set any passphrase
    4. Attempt to open the wallet (which happens automatically)
    bug 
    opened by Apy17750 33
  • Windows MINGW32 compile crash

    Windows MINGW32 compile crash

    I'm getting this error message, what is wrong with readline? readline

    ALSO: CMake Error at CMakeLists.txt:817 (message): Could not find required header zmq.hpp

    resolved 
    opened by SpliffyMap 33
  • Two minor issues

    Two minor issues

    1. When I close Monero-GUI I have only the options „Force stop” and „Keep it running” (in the background) — no chance to get back to GUI if I change my mind. Could be possible to bind to „Esc” key the possibility to „don't exit” (get back to still running GUI)?
    2. From what I see the failed transactions are — for the reason unknown to me — kept at the very beginning of transactions list, and there's no possibility to delete them. They are meant to stay there, at the very beginning, forever, like kind of remorse. If I can't delete the „failed transaction” entries — could they be at least NOT forced to stay at the beginning of transactions list? It's nothing but irritating.
    opened by ZbigniewB 2
  • Monero wallet  loss of all funds.

    Monero wallet loss of all funds.

    was not syncing, I tried to put restore height to the date 2022-12-15 I went from all my monero now it shows none. it will not connect, I am scared, please help

    opened by vlc823 2
  • ux p2pool: enable 'start mining' if user inputs remote host flags

    ux p2pool: enable 'start mining' if user inputs remote host flags

    we don't need to be connected to a local/remote node to start mining. if user enters these p2pool flags: --host node.monerodevs.org --rpc-port 18089 --zmq-port 18084, "start mining" should be possible.

    clicking on "start mining" should grab the values currently inside the startup flags box (currently you have to stop/start for the new values to be used)

    There is also no 'error: p2pool failed to start' screen (if user supplies bad arguments or the host ^ is offline / something else goes wrong.

    opened by plowsof 0
  • Monero GUI froze/crashed ubuntu 22

    Monero GUI froze/crashed ubuntu 22

    as documented on IRC, I decided to use the GUI for a new account.

    <gingeropolous> aaaight im gonna do it! i got a fresh ubuntu 22 and gonna use the GUI to manage this monero account
    <gingeropolous> hrm. the appimage icon or the one without appimage
    <gingeropolous> ooh theres a guide
    <gingeropolous> ok. looks like i click on the one thats not appimage
    <gingeropolous> ah screw it. im goin appimage. 
    <gingeropolous> hrm, double clicked... started to doubt things were happening
    <gingeropolous> register GUI desktop entry?
    <gingeropolous> gah, i wanna try easy / bootstrap but i don't wanna connect to a random node. :( i guess advanced it is
    <gingeropolous> hrm. too many negative words in the seed. i wonder if I hit back to menu if i can create another
    <gingeropolous> wait. Bootstrap node, and then a button to connect to a remote node?
    <gingeropolous> ooooh, clicking that button was not what i wanted
    <gingeropolous> methinks there needs to be a visual separation of that menu hiearchy
    <gingeropolous> heirarchy
    <gingeropolous> damnit
     
    * Loaded log from Fri Dec 23 08:22:17 2022
     
    * Now talking on #monero
    * Topic for #monero is: [XMR] Be excellent to each other and welcoming to newcomers || getmonero.org || Dev: #monero-dev || Pool related: #monero-pools || Price chat: #monero-markets || People can & do log this channel
    * Topic for #monero set by [email protected]/binaryFate (Thu Jul 21 20:33:10 2022)
    <gingeropolous> well thats great
    <gingeropolous> computer froze. I gave it 2 minutes with no change. couldn't even do the ctr-alt F1 or F2 or whatever to get to the console
    <gingeropolous> had to give it a hard power cycle
    

    But yeah. Brand new ubuntu 22 install, and downloaded the GUI from getmonero.org and double clicked on the appimage version in the folder.

    I write froze/crashed in the title because everything on screen was frozen, however my HDD light was still goin at it, so I summise the daemon was still active.

    I'm gonna try and clean slate the .bitmonero folder again and try and re-create. Are there any other files to nuke so I can best re-create the first launch experience?

    opened by Gingeropolous 2
Releases(v0.18.1.2)
  • v0.18.1.2(Sep 30, 2022)

    Overview

    This is the v0.18.1.2 release of the Monero GUI software. This release fixes an incorrect error message while being disconnected from a node.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this release are:

    • Fix a bug that causes the wallet to display "wrong version"
    • Improve behavior when switching nodes (#4036)
    • Use different colors for different subaccounts (#4040)
    • Minor bug fixes and UI improvements

    Contributors for this Release

    This release was the direct result of 5 people who worked, largely unpaid and altruistically, to put out 16 commits containing 87 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • selsta
    • luigi1111
    • j-berman
    • Malinero
    • rating89us

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.18.1.2.zip, c57cd8f27dacf64a11a4f86911a99116ab54438c37c87fb7ccb3c616d9a64b6a
    monero-gui-install-win-x64-v0.18.1.2.exe, c5dbf3e8fca7341dea1194e57b22f233ceb9471aca8692da6ffd0b4bc3a54a1b
    monero-gui-mac-x64-v0.18.1.2.dmg, 0e2e79471ffcc25b939de1937d54610510eaed0cbb19bbdc21a7aa64a2e9ec73
    monero-gui-linux-x64-v0.18.1.2.tar.bz2, 1f9406044434eea770f1548a5bad5708f326f7295fb7c12d6c607ff783018a08
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
  • v0.18.1.1(Sep 19, 2022)

    Overview

    This is the v0.18.1.1 release of the Monero GUI software. This release adds improvements to simple mode.

    The latest CLI release notes can be found on the precedent blog post

    Some highlights of this release are:

    • Skip nodes that are behind last checkpoint in Simple Mode
    • Warn when connecting to an outdated node
    • Update Qt to 5.15.6 on Windows and Linux (#4025)
    • Allow to use Windows Installer on ARM64 systems (#4026)
    • Update translations (#4031)
    • Minor bug fixes and UI improvements

    The complete list of changes is available on GitHub, along with the source code.

    Contributors for this Release

    This release was the direct result of 24 people who worked, largely unpaid and altruistically, to put out 16 commits containing 6549 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • selsta
    • luigi1111
    • tobtoht
    • netrik182

    A special thanks to translators

    castorp, foresle, 12, W4ikiky, juanda-097, Miguel Medina, John Lee, vaa red, MahtiAnkka, Jiri, Tony Nguyen, Tabula Rasa, Lafudoci, cryptoouob, awdfffr, v1docq47, tedtei, ZeoZ, Kareem, ZeoZ

    Download

    The new binaries can be downloaded from the [Downloads page]({{ site.baseurl }}/downloads/#gui) or from the direct links below.

    A complete guide for the GUI wallet is included in the archives, but an online version is available.

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.18.1.1.zip, 4efb0009e97c3a4d97139f3a4ba9b149e5707695569bc60b465a943741a64aa0
    monero-gui-install-win-x64-v0.18.1.1.exe, bf1261059ad0086cc3fd5cdaa47afef12508a70d4eae144e1e40ca36e047551c
    monero-gui-mac-x64-v0.18.1.1.dmg, ed2a74739e2a01185712af5f898a3341f09d58195e22f03a6e4630e8e1e17fc0
    monero-gui-linux-x64-v0.18.1.1.tar.bz2, 2dedc03de5c3d77aaf9be2ea19786c603db1f9596e4b38beeef4b7eb0acd473c
    

    A GPG-signed list of the hashes is at https://www.getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys). To ensure that the files you download are those originally posted by the maintainers, you should both check that the hashes of your files match those on the signed list, and that the signature on the list is valid.

    Two guides are available to guide you through the verification process: Verify binaries on Windows (beginner) and Verify binaries on Linux, Mac, or Windows command line (advanced).

    Source code(tar.gz)
    Source code(zip)
  • v0.18.1.0(Aug 11, 2022)

    Overview

    This is the v0.18.1.0 release of the Monero GUI software. This release adds v0.18 network upgrade compatibility for Ledger and Trezor hardware wallets.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this release are:

    • Add Ledger support for v0.18, requires app v1.8.0
    • Add Trezor support for v0.18, requires firmware v2.5.2
    • Speed up time between wallet opening and refresh (#3994)
    • Add option to skip stop local node screen (#3734)
    • Minor bug fixes and UI improvements

    Contributors for this Release

    This release was the direct result of 7 people who worked, largely unpaid and altruistically, to put out 18 commits containing 27 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • selsta
    • luigi1111
    • reemuru
    • tobtoht
    • garth-xmr
    • plowsof
    • rbrunner7

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.18.1.0.zip, 39c4290a01072cc8fe8eabaa2c61598421a72eac6011eccd16a2a63e89323fa2
    monero-gui-install-win-x64-v0.18.1.0.exe, 9b2c8978f96e8c9662373b427ef320ccd9d652d346435a8487a756bf55cf43ff
    monero-gui-mac-x64-v0.18.1.0.dmg, 0b06351b370863dce8fff9d8659a8235b98505c61c7e4f5af23843b161d92186
    monero-gui-linux-x64-v0.18.1.0.tar.bz2, 6c993b622516d85555d8962767b39c79a3b3614cbdf0ab9f62fa07e3826498d0
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
  • v0.18.0.0(Jul 20, 2022)

    Overview

    This is the v0.18.0.0 release of the Monero GUI software. This major release is due to the August 13th network upgrade, which in turn adds support for Bulletproofs+, view tags, ring size increase to 16, and fee changes.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this release are:

    • Add support for v0.18 network upgrade (#3972)
    • Add scan transaction option (#3932)
    • Fix payment proof button (#3910)
    • Fix restoring from default restore height (#3902)
    • Display wallet files with a dot in name #3968)
    • Add separate Ledger Nano S+ entry (#3903)
    • Fix stagenet approximated block height (#3846)
    • Update Mac icon (#3560)
    • Update p2pool to v2.2.1 (#3966)
    • Only kill p2pool when we started it (#3917)
    • Minor bug fixes and UI improvements

    Contributors for this Release

    This release was the direct result of 55 people who worked, largely unpaid and altruistically, to put out 67 commits containing 20610 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • selsta
    • luigi1111
    • rating89us
    • reemuru
    • ComputeryPony
    • SChernykh
    • netrik182
    • plowsof

    A special thanks to translators

    Agent LvM, TheFuzzStone, foresle, reketen, Josep Mengual, Miguel Medina, Peter Liska, Júlia Forgáčová, Boris Sipos, Carlo, tomas, alreadyburnt, Nima Ghotbi, Parsa Abbasi, E-Moji, MasFlam, Gregg S, Gilberto F da Silva, v1docq47, snipeTR, xmoreee, darckme, Simon Fouilleul, Julian Fouquet, nightwolf3, tedtei, Casimir, CryptoMonero, jindouyunz, Muge Niu, TaoHuachen, MaxQiu0108, Winslow Hee, Lekton Zhang, kingoflove, netrik182, Pozsonyi Péter, liimee, siptruk, I. Musthafa, Wobole, PauleBertt, Marta Kozera, Crusty, GreenPiece, Lennard Merten, Paul Janowitz

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.18.0.0.zip, 41446de539a20c5f5e1c5098ebaebd77009347b7263bdfc61587d27b6b2ff13f
    monero-gui-install-win-x64-v0.18.0.0.exe, a42ea47f6cc128e428ed115b0496d5d9817542dcf29807c2b674e518864418b5
    monero-gui-mac-x64-v0.18.0.0.dmg, c1beab6aa2351a940bfa585d5bff558babb983a8a70600e5166aacf0c47cc2eb
    monero-gui-linux-x64-v0.18.0.0.tar.bz2, a0680b4fcd4b5b75db9a903d17a8216cd250eff91ecbce769e6b920825c9a4c9
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
  • v0.17.3.2(Apr 29, 2022)

    Overview

    This is the v0.17.3.2 point release of the Monero GUI software. This release contains support for P2Pool mining and Ledger Nano S Plus.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Integrate experimental support for P2Pool mining (#3829)
    • Warn against high fees during transaction creation (#3897)
    • Improvements against wallet getting stuck on exit (#3890, #3889)
    • Add support for Ledger Nano S Plus
    • Add support for reserve proof (#3828)
    • Add a lock wallet button to the title bar (#3859)
    • Fix offline signing (#3862)
    • Fix adding a new address book entry (#3865)
    • Update translations, add support for 5 new languages (#3832)
    • Minor bug fixes and UI improvements

    Contributors for this Release

    This release was the direct result of 22 people who worked, largely unpaid and altruistically, to put out 76 commits containing 31625 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • selsta
    • luigi1111
    • rating89us
    • netrik182
    • devhyper
    • mj-xmr
    • jeffro256
    • reemuru

    A special thanks to translators

    Miguel Medina, jaime diaz, Dynse Clyde Sacote, Robbie Monero, Gilberto F da Silva, Malek Atwiz, nanostos, ambercookie, Patix0331, Paul Janowitz, Trendyne, siptruk, tuknag, Marta Kozera

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.3.2.zip, a0fa78c62a97b91db3d225c37c33d8185891600930dddd694d01635b825c2bff
    monero-gui-install-win-x64-v0.17.3.2.exe, 92541cc74ac7afbe771292f6a94127dfaf5163627a750226bff10abd431e5086
    monero-gui-mac-x64-v0.17.3.2.dmg, acaabe36002ae66bee4d4ded1fbcca4b34688cb702231aea26afe49f3f284fbe
    monero-gui-linux-x64-v0.17.3.2.tar.bz2, ad4b4be60548cddcade3cf8874579256805559d61a68e6102e4dde71284a2039
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
  • v0.17.3.1(Jan 7, 2022)

    Overview

    This is the v0.17.3.1 point release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Fix startup crash on Apple Silicon (#3804)
    • Fix wizard password not resetting after wallet creation (#3795)
    • Update translations (#3811)
    • Minor bug fixes and UI improvements

    Contributors for this Release

    This release was the direct result of 5 people who worked, largely unpaid and altruistically, to put out 26 commits containing 1319 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • selsta
    • luigi1111
    • rating89us
    • netrik182
    • selamba

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.3.1.zip, 70f658d499c6fc0f232c4f5fd89f8f93e9c851465e02cdc206eb89fe6e8e897d
    monero-gui-install-win-x64-v0.17.3.1.exe, d71099d2f4f0b3c223de3f6e2d47cff7da94b7a61e7ed4ecc11ac52dc482c044
    monero-gui-mac-x64-v0.17.3.1.dmg, e54616064681a3ea147298b9006fbac56d80e13c5764158743a226e298a5a017
    monero-gui-linux-x64-v0.17.3.1.tar.bz2, 02e8e32455383cf32030e33511656492a352788a619a0c9220ec360c2e863ef9
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
  • v0.17.3.0(Dec 7, 2021)

    Overview

    This is the v0.17.3.0 point release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Add import / export output function (#3435)

    • Export all key images by default (#3282)

    • Update translations (#3773)

    • Add description to CSV export (#3572)

    • Add colors to password strength meter (#3682)

    • Add Cut, Copy, Delete and Select All to context menu (#3689)

    • Fix buffer overflow in zxcvbn library (#3735)

    • Fix font issue on Arch Linux (#3753)

    • Fix compilation for Apple ARM (#3697, #3723, #3731)

    • Mining page design tweaks (#3742)

    • Minor bug fixes and UI improvements

    Contributors for this Release

    This release was the direct result of 39 people who worked, largely unpaid and altruistically, to put out 116 commits containing 45929 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • selsta
    • luigi1111
    • weblate
    • maltejur
    • free-as-in-beer
    • netrik182
    • rex4539
    • JeremyRand
    • kinghat
    • tobtoht
    • MoneroArbo
    • dsc
    • benevanoff
    • rating89us

    A special thanks to translators

    TheFuzzStone, reketen, castorp, Alex Osinniy, nemecis rojas, Samuel, Josep Mengual, jaime diaz, Dynse Clyde Sacote, devuana, mihaipe, v1docq47. L. P. Pereira, netrik182, Gilberto F da Silva, Zsolt András Kovács, Pozsonyi Péter, Közepes Gábor, anonym szeretnék maradni, Nicolas, Martin, MortiZ, GreenPiece, Crusty, Paul Janowitz

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Source code(tar.gz)
    Source code(zip)
  • v0.17.2.3(Sep 1, 2021)

    Overview

    This is the v0.17.2.3 minor point release of the Monero GUI software. This release contains a decoy selection bug fix that improves privacy.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Add payment request functionality to receive page (#3650)
    • Display images on create hardware wallet page (#3618)
    • Reenable password strength meter in release binaries (#3562)
    • Automatically correct incorrectly typed restore dates (#3564)
    • Add tooltips to all buttons (#3490)
    • Add search transactions button on receive and account page (#3216, #3546)
    • Set an unused wallet name in wizard (#3544)
    • Fix bug not accepting new restore height (#3563)
    • Fix get / check proof on Sign / Verify page (#3674)
    • Fix scanning QR codes that miss an URI prefix (#3598)
    • Various date picker improvements
    • Accessibility improvements (#3611, #3603)
    • Minor bug fixes and UI improvements

    Contributors for this Release

    This release was the direct result of 3 people who worked, largely unpaid and altruistically, to put out 170 commits containing 26608 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • selsta
    • luigi1111
    • rating89us

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.2.3.zip, 1ae06f71e7b469ea95f10008f2624797cf0a3223e47f07c42591c0dff63e63ec
    monero-gui-install-win-x64-v0.17.2.3.exe, 8b5f37eb6b2d0534cbbc490986f23d7fb470697b7839ac1305499c4675f1ea11
    monero-gui-mac-x64-v0.17.2.3.dmg, 20fe978294b65c2bb44932489f114e6a91cb4c2c4b03afb87ab683c8182cf811
    monero-gui-linux-x64-v0.17.2.3.tar.bz2, f011ba2bd67395ca8c17d5faf1397785905533dd1a8b9ebf1e6810d0f726f40f
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
  • v0.17.2.2(May 14, 2021)

    Overview

    This is the v0.17.2.2 minor point release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Add basic menubar support on macOS (#2242)
    • Fix GUI being invisible on systems with multiple monitors (#3404, #3447)
    • New view progress button after transfer (#3208)
    • Tooltips on transfer page (#3401)
    • Fix missing icons in low graphics mode (#3423)
    • Display selected subaddress on merchant page (#3424)
    • Minor bug fixes and UI improvements

    Contributors for this Release

    This release was the direct result of 4 people who worked, largely unpaid and altruistically, to put out 96 commits containing 502 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • selsta
    • xiphon
    • luigi1111
    • rating89us

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.2.2.zip, 5d20829f43c431135455ec9bd788889e59dda4c6f74b6eaa92eec5411d9246e2
    monero-gui-install-win-x64-v0.17.2.2.exe, ff2826a4437080470ceeaac43d0cede89798caf4a864a9cd13430ed2c63aca14
    monero-gui-mac-x64-v0.17.2.2.dmg, 3ee4e9145b0545ba4e5c47b89b64bc558c8eeb7887d260b3bd30f6a215029964
    monero-gui-linux-x64-v0.17.2.2.tar.bz2, 0088b133febdb151a3753393b4dc8b06111b844c0fca14e512f3c8d56a2a5b97
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.17.2.2.exe(86.40 MB)
    monero-gui-linux-x64-v0.17.2.2.tar.bz2(120.85 MB)
    monero-gui-mac-x64-v0.17.2.2.dmg(59.59 MB)
    monero-gui-win-x64-v0.17.2.2.zip(122.63 MB)
  • v0.17.2.1(Apr 14, 2021)

    Overview

    This is the v0.17.2.1 minor point release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Fix transfer on macOS (#3390)
    • Minor bug fixes

    Contributors for this Release

    This release was the direct result of 3 people who worked, largely unpaid and altruistically, to put out 8 commits containing 15 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • selsta
    • tocomo
    • luigi1111

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.2.1.zip, ac12efea2f99e8ac0f77f3ba73ea333b4f44d8a08149f6c2ab5b7662e2f9b8f3
    monero-gui-install-win-x64-v0.17.2.1.exe, 8761082c8fd907c59effd30156a98bcb9c01a48b14eafde1e9a8463fc5f81d16
    monero-gui-mac-x64-v0.17.2.1.dmg, f8c2b2eefb8b25ac2e2beb54c1814c947da5239192a1a2873b7c89ed14761215
    monero-gui-linux-x64-v0.17.2.1.tar.bz2, 72dfca40797201604a6b2fb97935037f62d3153360695cf732dee3d12e167da3
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.17.2.1.exe(86.30 MB)
    monero-gui-linux-x64-v0.17.2.1.tar.bz2(120.71 MB)
    monero-gui-mac-x64-v0.17.2.1.dmg(59.39 MB)
    monero-gui-win-x64-v0.17.2.1.zip(122.52 MB)
  • v0.17.2.0(Apr 11, 2021)

    Overview

    This is the v0.17.2.0 point release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this release are:

    • Allow sending to multiple receipients (#3332)
    • Add support for pruning of new databases in wizard (#3345)
    • Add support for storing multiple remote nodes (#3373)
    • New "Grab QR code from screen" functionality (#3292)
    • Improve search functionality on Transactions page (#3215)
    • Fix a memory leak on Linux (#3326)
    • Fix incorrect fiat price api usage with Kraken (#3298)
    • Enable dns block list in simple mode (#3314)
    • Restrict max window width / height, fix initial window alignment (#3302)
    • Updated translations from Weblate (#3342)
    • Update monero submodule to v0.17.2.0 (#3382)
    • Minor design improvements

    Contributors for this Release

    This release was the direct result of 66 people who worked, largely unpaid and altruistically, to put out 93 commits containing 31902 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • xiphon
    • luigi1111
    • rating89us
    • toh995
    • erciccione
    • fsrw42
    • benevanoff
    • secure-designer
    • selsta

    A special thanks to translators

    Luis Alejandro Herrera Bolaños, ian vatega, Miguel Medina, Michael Russo, Samuel, 0x82b, kombometralla, Tony Nguyen, Boris Sipos, Tabula Rasa, 8uDD4T, Gleb Golov, Lafudoci, Joan Montané, Nima Ghotbi, Gilberto F da Silva, Russian Bear, Agent LvM, v1docq47, Scott Anecito, x52fws, Lana, Demofrager, Ian appel, EvolBit, Bertrand Jacquin, lir4376, Loué Marie, el00ruobuob, Michal Vašíček, dskch83, ambercookie, warraxxx, Georgios Apostolopoulos, ΚΥΡΙΑΚΟΣ ΚΑΡΑΚΥΡΙΟΣ, Marinus Savoritias, Iason Andreou, Donald A. Iljazi, Vytas, Aivaras Kasperaitis, Renato MB, netrik182, Mathkamy, Allan Nordhøy, obit33, Edwin den Boer, dutchcodes, Ori Levenglick, Yan Abu Arab, G. Orwell, mr, Paul Janowitz, Nicolas, GreenPiece, SJ, Deleted User, Wobole

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.2.0.zip, 12d7e364b3870b96ed646329634cdcb7e9b2f3fb3290c9834d7a17214d6b47c2
    monero-gui-install-win-x64-v0.17.2.0.exe, 2e6150da2243eb887b727fb1e7cd7824ea869648fcd55843f7e767f1966026ab
    monero-gui-mac-x64-v0.17.2.0.dmg, 8825b196146c73d13292d1e65aa3c263170358af938dc4b47b498fab1d12f0c0
    monero-gui-linux-x64-v0.17.2.0.tar.bz2, ee31d67f3df174cc88b01a528aa9d882504fb5f7ae805f449ff35820a4d45bbb
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys).

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.17.2.0.exe(86.30 MB)
    monero-gui-linux-x64-v0.17.2.0.tar.bz2(120.72 MB)
    monero-gui-mac-x64-v0.17.2.0.dmg(59.39 MB)
    monero-gui-win-x64-v0.17.2.0.zip(122.52 MB)
  • v0.17.1.9(Jan 8, 2021)

    Overview

    This is the v0.17.1.9 minor point release of the Monero GUI software. This is a recommended release that contains mitigations against the ongoing memory exhaustion attack.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Update monero submodule to v0.17.1.9
    • Windows GUI binary is now reproducible
    • Add high DPI support on Windows

    Contributors for this Release

    This release was the direct result of 3 people who worked, largely unpaid and altruistically, to put out 8 commits containing 166 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • xiphon
    • Snipa
    • selsta

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.1.9.zip, 862aa9a6564a60be3e70ee30eb061d5186a141ce62842b3d741558470c255988
    monero-gui-install-win-x64-v0.17.1.9.exe, edc47b1540510640a40e8d52ad4ab3a6220f935e881fd65b02ccce94a28c3fa2
    monero-gui-mac-x64-v0.17.1.9.dmg, c8a8ea012e8731bfacd17434fdd3a0f03302fc61d7187d218da5ff6a6e869f0b
    monero-gui-linux-x64-v0.17.1.9.tar.bz2, 6334acbe9877e2e86b1902b111abc59e170aedc701ea71cbae49830191bbd745
    

    A GPG-signed list of the hashes is at https://www.getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys). To ensure that the files you download are those originally posted by the maintainers, you should both check that the hashes of your files match those on the signed list, and that the signature on the list is valid.

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.17.1.9.exe(86.23 MB)
    monero-gui-linux-x64-v0.17.1.9.tar.bz2(120.64 MB)
    monero-gui-mac-x64-v0.17.1.9.dmg(59.26 MB)
    monero-gui-win-x64-v0.17.1.9.zip(122.38 MB)
  • v0.17.1.8(Dec 30, 2020)

    Overview

    This is the v0.17.1.8 minor point release of the Monero GUI software. This is a recommended release that contains mitigations against the ongoing memory exhaustion attack.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Update monero submodule to v0.17.1.8
    • UI tweaks to LineEdit component
    • Minor bug fixes

    Contributors for this Release

    This release was the direct result of 3 people who worked, largely unpaid and altruistically, to put out 12 commits containing 99 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • xiphon
    • Snipa
    • selsta

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.1.8.zip, 0c4ce3953824e6e65e2913fb1cb246ebe2742386821d2b92b4a6b6251c66f901
    monero-gui-install-win-x64-v0.17.1.8.exe, 81dcefcf42127101568357f56afdbe0c92d1f8b153dff09ae2d062ba96579f4e
    monero-gui-mac-x64-v0.17.1.8.dmg, f9ad5567e6e1e4a88213190cbde6d974265640438e9f2de41ce0d4839cb021f4
    monero-gui-linux-x64-v0.17.1.8.tar.bz2, b9ea5890033a3d67f14abe401c223c5b33947689abaeacf9905e57b811840853
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.17.1.8.exe(82.91 MB)
    monero-gui-linux-x64-v0.17.1.8.tar.bz2(120.51 MB)
    monero-gui-mac-x64-v0.17.1.8.dmg(59.24 MB)
    monero-gui-win-x64-v0.17.1.8.zip(117.76 MB)
  • v0.17.1.7(Dec 14, 2020)

    Overview

    This is the v0.17.1.7 minor point release of the Monero GUI software. This is a recommended release that contains P2P network layer improvements.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Ask for writing desktop shortcut on first start (Linux)
    • Fix wallet initialization flag handling
    • Get back "Sending transaction ..." splash
    • Disable QML cache
    • Minor bug fixes

    Contributors for this Release

    This release was the direct result of 4 people who worked, largely unpaid and altruistically, to put out 16 commits containing 51 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • luigi1111
    • xiphon
    • Snipa
    • selsta

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.1.7.zip, d6bc6edd9fb0cd867933ff2a66ee99cca03869d728b43d42c98c333570c529f3
    monero-gui-install-win-x64-v0.17.1.7.exe, 21fd01bb5c1fa169067208d0f7311d1ebec4e5b187285e5231823b72d6fb1951
    monero-gui-mac-x64-v0.17.1.7.dmg, 1664860f4fae066695a74c04b55caa6421a8a10df5bbeb554c2e6dea89336710
    monero-gui-linux-x64-v0.17.1.7.tar.bz2, 9a51b62ff422263d73bda1287ab65434602861d03819a15b3cefdab30e9145ec
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.17.1.7.exe(82.89 MB)
    monero-gui-linux-x64-v0.17.1.7.tar.bz2(120.48 MB)
    monero-gui-mac-x64-v0.17.1.7.dmg(59.23 MB)
    monero-gui-win-x64-v0.17.1.7.zip(117.74 MB)
  • v0.17.1.6(Dec 8, 2020)

    Overview

    This is the v0.17.1.6 minor point release of the Monero GUI software. This is a recommended release that contains P2P network layer improvements.

    The latest CLI release notes can be found on the precedent blog post

    Some highlights of this minor release are:

    • Fix transactions getting incorrectly marked as failed
    • Minor bug fixes

    The complete list of changes is available on GitHub, along with the source code.

    Contributors for this Release

    This release was the direct result of 4 people who worked, largely unpaid and altruistically, to put out 22 commits containing 228 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • luigi1111
    • xiphon
    • Snipa
    • rating89us
    • selsta

    Download

    The new binaries can be downloaded from the [Downloads page]({{ site.baseurl }}/downloads/#gui) or from the direct links below.

    A complete guide for the GUI wallet is included in the archives, but an online version is available.

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.1.6.zip, 15fac8ad47f1c1a78f92b46692875261d2a3c67a742cb8f43bbed05dc5beb289
    monero-gui-install-win-x64-v0.17.1.6.exe, 18bb1b4c5f762bd9eacabececc012cd077cac4d9dc64f46b42c4ea68cdbfa70e
    monero-gui-mac-x64-v0.17.1.6.dmg, dd3e909c2b2d61f6158def93ec544897ea5cd4c22fa9a8a8398a6c511ba5ec47
    monero-gui-linux-x64-v0.17.1.6.tar.bz2, 413d41f8e349b52db60c6932182f852c34587f55f7b4436fe72a0bb7245830c3
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
  • v0.17.1.5(Nov 26, 2020)

    Overview

    This is the v0.17.1.5 minor point release of the Monero GUI software. This release improves simple mode reliability.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Simple mode: skip syncing nodes
    • Write QML cache to portable folder
    • Linux: enable high DPI support
    • Minor bug fixes

    Contributors for this Release

    This release was the direct result of 4 people who worked, largely unpaid and altruistically, to put out 22 commits containing 228 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • luigi1111
    • xiphon
    • Snipa
    • selsta

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.1.5.zip, a5ed83ffeec340b6695c4dcf0305decd5c419a97572e104c323b956deeac3c3d
    monero-gui-install-win-x64-v0.17.1.5.exe, 89e6bad3e8b5b1a57c647f7ddb30ebe4476c74db5730738c0cb7115fb8e44b65
    monero-gui-mac-x64-v0.17.1.5.dmg, 7c7812263ab242f954534d062984e63cbe34211d8a6fd7f08e4bacfeb52ad1ec
    monero-gui-linux-x64-v0.17.1.5.tar.bz2, 577c5b2bcef436cffb57e4addf3ae9b669733f9aae83dc74f5025c76671667ed
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
  • v0.17.1.4(Nov 13, 2020)

    Overview

    This is the v0.17.1.4 minor point release of the Monero GUI software. This release fixes an issue with the wallet not starting on some Linux systems.

    The latest CLI release notes can be found on the precedent blog post

    Some highlights of this minor release are:

    • Linux: fix a deadlock on startup
    • Linux: high DPI support removed, will be readded in subsequent release

    The complete list of changes is available on GitHub, along with the source code.

    Contributors for this Release

    This release was the direct result of 3 people who worked, largely unpaid and altruistically, to put out 6 commits containing 19 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • luigi1111
    • xiphon
    • selsta

    Download

    The new binaries can be downloaded from the [Downloads page]({{ site.baseurl }}/downloads/#gui) or from the direct links below.

    A complete guide for the GUI wallet is included in the archives, but an online version is available.

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.1.4.zip, df78006226d21e70ea5d342b0f6d4335cf398e94cb3d0f750aec4db2d2b3f7f9
    monero-gui-install-win-x64-v0.17.1.4.exe, 8c9a820fd7dc228807f8ecc46973350d3d5d871c6f8dd67ef066d04407575d14
    monero-gui-mac-x64-v0.17.1.4.dmg, 4e319a9dfb5e1caa42b52f6503480af3b44403f3bf4691da523880c6a6ec38a9
    monero-gui-linux-x64-v0.17.1.4.tar.bz2, abe94552803fd6646e934d1248e6ef33d8d6e2ac9a725c600fa7e8d4bfcc21a3
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys).

    Source code(tar.gz)
    Source code(zip)
  • v0.17.1.3(Nov 13, 2020)

    Overview

    This is the v0.17.1.3 minor point release of the Monero GUI software. This is a recommended release that improves overall network perfomance.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Android support (experimental)
    • Linux binary is now reproducible (experimental)
    • Simple mode: transaction reliability improvements
    • New transaction confirmation dialog
    • Wizard: minor design changes
    • Linux: high DPI support
    • Fix "can't connect to daemon" issue
    • Minor bug fixes

    Contributors for this Release

    This release was the direct result of 5 people who worked, largely unpaid and altruistically, to put out 48 commits containing 1155 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • luigi1111
    • Snipa
    • rating89us
    • xiphon
    • selsta

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.1.3.zip, 0a49ccccb561445f3d7ec0087ddc83a8b76f424fb7d5e0d725222f3639375ec4
    monero-gui-install-win-x64-v0.17.1.3.exe, 15ad80b2abb18ac2521398c4dad9b8bfea2e6fc535cf4ebcc60d99b8042d4fb2
    monero-gui-mac-x64-v0.17.1.3.dmg, 23405534c7973a8d6908b76121b81894dc853039c942d7527d254dfde0bd2e8f
    monero-gui-linux-x64-v0.17.1.3.tar.bz2, 3bed02f9db5b7b2fe4115a636fecf0c6ec9079dd4e9284c8ce2c67d4996e2a4a
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.17.1.3.exe(79.70 MB)
    monero-gui-linux-x64-v0.17.1.3.tar.bz2(115.87 MB)
    monero-gui-mac-x64-v0.17.1.3.dmg(58.84 MB)
    monero-gui-win-x64-v0.17.1.3.zip(112.94 MB)
  • v0.17.1.1(Oct 22, 2020)

    Overview

    This is the v0.17.1.1 minor point release of the Monero GUI software. This is a highly recommended release that fixes an issue with nodes getting stuck at block 2210720.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Fix sync past block 2210720
    • Add "pending" and "failed" transaction status
    • Simple mode: improve start / stop splash screen
    • Simple mode: set default out peers to 16
    • Add armv8-linux release target
    • Fix wallet getting stuck on close
    • Minor bug fixes

    Contributors for this Release

    This release was the direct result of 4 people who worked, largely unpaid and altruistically, to put out 22 commits containing 62 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • Snipa
    • bjacquin
    • xiphon
    • selsta

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.1.1.zip, a64fe57d2f0cf6bab49f78c5ae298f71e3fc44777da4e0cd89cd660facce14c2
    monero-gui-install-win-x64-v0.17.1.1.exe, 318cec037990d89cec62f2d29ac5827a459d15a638abc5c25cbc3b910337e50f
    monero-gui-mac-x64-v0.17.1.1.dmg, ebaecd3b4072c1ef22009dd69290208b5c83b9b597de1a1116bc05564a08a916
    monero-gui-linux-x64-v0.17.1.1.tar.bz2, 14f5667e57603f05872a0dcd31a81acd7ffa31b71eb83ba22661bd05e2fc53d1
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.17.1.1.exe(79.69 MB)
    monero-gui-linux-x64-v0.17.1.1.tar.bz2(113.39 MB)
    monero-gui-mac-x64-v0.17.1.1.dmg(58.82 MB)
    monero-gui-win-x64-v0.17.1.1.zip(112.92 MB)
  • v0.17.1.0(Oct 14, 2020)

    Overview

    This is the v0.17.1.0 release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this release are:

    • Simple mode: fix a bug causing transaction propagation to fail (stuck as pending)
    • Portable mode: save log to storage folder
    • Fix a rare crash during wallet refresh
    • Fix wallet not showing up on recent wallets screen
    • Fix empty RPATH token issue (Linux)
    • Minor bug fixes

    Contributors for this Release

    This release was the direct result of 3 people who worked, largely unpaid and altruistically, to put out 20 commits containing 186 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • luigi1111
    • xiphon
    • selsta

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.1.0.zip, 85ecd625721435e99fff0f4849ff40bb3f2de26573b50432a5fe9632dfba3026
    monero-gui-install-win-x64-v0.17.1.0.exe, be3b1f07ba86a0d46c27f670b27d936baa5c4e7b68f3dc37349b8f91b073dc6a
    monero-gui-mac-x64-v0.17.1.0.dmg, b9c0cbdc8f9c74d6205858ccb4fb0f1eec792e301aa819bf8aa445a3d17869d3
    monero-gui-linux-x64-v0.17.1.0.tar.bz2, 9076b731634e073430817cd590ea015a19a9cf3336c3c7a7bb16f1fd25b429f4
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.17.1.0.exe(79.67 MB)
    monero-gui-linux-x64-v0.17.1.0.tar.bz2(113.35 MB)
    monero-gui-mac-x64-v0.17.1.0.dmg(58.82 MB)
    monero-gui-win-x64-v0.17.1.0.zip(112.91 MB)
  • v0.17.0.1(Oct 6, 2020)

    Overview

    This is the v0.17.0.1 release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this major release are:

    • Socks5 proxy support, automatically enabled on Tails
    • Simple mode transactions are sent through local daemon, improved reliability
    • Portable mode, save wallets + config to "storage" folder
    • History page: improvements, incoming / outgoing labels
    • Transfer: new success dialog
    • CMake build system improvements
    • Windows cross compilation support using Docker
    • Various minor bug and UI fixes

    Contributors for this Release

    This release was the direct result of 43 people who worked, largely unpaid and altruistically, to put out 130 commits containing 7836 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • luigi1111
    • rbrunner7
    • selsta
    • xiphon
    • rating89us
    • dsc
    • Italocoin
    • erciccione
    • ph4r05

    A special thanks to translators

    Michael Russo, G.T.S., kombometralla, CharlesCrisco, nemecis rojas, porokon7, Viktor, 78carla, erciccione, Gleb Golov, Agent LvM, solevoy-psih, v1docq47, TheFuzzStone, Russian Bear, translator133, Peter J. Mello, EvolBit, icuntcode, Bertrand Jacquin, el00ruobuob, srk raidu, To Ja, vp11, netrik182, Jaimie, Jonathan Heirbaut, Marcus, obit33, Paul Janowitz, SJ, Wobole, Anonymous, GreenPiece

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.17.0.1.zip, c18a47e6d6c273406ea4cf7cc834982a7905a53021268d4fe503ef95507890b5
    monero-gui-install-win-x64-v0.17.0.1.exe, 6250fc57720c6190362fd1cb74e61eb4f765cd8d15c7cc512d48bb15e8fefd51
    monero-gui-mac-x64-v0.17.0.1.dmg, 1796d266e7bffed1803531b2aab18ff2162f3925d2d42fbe8c8c98bd687c1bcc
    monero-gui-linux-x64-v0.17.0.1.tar.bz2, d7ab169a2cd4177adb5320ea0a8e0fb541a0d1bc6e1dde4a1c4c0710bf736a8c
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.17.0.1.exe(79.67 MB)
    monero-gui-linux-x64-v0.17.0.1.tar.bz2(113.35 MB)
    monero-gui-mac-x64-v0.17.0.1.dmg(58.82 MB)
    monero-gui-win-x64-v0.17.0.1.zip(112.90 MB)
  • v0.16.0.3(Aug 13, 2020)

    Overview

    This is the v0.16.0.3 release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • macOS app is now notarized by Apple
    • CMake improvments
    • Add support for IPv6 remote nodes
    • Add command history to Logs page
    • Add "Donate to Monero" button
    • Indicate probability of finding a block on Mining page
    • Minor bug fixes

    Contributors for this Release

    This release was the direct result of 22 people who worked, largely unpaid and altruistically, to put out 71 commits containing 16626 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • luigi1111
    • xiphon
    • rating89us
    • selsta
    • glv2
    • erciccione
    • xmrdsc

    A special thanks to translators

    8uDD4T, Marius Tanislav, xmoreee, Lana, Michal Poupe, dskch83, anony_xmr, C3Pool, Muge Niu, Anonymous, razorshaman909, Stavros, warraxxx, Georgios Apostolopoulos, bitbooz

    Official Download Links

    Windows, 64-bit Windows, 64-bit(Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.16.0.3.zip, 371cb4de2c9ccb5ed99b2622068b6aeea5bdfc7b9805340ea7eb92e7c17f2478
    monero-gui-install-win-x64-v0.16.0.3.exe, 50fe1d2dae31deb1ee542a5c2165fc6d6c04b9a13bcafde8a75f23f23671d484
    monero-gui-mac-x64-v0.16.0.3.dmg, 574a84148ee6af7119fda6b9e2859e8e9028fe8a8eec4dfdd196aeade47e9c90
    monero-gui-linux-x64-v0.16.0.3.tar.bz2, 20c03ddb1c82e1bcb73339ef22f409e5850a54042005c6e97e42400f56ab2505
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.16.0.3.exe(86.48 MB)
    monero-gui-linux-x64-v0.16.0.3.tar.bz2(112.52 MB)
    monero-gui-mac-x64-v0.16.0.3.dmg(60.60 MB)
    monero-gui-win-x64-v0.16.0.3.zip(123.55 MB)
  • v0.16.0.2(Aug 14, 2020)

    Overview

    This is the v0.16.0.2 release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this minor release are:

    • Ledger: fix transfer with multiple inputs
    • CMake improvements
    • Minor security relevant fixes
    • Various bug fixes

    Contributors for this Release

    This release was the direct result of 4 people who worked, largely unpaid and altruistically, to put out 45 commits containing 403 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • luigi1111
    • selsta
    • xiphon
    • rating89us

    Official Download Links

    Windows, 64-bit Windows, 64-bit(Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.16.0.2.zip, 6e0efb25d1f5c45a4527c66ad6f6c623c08590d7c21de5a611d8c2ff0e3fbb55
    monero-gui-install-win-x64-v0.16.0.2.exe, d35c05856e669f1172207cbe742d90e6df56e477249b54b2691bfd5c5a1ca047
    monero-gui-mac-x64-v0.16.0.2.tar.bz2, 142a1e8e67d80ce2386057e69475aa97c58ced30f0ece3f4b9f5ea5b62e48419
    monero-gui-linux-x64-v0.16.0.2.tar.bz2, 9ff8c91268f8eb027bd26dcf53fda5e16cb482815a6d5b87921d96631a79f33f
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
  • v0.16.0.0(Jun 2, 2020)

    Overview

    This is the v0.16.0.0 release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this major release are:

    • Simple mode: node selction algorithm improved
    • UX: display estimated transaction fee
    • UX: add update dialog with download and verify functionality
    • UX: implement autosave feature
    • UI: redesign advanced options on transfer page
    • UI: improve daemon sync progress bar
    • UI: new language sidebar
    • UI: new processing splash design
    • UI: redesign settings page
    • Trezor: support new passphrase entry mechanism
    • Wizard: add support for seed offset
    • Various bug fixes and performance improvements

    Contributors for this Release

    This release was the direct result of 54 people who worked, largely unpaid and altruistically, to put out 178 commits containing 32608 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • luigi1111
    • Dusan Klinec
    • mmbyday
    • rbrunner7
    • selsta
    • xiphon
    • rating89us
    • erciccione
    • thotbot

    A special thanks to translators

    reketen, TheFuzzStone, Michael Russo, kombometralla, CharlesCrisco, Anonymous, porokon7, Juanpaab, enaSo97, TasmaniaKrama, vaa red, 8uDD4T, Lafudoci, Gilberto F da Silva, Marius Tanislav, Vlad G., Agent LvM, solevoy-psih, v1docq47, Russian Bear, translator133, Scott Anecito, Viktor, jindouyunz, anony_xmr, tan, Muge Niu, TE Scott, razorshaman909, Matija Mazi, To Ja, ANMNQ, Nelson Renan, netrik182, Boçogrolho Tabúrcio Mendez, Asdrubal Petronidas Calhofos, bitbooz, Marcus, B, peter hermansson, KforG, Poul, Wobole, René Brunner, GreenPiece

    Official Download Links

    Windows, 64-bit Windows, 64-bit(Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.16.0.0.zip, f7894e92a8973f9b504fe028dc90a672fc3e97086ab835c346a1ae2dfb0d53cf
    monero-gui-install-win-x64-v0.16.0.0.exe, 0820aeb30b39bb86b550ff5d6e641c16491cff3cff2b9ab9873bdc05acc6a041
    monero-gui-mac-x64-v0.16.0.0.tar.bz2, 96effab969c1d4f715d323835d98b202e33f75b835ed4587bb49a76fb288bc6d
    monero-gui-linux-x64-v0.16.0.0.tar.bz2, 6a1064e89d1ac626ae9307429276ad447ddbbf38035de0b24599e267977e61f1
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.16.0.0.exe(86.65 MB)
    monero-gui-linux-x64-v0.16.0.0.tar.bz2(117.10 MB)
    monero-gui-mac-x64-v0.16.0.0.tar.bz2(50.07 MB)
    monero-gui-win-x64-v0.16.0.0.zip(123.75 MB)
  • v0.15.0.4(Mar 5, 2020)

    Overview

    This is the v0.15.0.4 release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this release are:

    • Various small UI improvements
    • New langauge: Norwegian
    • macOS: .app now displays version
    • Bug fixes and performance improvements
    • Crash fixes

    Contributors for this Release

    This release was the direct result of 12 people who worked, largely unpaid and altruistically, to put out 124 commits containing 37224 new lines of code. We'd like to thank them very much for their time and effort. In alphabetical order they are:

    • erciccione
    • iDunk5400
    • luigi1111
    • rating89us
    • rex4539
    • sebseb7
    • selsta
    • TheCharlatan
    • tobtoht
    • trulex
    • xiphon

    A special thanks to translators

    Agent LvM, kombometralla, Aidan_MegaSolar, mrsmonero, Marco, TheFuzzStone, Vytas, netrik182, Zsolt András Kovács, Jonathan Heirbaut, Edwin den Boer, peter hermansson, Gustav, koostamas, Chris, Viktor, LoganWalker, anonymous, Boçogrolho Tabúrcio Mendez

    Official Download Links

    Windows, 64-bit Windows, 64-bit(Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.15.0.4.zip, 9b61fa807c66ebe3010869d1fa926fe033a2c82e6e660ca8acb75a8fba0248a0
    monero-gui-install-win-x64-v0.15.0.4.exe, 874ebbfcf79d09c60e2d85d09e5b8b971066c6355dfc2a5eca6d109d32e45ddb
    monero-gui-mac-x64-v0.15.0.4.tar.bz2, 9b0164cd90345c5fd4014a6bc8258465c2e5aae7c527c7f64a2d795830db7ae4
    monero-gui-linux-x64-v0.15.0.4.tar.bz2, 2d105c792b46ec03739d39aaa6db3801f268e074814ab26e3824435f954c6a1c
    

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.15.0.4.exe(109.07 MB)
    monero-gui-linux-x64-v0.15.0.4.tar.bz2(111.77 MB)
    monero-gui-mac-x64-v0.15.0.4.tar.bz2(25.42 MB)
    monero-gui-win-x64-v0.15.0.4.zip(155.09 MB)
  • v0.15.0.3(Dec 30, 2019)

    Overview

    This is the v0.15.0.3 release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this release are:

    • Crash fixes
    • New sidebar menu design
    • New blur background effect
    • Bug fixes and performance improvements

    Contributors for this Release

    This release was the direct result of 6 people who worked, largely unpaid and altruistically, to put out 85 commits containing 4547 new lines of code. We'd like to thank them very much for their time and effort. In alphabetical order they are:

    • luigi1111
    • selsta
    • tobtoht
    • TheCharlatan
    • xiphon
    • rating89us (UI/UX)
    Source code(tar.gz)
    Source code(zip)
  • v0.15.0.2(Dec 13, 2019)

    Overview

    This is the v0.15.0.2 release of the Monero GUI software.

    The latest CLI release notes and downloads can be found on the release page here.

    Some highlights of this release are:

    • Fix Trezor support on Linux
    • Fix blank screen on tails startup
    • Translation improvements
    • Fix update notification hash
    • Persistent subaddress account selection
    • Various UI/UX improvments
    • Minor bug fixes and performance improvements

    Contributors for this Release

    This release was the direct result of 4 people who worked, largely unpaid and altruistically, to put out 63 commits containing 536 new lines of code. We'd like to thank them very much for their time and effort. In alphabetical order they are:

    • luigi1111
    • selsta
    • xiphon
    • rating89us (UI/UX)

    Official Download Links

    Windows, 64-bit Windows, 64-bit (Installer) macOS, 64-bit Linux, 64-bit

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.15.0.2.zip, 8684d9ba3cdad8f9b73bbcae85a69f7eb3cfd27db030163485e066131b68e7b7 monero-gui-install-win-x64-v0.15.0.2.exe, e09edd01afa7f2224b3498825e5ba5dcf3fe887efb0b3ff07bbc30c5bce847f1 monero-gui-mac-x64-v0.15.0.2.tar.bz2, a652484a2a74f0d2697a4f0c000221d2a90927b8b8d536f1429756596d048f90 monero-gui-linux-x64-v0.15.0.2.tar.bz2, e21d688b5e26c3dea7c774e97fdd44f169abd218d212378eaacab5c64ea80f7d

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.15.0.2.exe(82.08 MB)
    monero-gui-linux-x64-v0.15.0.2.tar.bz2(111.58 MB)
    monero-gui-mac-x64-v0.15.0.2.tar.bz2(144.33 MB)
    monero-gui-win-x64-v0.15.0.2.zip(120.08 MB)
  • v0.15.0.1(Nov 19, 2019)

    Overview

    This is the v0.15.0.1 release of the Monero GUI software.

    The CLI release notes and downloads can be found on the release page here.

    Some highlights of this release are:

    • Better Tails support
    • Transaction history page improvements
    • Show address on Trezor device
    • Titlebar: wallet name and new icons
    • SimpleMode: automatic public nodes discovering and switching
    • Left panel: new design
    • Basic right click context menu
    • Various UI/UX improvments
    • Bug fixes and performance improvements

    Contributors for this Release

    This release was the direct result of 43 people who worked, largely unpaid and altruistically, to put out 201 commits containing 32944 new lines of code. We'd like to thank them very much for their time and effort. In alphabetical order they are:

    • dsc
    • Dusan Klinec
    • erciccione
    • Jethro Grassie
    • luigi1111
    • parasew
    • notmike
    • René Brunner
    • selsta
    • stoffu
    • TheCharlatan
    • thotbot
    • xiphon
    • Christoph Ono (UI/UX)
    • rating89us (UI/UX)
    • RealChacal (UI/UX)

    A special thanks to translators

    dskch83, Christian, M5M400, Sneaky Squid, Paul Rant, Andrew Onishi, Scott Anecito, el00ruobuob, glv2, Jonathan Heirbaut, siesero, erciccione, Luca Ciavatta, Alessandro Lotta, stefanomarty, vaa red, jindouyunz, TE Scott, razorshaman909, Assumpta Anglada, BennyBeat, Ecron, Joan Montané, Agent LvM, TheFuzzStone, Russian Bear, Lafudoci

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.15.0.1.exe(81.42 MB)
    monero-gui-linux-x64-v0.15.0.1.tar.bz2(110.50 MB)
    monero-gui-mac-x64-v0.15.0.1.tar.bz2(144.37 MB)
    monero-gui-win-x64-v0.15.0.1.zip(119.08 MB)
  • v0.14.1.0(Jun 29, 2019)

    Overview

    This is the v0.14.1.0 release of the Monero GUI software.

    The CLI release notes and downloads can be found on the release page here.

    Some highlights of this major release are:

    • White theme
    • Addressbook redesign
    • History redesign
    • Trezor Model T and Ledger Nano X support
    • Fiat price conversion
    • macOS fullscreen support
    • Various UI/UX improvments
    • Bug fixes and major performance improvements

    Contributors for this release

    This release was the direct result of 40 people who worked, largely unpaid and altruistically, to put out 133 commits containing 60,376 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • mmbyday
    • xiphon
    • dsc
    • selsta
    • Dusan Klinec
    • René Brunner
    • erciccione
    • lacksfish
    • MaxXor
    • Pavol Rusnak
    • cryptochangements34

    A special thanks to translators

    erciccione, ambystomamex, janowitz, Wiser, ithersta, cryptobot, ni311, vp11, KG, takuto-h, el00ruobuob, lafudoci, hugoncosta, xmoreee, 假聪教皇, Edwin den Boer, jalora, hrumag, 8uDD4T, kwukduck, 2Epic1, Febo, xClaw, Scott Anecito, simbadMarino, pipkin1981, Mathkamy, serhack, HellaTopKek, sx5486510

    Official Downloads

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-win-x64-v0.14.1.0.zip, cecb32d57684c9ec719f56ef72464413986d8bda93b2d5f51852eb1946e51993 monero-gui-mac-x64-v0.14.1.0.tar.bz2, b0d3f906265a27b2b60090466e693d7f15a00bb8d058d8fad89f0b10c50fe6ea monero-gui-linux-x64-v0.14.1.0.tar.bz2, 51739f0472ccbd49832a5828ca1000ebb1ce63b19dd57507b7905739bf8cf238

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-linux-x64-v0.14.1.0.tar.bz2(104.15 MB)
    monero-gui-mac-x64-v0.14.1.0.tar.bz2(137.45 MB)
    monero-gui-win-x64-v0.14.1.0.zip(110.62 MB)
  • v0.14.0.0(Mar 1, 2019)

    Overview

    This is the v0.14.0.0 release of the Monero GUI software. This major release is due to the March 9th network update, which in turn adds a new PoW based on Cryptonight-R, adds a new block weight algorithm, and introduces a slightly more efficient RingCT format.

    The CLI release notes and downloads can be found on the release page here.

    Some highlights of this major release are:

    • Revamped wizard
    • Addition of simple mode
    • Merchant page
    • Support for multiple accounts
    • Clipboard functionality
    • High DPI icons on macOS
    • Calender date for restore height
    • CSV export functionality for transaction history
    • Various UI/UX improvments
    • Bug fixes and performance improvements

    Contributors for this Release

    This release was the direct result of 80 people who worked, largely unpaid and altruistically, to put out 197 commits containing 85,654 new lines of code. We'd like to thank them very much for their time and effort. In no particular order they are:

    • mmbyday
    • dsc
    • selsta
    • xiphon
    • Sander Ferdinand
    • MoroccanMalinois
    • moneromooo-monero
    • Leza89
    • erciccione
    • Bertrand Jacquin
    • skftn
    • BigslimVdub
    • stoffu
    • Lafudoci
    • buricl
    • Dusan Klinec
    • Lunar
    • René Brunner
    • Aiden Scandella
    • Guillaume LE VAILLANT

    A special thanks to translators:

    erciccione, Leza89, ni311, whotheff, geomars, DrRac27, Lafudoci, Mattias Eriksson, duub qnnp, hrumag, TheFuzzStone, vp11, el00ruobuob, Keksoj, lafudoci, xmoreee, turossztrapacska, ni311, gorazdko, mercy, G, lh1008, obit33, noname, takuto-h, xClaw, JonkoXL, oldschooler, MalMen, 8uDD4T, MadCake92, xfix, Scott Anecito, hozgaguje, Pirula, cialu, Febo, John Smith, netrik182, coeurdelion, geonic, snowminal, Experts-say, janowitz, Osrsneedsf2p, willgood, Krakataua314, Evacryptos, AgentLvM, HellaTopKek, sigismina, slack, 假聪教皇, isaacdigs, BoostCookie, sgp, Fiva, serhack, ManDarijnen, Sinamu, jq8778, drinomarino, Mollie.Cormier, noxxi, 7cada, stardog, 7jaka7

    Official Download Links

    Download Hashes

    If you would like to verify that you have downloaded the correct file, please use the following SHA256 hashes:

    monero-gui-linux-x64-v0.14.0.0.tar.bz2, 3d03da7d1c6c6b8f0193729ac4e6b31788ee0aea9890e85770e8d62f3ec2558b monero-gui-linux-x86-v0.14.0.0.tar.bz2, b711e0b7222c3c701e3b9aa552fcb9d04425dfea2d04671409ea471f2b2c2dc2 monero-gui-mac-x64-v0.14.0.0.tar.bz2, b5d8150e5dc5edf4463eecd6a05faab1d868d04947181ef14db25f68eb238ea1 monero-gui-win-x64-v0.14.0.0.zip, c23c849a2a970370f2bf7e22aae34f633f51d8490b6130337e5fe9369aff77e0 monero-gui-install-win-x64-v0.14.0.0.zip, 4c0ceb81361a4b69bff6cd5a47ef94cfd2992796fb25ca3923aed51d6fcd48bd

    A GPG-signed list of the hashes is at https://getmonero.org/downloads/hashes.txt and should be treated as canonical, with the signature checked against the appropriate GPG key in the source code (in /utils/gpg_keys)

    Source code(tar.gz)
    Source code(zip)
    monero-gui-install-win-x64-v0.14.0.0.exe(101.81 MB)
    monero-gui-linux-x64-v0.14.0.0.tar.bz2(75.02 MB)
    monero-gui-linux-x86-v0.14.0.0.tar.bz2(76.86 MB)
    monero-gui-mac-x64-v0.14.0.0.tar.bz2(89.32 MB)
    monero-gui-win-x64-v0.14.0.0.zip(152.53 MB)
Owner
The Monero Project
The Monero Project
Monero: the secure, private, untraceable cryptocurrency

Monero GUI Copyright (c) 2014-2019, The Monero Project Table of Contents Development resources Vulnerability response Introduction About this project

The Monero Project 1.3k Jan 2, 2023
✔️The smallest header-only GUI library(4 KLOC) for all platforms

Welcome to GUI-lite The smallest header-only GUI library (4 KLOC) for all platforms. 中文 Lightweight ✂️ Small: 4,000+ lines of C++ code, zero dependenc

null 6.6k Jan 8, 2023
Easy to use cryptographic framework for data protection: secure messaging with forward secrecy and secure data storage. Has unified APIs across 14 platforms.

Themis provides strong, usable cryptography for busy people General purpose cryptographic library for storage and messaging for iOS (Swift, Obj-C), An

Cossack Labs 1.6k Jan 6, 2023
Simple EFI runtime driver that hooks GetVariable function and returns data expected by Windows to make it think that it's running with secure boot enabled (faking secure boot)

SecureFakePkg is a simple EFI runtime driver that hooks GetVariable function and returns data expected by Windows to make it think that it's running with secure boot enabled. In other words, it fakes secure boot status.

Samuel Tulach 80 Dec 30, 2022
Decentralized pool for Monero mining

Monero P2Pool Decentralized pool for Monero mining. NOTE This is a highly experimental and untested software. I did some extensive testing locally, bu

null 644 Jan 1, 2023
Mnemonic seed library for Monero and other CryptoNote-based currencies.

Features 16 mnemonic words (36% shorter than the original 25-word seed) embedded wallet birthday to optimize restoring from the seed supports encrypti

null 25 Dec 31, 2022
Feather is a free, open-source Monero wallet for Linux, Tails, macOS and Windows

Feather is a free, open-source Monero wallet for Linux, Tails, macOS and Windows. It is written in C++ with the Qt framework.

Feather Wallet 126 Dec 30, 2022
Upbit(업비트) Cryptocurrency Exchange Open API Client of Multi-Programming Language Support

Upbit Client Documents Support Upbit Client Upbit(업비트) Cryptocurrency Exchange API Client Description Upbit(업비트) Cryptocurrency Exchange Open API Clie

Yu Jhin 47 Dec 11, 2022
Dogecoin is a cryptocurrency like Bitcoin

Dogecoin is a cryptocurrency like Bitcoin, although it does not use SHA256 as its proof of work (POW). Taking development cues from Tenebrix and Litecoin, Dogecoin currently employs a simplified variant of scrypt.

Dogecoin 14.2k Jan 3, 2023
This project shows how to interface Nokia 5110 LCD with Esp32 module to show current prices of any cryptocurrency like Bitcoin, Dogecoin, etc

ESP32 Cryptocurreny Ticker Introduction This project shows how to interface Nokia 5110 LCD with Esp32 module to show current prices of any cryptocurre

Aniket Katkar 20 Jun 16, 2022
NanoSwift: A Swift Library for the Nano cryptocurrency

Nano is an instant, feeless and eco-friendly cryptocurrency that is also super easy to use. This library lets you create wallets, accounts and blocks as well as manage Nano amounts, interact with a node and more.

Christian 23 Mar 1, 2022
Dogecoin 2.0 is a cryptocurrency like Dogecoin

Dogecoin 2.0 is a cryptocurrency like Dogecoin - Dogecoin 2.0 currently uses POS (Proof of Stake).

Dogecoin 2.0 56 Aug 28, 2021
Simple C++ implementation of a blockchain based cryptocurrency

Welcome to PandaCoin! PandaCoin is a minimalist implementation of a layer 1 cryptocurrency similar to Bitcoin. It is designed with utmost simplicity a

null 21 Jan 7, 2023
A basic C++ cryptocurrency/block-chain. Includes a basic wallet system. See README.md for all the inclusions and future additions.

Cryptocurrency Project C++ cryptocurrency/block-chain. Mostly basic blockchain for now. New Additions are in the works(see below). This file details w

null 2 Dec 23, 2021
AstoriaCore is a customized Version of AzerothCore and the private source of WaloriaCore by Fractional aka Fred.

Community driven Classless MMO Framework. Proudly founded by Lushen and based on AzerothCore and TrinityCore ??

AstoriaCore 15 Apr 22, 2021
GTOS (Growtopia Private Server)'s latest source, everyone started selling so I decided to releasing it on github, enjoy it without spending your dls on that.

GTOSLatest GTOS (Growtopia Private Server)'s latest source, everyone started selling so we (Erben#1337 and Kaan#1337) decided to releasing it on githu

Kaan 20 Sep 9, 2022
APSI is a C++ library for Asymmetric (unlabeled or labeled) Private Set Intersection.

Private Set Intersection (PSI) refers to a functionality where two parties, each holding a private set of items, can check which items they have in common without revealing anything else to each other. Upper bounds on the sizes of the sets are assumed to be public information and are not protected.

Microsoft 112 Jan 6, 2023
A header-only version of Instagram Private API in C++

C++ Instagram API A header-only version of Instagram Private API in C++ Getting started. Writing your first bot General API Documentation Usage Error

Denis Beqiraj 36 Dec 1, 2022
Demonstrates implementation of the Windows 10 Acrylic Effect on C++ Win32 Apps using DWM Private APIs and Direct Composition

Win32 Acrylic Effect A Demonstration of Acrylic Effect on C++ Win32 applications using Direct Composition and DWM private APIs. Table of Contents Over

Selastin 132 Dec 21, 2022
i stole this from some guys private repo on github

.data-ptr-swap i stole this from some guys private repo on github This is Detected on Battleye(im suprised to silly bastine sutter) and Easy Anti Chea

null 28 Dec 12, 2022