Skip to content

Commit

Permalink
STRAKS 1.14.5.0 First Release
Browse files Browse the repository at this point in the history
  • Loading branch information
squbs committed Nov 20, 2017
0 parents commit 33a0561
Show file tree
Hide file tree
Showing 1,755 changed files with 612,240 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/version.cpp export-subst
114 changes: 114 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
*.tar.gz

*.exe
src/straks
src/straksd
src/straks-cli
src/straks-tx
src/test/test_straks
src/qt/test/test_straks-qt

squbs
libtool

Makefile.in
aclocal.m4
autom4te.cache/
config.log
config.status
configure
src/straks-config.h
src/straks-config.h.in
src/build-aux/
src/stamp-h1
share/setup.nsi
share/qt/Info.plist

src/qt/*.moc
src/qt/moc_*.cpp
src/qt/forms/ui_*.h

src/qt/test/moc*.cpp

.la
.lo
.so.*
.so
src/.libs
.libs
.deps
.dirstamp
.*.swp
*.*~*
*.bak
*.rej
*.orig
*.o
*.o-*
*.patch
.straks
*.a
*.pb.cc
*.pb.h

*.log
*.trs
*.dmg

*.json.h
*.raw.h

# Compilation and Qt preprocessor part
*.qm
Makefile
straks-qt
Straks-Qt.app

# Unit-tests
Makefile.test
straks-qt_test

# Resources cpp
qrc_*.cpp

# Qt creator
*.pro.user
darkcoi*.config
*.creator
*.creator.user
darkcoi*.files
darkcoi*.includes

# Mac specific
.DS_Store
build

#lcov
*.gcno
/*.info
test_straks.coverage/
total.coverage/
coverage_percent.txt

#build tests
linux-coverage-build
linux-build
win32-build
qa/pull-tester/run-straksd-for-test.sh
qa/pull-tester/build-tests.sh

!src/leveldb*/Makefile

.cproject
.project
*.db
*.db
*.db

src/consensus/*.lo
src/crypto/Lyra2RE/*.lo
src/crypto/*.lo
src/libstraksconsensus.la
src/*.lo
src/primitives/*.lo
src/script/*.lo
26 changes: 26 additions & 0 deletions COPYING
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
The MIT License (MIT)

Copyright (c) 2009-2017 STRAKS Core Developers
Copyright (c) 2014-2015 Dash Core Developers
Copyright (c) 2014 Doge Core Developers
Copyright (c) 2013 Dr Kimoto Chan
Copyright (c) 2014-2015 LIMX Core Developers
Copyright (c) 2017 STRAKS Core Developers

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.
16 changes: 16 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Building STRAKS

Use the autogen script to prepare the build environment.

./autogen.sh
./configure
make

Precompiled binaries are available at github, see
https://github.com/straks/straks/releases

Always verify the signatures and checksums.

See doc/build-*.md for instructions on building straks-qt,
the intended-for-services, no-graphical-interface, reference
implementation of STRAKS.
Loading

0 comments on commit 33a0561

Please sign in to comment.