forked from ConcealNetwork/conceal-desktop
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1a29594
Showing
262 changed files
with
39,244 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[submodule "cryptonote"] | ||
path = cryptonote | ||
url = https://github.com/TheCircleFoundation/concealx | ||
[submodule "libqrencode"] | ||
path = libqrencode | ||
url = https://github.com/fukuchi/libqrencode | ||
branch = 3.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Copyright (c) 2011-2017 The Cryptonote developers | ||
Copyright (c) 2014-2017 XDN developers | ||
Copyright (c) 2018 The Circle Foundation | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Copyright: | ||
|
||
© 2011-2017 The Cryptonote developers | ||
© 2014-2016 XDN developers | ||
© 2016-2017 Krypt0x | ||
© 2017-2018 The Circle Foundation | ||
© 2017-2018 The Circle Team & Conceal Developers | ||
|
||
License: | ||
|
||
MIT | ||
|
||
Permission is hereby granted, free of charge, to any person | ||
obtaining a copy of this software and associated documentation | ||
files (the "Software"), to deal in the Software without | ||
restriction, including without limitation the rights to use, copy, | ||
modify, merge, publish, distribute, sublicense, and/or sell copies | ||
of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
. | ||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT | ||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
DEALINGS IN THE SOFTWARE. |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
set(CN_PROJECT_NAME "CONCEAL-GUI") | ||
set(CN_CURRENCY_DISPLAY_NAME "Conceal") | ||
set(CN_CURRENCY_TICKER "CCX") | ||
set(CN_VERSION 4.0.2) |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
all: all-release | ||
|
||
cmake-debug: | ||
mkdir -p build/debug | ||
cd build/debug && cmake -D CMAKE_BUILD_TYPE=Debug ../.. | ||
|
||
build-debug: cmake-debug | ||
cd build/debug && $(MAKE) | ||
|
||
test-debug: build-debug | ||
cd build/debug && $(MAKE) test | ||
|
||
all-debug: build-debug | ||
|
||
cmake-release: | ||
mkdir -p build/release | ||
cd build/release && cmake -D CMAKE_BUILD_TYPE=Release ../.. | ||
|
||
build-release: cmake-release | ||
cd build/release && $(MAKE) | ||
|
||
test-release: build-release | ||
cd build/release && $(MAKE) test | ||
|
||
all-release: build-release | ||
|
||
package-deb: cmake-release | ||
mkdir -p build/release | ||
cd build/release && cmake -D CMAKE_BUILD_TYPE=Release ../.. | ||
cd build/release && $(MAKE) package | ||
|
||
package-rpm: | ||
mkdir -p build/release | ||
cd build/release && cmake -D CMAKE_BUILD_TYPE=Release -D PACKRPM=1 ../.. | ||
cd build/release && $(MAKE) package | ||
|
||
clean: | ||
rm -rf build | ||
|
||
tags: | ||
ctags -R --sort=1 --c++-kinds=+p --fields=+iaS --extra=+q --language-force=C++ src contrib tests/gtest | ||
|
||
.PHONY: all cmake-debug build-debug test-debug all-debug cmake-release build-release test-release all-release clean tags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
set(QRENCODE_LIB qrencode) | ||
|
||
file(GLOB QRENCODE_SOURCES RELATIVE ${CMAKE_SOURCE_DIR} libqrencode/*.c) | ||
list(REMOVE_ITEM QRENCODE_SOURCES libqrencode/qrenc.c) | ||
file(GLOB QRENCODE_HEADERS libqrencode/*.h) | ||
|
||
list(APPEND my_definitions "__STATIC=static") | ||
list(APPEND my_definitions "MAJOR_VERSION=3") | ||
list(APPEND my_definitions "MINOR_VERSION=4") | ||
list(APPEND my_definitions "MICRO_VERSION=0") | ||
if(WIN32) | ||
list(APPEND my_definitions "inline=__inline") | ||
endif(WIN32) | ||
add_library(${QRENCODE_LIB} ${QRENCODE_SOURCES} ${QRENCODE_HEADERS}) | ||
set_target_properties(${QRENCODE_LIB} PROPERTIES COMPILE_DEFINITIONS "${my_definitions}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
![image](https://github.com/TheCircleFoundation/conceal-assets/blob/master/splash.png) | ||
|
||
# Conceal GUI | ||
Latest Release: v.4.0.2 | ||
Maintained by The Circle Team. | ||
|
||
## Information | ||
Conceal is a free open source privacy protected peer-to-peer digital cash system that is completely decentralized, without the need for a central server or trusted parties. Users hold the crypto keys to their own money and transact directly with each other, with the help of a P2P network to check for double-spending. Conceal has a decentralized blockchain banking in its core and instant untraceable crypto messages that can be decrypted with recipients private key. | ||
|
||
## Resources | ||
- Web: [conceal.network](https://conceal.network/) | ||
- GitHub: [https://github.com/TheCircleFoundation/conceal-cli](https://github.com/TheCircleFoundation/conceal-cli) | ||
- Discord: [https://discord.gg/YbpHVSd](https://discord.gg/YbpHVSd) | ||
- Twitter: [https://twitter.com/ConcealNetwork](https://twitter.com/ConcealNetwork) | ||
- Medium: [https://medium.com/@ConcealNetwork](https://medium.com/@ConcealNetwork) | ||
- Reddit: [https://www.reddit.com/r/ConcealNetwork/](https://www.reddit.com/r/ConcealNetwork/) | ||
- Bitcoin Talk: [https://bitcointalk.org/index.php?topic=4515873](https://bitcointalk.org/index.php?topic=4515873) | ||
- Paperwallet: [https://paperwallet.conceal.network/](https://paperwallet.conceal.network/) | ||
|
||
## Compiling Conceal from source | ||
|
||
### Linux / Ubuntu | ||
|
||
##### Prerequisites | ||
|
||
Dependencies: GCC 4.7.3 or later, CMake 2.8.6 or later, Boost 1.55 or later, and Qt 5.9 or later. | ||
You may download them from: | ||
|
||
- http://gcc.gnu.org/ | ||
- http://www.cmake.org/ | ||
- http://www.boost.org/ | ||
- https://www.qt.io | ||
|
||
Alternatively, it may be possible to install them using a package manager. | ||
|
||
#### Building | ||
|
||
To acquire the source via git and build the release version, run the following commands: | ||
|
||
- `cd ~` | ||
- `git clone https://github.com/TheCircleFoundation/conceal-gui` | ||
- `cd conceal-gui` | ||
- `git submodule add https://github.com/TheCircleFoundation/conceal-cli.git cryptonote` | ||
- `make build-release` | ||
- `mkdir bin && mv build/release/CONCEAL-GUI bin/` | ||
- `make clean` | ||
|
||
If the build is successful the binaries will be in the bin folder. | ||
|
||
### Windows 10 | ||
|
||
##### Prerequisites | ||
|
||
- Install [Visual Studio 2017 Community Edition](https://www.visualstudio.com/thank-you-downloading-visual-studio/?sku=Community&rel=15&page=inlineinstall) | ||
- When installing Visual Studio, you need to install **Desktop development with C++** and the **VC++ v140 toolchain** components. The option to install the v140 toolchain can be found by expanding the "Desktop development with C++" node on the right. You will need this for the project to build correctly. | ||
- Install [CMake](https://cmake.org/download/) | ||
- Install [Boost 1.67.0](https://boost.teeks99.com/bin/1.67.0/), ensuring you download the installer for MSVC 14.1. | ||
- Install [Qt 5.11.0](https://www.qt.io/download) | ||
|
||
##### Building | ||
|
||
- From the start menu, open 'x64 Native Tools Command Prompt for vs2017' or run "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsMSBuildCmd.bat" from any command prompt. | ||
- Edit the CMakeLists.txt file and set the path to QT cmake folder. For exampple: set(CMAKE_PREFIX_PATH "C:\\Qt\\5.11.0\\msvc2017_64\\lib\\cmake\\"). | ||
- Copy the contents of the conceal-cli folder into conceal-gui\cryptonote | ||
- `cd conceal-gui` | ||
- `mkdir build` | ||
- `cd build` | ||
- `cmake -G "Visual Studio 15 2017 Win64" -DBOOST_LIBRARYDIR:PATH=c:/local/boost_1_67_0 ..` (Or your boost installed dir.) | ||
- `msbuild CONCEAL-GUI.sln /p:Configuration=Release` | ||
|
||
If the build is successful the binaries will be in the Release folder. | ||
|
||
#### Special Thanks | ||
Special thanks goes out to the developers from Cryptonote, Bytecoin, Monero, Forknote, TurtleCoin, and Masari. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Build | ||
*.ycm_extra_conf.py | ||
*.ycm_extra_conf.pyc | ||
|
||
build/ | ||
tags/ | ||
Release/ | ||
Debug/ | ||
CMakeFiles/ | ||
|
||
# Mac OS | ||
*.DS_Store | ||
|
||
# Other | ||
*.idea | ||
*.a | ||
|
||
version/ | ||
|
||
miniupnpcstrings.h | ||
compile_commands.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
*.gcno | ||
*.gcov | ||
*.gcda | ||
.deps/ | ||
.libs/ | ||
autom4te.cache/ | ||
m4/ | ||
Makefile | ||
Makefile.in | ||
config.log | ||
configure | ||
config.status | ||
config.h | ||
config.h.in | ||
aclocal.m4 | ||
libtool | ||
stamp-h1 | ||
qrencode | ||
qrencode.1 | ||
qrencode.spec | ||
libqrencode.pc | ||
tests/create_frame_pattern | ||
tests/create_mqr_frame_pattern | ||
tests/frame | ||
tests/mqrframe | ||
tests/pthread_qrencode | ||
tests/prof_qrencode | ||
tests/test_bitstream | ||
tests/test_estimatebit | ||
tests/test_mask | ||
tests/test_mmask | ||
tests/test_monkey | ||
tests/test_mqrspec | ||
tests/test_qrencode | ||
tests/test_qrinput | ||
tests/test_qrspec | ||
tests/test_rs | ||
tests/test_split | ||
tests/view_qrcode | ||
use/compile | ||
use/config.guess | ||
use/config.sub | ||
use/depcomp | ||
use/install-sh | ||
use/ltmain.sh | ||
use/missing |
Oops, something went wrong.