Status Desktop client made in Nim & QML https://status.app
Go to file
Alexandra Betouni fdb1f375ab fix(CreateChatView): Members should show online status
Closes #5625
2022-05-19 13:45:08 +03:00
.github
build
ci
cmake
resources feat: use ipfs rate limiter 2022-05-12 15:07:29 -04:00
scripts
spellchecking@f1a88d1147
src fix(@ens): get pubkey return the prefix 2022-05-18 14:21:06 +02:00
src-cpp
test/ui-test chore(ui-test): Added data folder 2022-05-10 15:16:33 +02:00
test-cpp
test-scripts
ui fix(CreateChatView): Members should show online status 2022-05-19 13:45:08 +03:00
vendor feat(@desktop/wallet): Add has activity to the derived addresses in wallet 2022-05-18 14:16:57 +02:00
.clang-format
.clang-tidy
.gitignore fix(@desktop/chat): fix chat member getter for community 2022-05-12 12:41:42 -04:00
.gitmodules
.npmrc
.yarnrc
AppRun
CMakeLists.txt
Info.dev.plist
Info.plist
LICENSE.md
Makefile
QtWebEngineProcess.plist
README.md
VERSION release(@desktop): 0.5.0 beta 2022-05-17 17:13:25 -04:00
build-linux.sh
cacert.pem
conanfile.py
config.nims
docker-linux-app-image.sh
env.sh
fleets.json
nim-status.desktop
nim.cfg
nim_status_client.nimble
package-lock.json
package.json
screenshot.png
status-dev.icns
status-dev.svg
status-macos-dev.svg
status-macos.ico
status-macos.svg
status.icns
status.ico
status.iss
status.svg
windows-install.txt

README.md

Status-desktop

Desktop client for the Status Network built with Nim and Qt

https://github.com/status-im/nim-status-client/blob/master/screenshot.png

Dev Docs: https://hackmd.io/@status-desktop/B1naRjxh_/https%3A%2F%2Fhackmd.io%2F%40status-desktop%2FB1eOaf-nd

CPP App

Setup Linux:

  1. conancenter Execute conan remote list. It should return this line among the results.
conancenter: https://center.conan.io [Verify SSL: True]

If it doesnt, consider upgrading conan with pip install conan --upgrade and then executing. conan remote add -i 0 conancenter https://center.conan.io . See conan's documentation for more info.

  1. conan libstdc++11 This applies to linux: the default conan profile does not work, since GCC uses the new C++ ABI since version 5.1 and conan, for compatibility purposes uses the old C++ ABI. Execute this to update the profile:
conan profile update settings.compiler.libcxx=libstdc++11 default
  1. Install dependencies:
cd build
conan install .. -s build_type=Release --build=missing

Setup OS X:

  1. Create conan profile ~/.conan/profiles/clang:
[settings]
compiler=apple-clang
compiler.version=12.0
compiler.libcxx=libc++
arch=x86_64
os=Macos
build_type=Release

[env]
CC=/usr/bin/clang
CXX=/usr/bin/clang++
  1. Install dependecies:
cd build
conan install .. --profile=clang --build=missing

Buid & test & run:

conan build ..
ctest -VV -C Release
./status-desktop

Instead of conan build .. CMake may be used:

cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake
cmake --build . --config Release