Status Desktop client made in Nim & QML https://status.app
Go to file
Noelia 65e91fac44 fix(ActivityCenter): Activity center button is not active when activity center is opened
The button is now in highlighted state when it's active.

Fixes #6119
2022-06-27 07:54:13 +02:00
.github
build
ci ci: remove caching of dependencies 2022-04-15 12:45:27 +02:00
cmake chores(@general): remove status-lib deps 2022-02-03 11:52:45 -05:00
resources feat: use ipfs rate limiter 2022-05-12 15:07:29 -04:00
scripts chore: create script to bump status-go 2022-06-14 16:11:51 -04:00
spellchecking@f1a88d1147
src feat(@community): Add tags to communities 2022-06-24 19:44:35 +03:00
src-cpp feat(desktop/general): app support for status-im:// URIs - mac 2022-06-01 08:42:57 +02:00
test/ui-test feat(@DesktopApp): Refactor Login Steps 2022-06-23 13:47:11 +01:00
test-cpp
test-scripts chores(@general): remove status-lib deps 2022-02-03 11:52:45 -05:00
ui fix(ActivityCenter): Activity center button is not active when activity center is opened 2022-06-27 07:54:13 +02:00
vendor feat(@community): Add tags to communities 2022-06-24 19:44:35 +03:00
.clang-format style(@desktop/cpp): apply clang-format on src-cpp/* 2022-02-21 19:55:01 +01:00
.clang-tidy refactor(@desktop/cpp): improve cpp code 2022-03-01 16:05:21 +01:00
.gitignore fix(EditCroppedImagePanel): update position following changes in StatusQ 2022-05-31 12:26:33 +03:00
.gitmodules chores(@general): remove status-lib deps 2022-02-03 11:52:45 -05:00
.npmrc
.yarnrc
AppRun
CMakeLists.txt refactor(@desktop/cpp): improve cpp code 2022-03-01 16:05:21 +01:00
Info.dev.plist feat(desktop/general): app support for status-im:// URIs - mac 2022-06-01 08:42:57 +02:00
Info.plist feat(desktop/general): app support for status-im:// URIs - mac 2022-06-01 08:42:57 +02:00
LICENSE.md
Makefile feature(desktop/general): Display mentions number on tray icon badge. 2022-05-26 14:16:00 +02:00
QtWebEngineProcess.plist
README.md chore(cpp-app): Add instructions to build app for MacOS 2022-02-24 11:19:45 -05:00
VERSION release(@desktop): 0.5.0 beta 2022-05-17 17:13:25 -04:00
build-linux.sh fix: code review 2022-03-10 14:12:11 -04:00
cacert.pem
conanfile.py
config.nims
docker-linux-app-image.sh
env.sh
fleets.json chore: add status.prod fleet 2022-03-11 15:52:47 -05:00
nim-status.desktop
nim.cfg build system refactoring 2020-06-08 13:07:25 -04:00
nim_status_client.nimble
package-lock.json chore(@desktop/general): Upgrade fileicon to v. 0.3.0 2022-04-11 12:18:54 -04:00
package.json chore(@desktop/general): Upgrade fileicon to v. 0.3.0 2022-04-11 12:18:54 -04:00
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