aboutsummaryrefslogtreecommitdiff
path: root/src/main/oshelper.cpp
Commit message (Collapse)AuthorAgeFilesLines
* wizard: check wallet file directory is writeableplowsof2026-06-251-0/+6
|
* WizardController: set password for temp walletselsta2026-01-191-0/+14
|
* fix testnet address checkpreland2025-02-141-1/+1
|
* macOS: remove deprecated screenshot functiontobtoht2024-08-091-4/+0
|
* Update year in Cypyrightinson12024-01-271-1/+1
|
* wizard: redesign seed pagerating89us2023-02-121-0/+18
| | | | | | | | | - move mnemonic seed - restore height into a separate page - pdf template - seed verification - responsive UI - accessibility
* open-wallet: set network type when using file browserplowsof2022-12-281-0/+33
| | | | Co-authored-by: selsta <selsta@users.noreply.github.com>
* oshelper: fix openContainingFolder on Linuxselsta2022-06-271-1/+1
|
* OSHelper: Linux - fix isCapsLock memory leakxiphon2021-02-031-0/+1
|
* Transfer: implement 'Grab QR code from screen' functionalityxiphon2021-01-111-0/+60
|
* main: Linux - ask to create desktop entry on the first startxiphon2020-11-301-0/+9
|
* oshelper: 'shlobj.h' include should be lower casexiphon2020-09-101-1/+1
|
* oshelper: always convert to canonical path in openContainingFolderxiphon2020-08-061-4/+5
|
* checkUpates: installer support (Win), use GUI buildTag and versionxiphon2020-04-231-0/+45
|
* UpdateDialog: implement update download functionalityxiphon2020-04-061-0/+13
|
* OSHelper: file preselection support (Windows and Mac)xiphon2019-12-121-8/+46
| | | | Co-authored-by: selsta <selsta@sent.at>
* SettingsInfo: open containing folder on wallet log path clickxiphon2019-12-121-0/+16
|
* Migrate build system to cmakeTheCharlatan2019-11-271-0/+99
The content in this commit is not split in order to preserve working compilation. Once this is added to master, the old build script will no longer work and all existing build toolings will require changes. Monero's cmake directory's files need to be copied to this project's cmake directory in order for the linking and function definitions to work correctly. Monero-gui has its own version check and generate file in order to not conflict with monero's destination version files. Most of the source files that are currently in monero-gui's root directory are now moved to subdirectories. This is done to preserve compilation order properly and to give some content structure. The original CMakeList file included all headers it found in subdirectories. Make sure that they are set manually to evade linking errors. The current build script always checks out latest master of the monero submodule. The submodule rules in the current CMakeLists.txt file do not enforce. An override to compile master nevertheless can still be given with `-D DEV_MODE`. To enable the linux X11 xcb linking the libraries had to be hardcoded. There does not seem to be good support for this in pkgconfig, or in existing cmake checks.