mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
e4f7269587
Upgrade Nim compiler to 1.6. The necessary changes are related to how `for` loops now implicitly create a `lent` type, which is Nim's way of creating a "temporary" reference to an item inside a collection - this helps performance by avoiding a copy of the data, but it also means that the copy that previously was implicit in the for loop must be made explicit in the code.
104 lines
1.4 KiB
Plaintext
104 lines
1.4 KiB
Plaintext
/Status
|
|
/data
|
|
noBackup/
|
|
.idea
|
|
*.pro.user
|
|
*.pro.autosave
|
|
*.qml.autosave
|
|
*.log
|
|
.update.timestamp
|
|
.vscode
|
|
*.code-workspace
|
|
.tours
|
|
bin/
|
|
/bottles/
|
|
pkg/
|
|
vendor/.nimble
|
|
*.AppImage
|
|
tmp
|
|
nimcache
|
|
.DS_Store
|
|
nim-status-client*.tgz
|
|
node_modules
|
|
npm-debug.log*
|
|
npm-shrinkwrap.json
|
|
/package/
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
yarn.lock
|
|
TODO
|
|
resources.rcc
|
|
ui/resources.qrc
|
|
status-react-translations/
|
|
/.update.timestamp
|
|
notarization.log
|
|
status-desktop.log
|
|
nim_status_client.log
|
|
*.csv
|
|
|
|
# Squish test ================================================================
|
|
|
|
**/fixtures/*/ethereum
|
|
**/fixtures/*/ipfs
|
|
|
|
test/ui-test/testSuites/suite_status/config.xml
|
|
test/ui-test/testSuites/*/envvars
|
|
test/ui-test/**/__pycache__/*
|
|
|
|
# CPP app =====================================================================
|
|
|
|
|
|
# https://github.com/github/gitignore/blob/master/CMake.gitignore
|
|
CMakeLists.txt.user
|
|
CMakeCache.txt
|
|
CMakeFiles
|
|
CMakeScripts
|
|
Testing
|
|
Makefile
|
|
cmake_install.cmake
|
|
install_manifest.txt
|
|
compile_commands.json
|
|
CTestTestfile.cmake
|
|
_deps
|
|
.cache/
|
|
|
|
# QtCreator shadow builds (StatusQ/demo)
|
|
build-*/
|
|
# CMake default build directory
|
|
build/
|
|
|
|
# https://github.com/github/gitignore/blob/master/C%2B%2B.gitignore
|
|
# Prerequisites
|
|
*.d
|
|
|
|
# Compiled Object files
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
*.obj
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
|
|
# Compiled Dynamic libraries
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# Fortran module files
|
|
*.mod
|
|
*.smod
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
*.la
|
|
*.a
|
|
*.lib
|
|
|
|
# Executables
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
nimbus-build-system.paths
|