Skip to content

Commit b6a6997

Browse files
committed
Committing Gridcoin Research Branch
1 parent 74ff8c8 commit b6a6997

File tree

879 files changed

+372691
-55
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

879 files changed

+372691
-55
lines changed

.gitattributes

+1-21
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,2 @@
1-
# Auto detect text files and perform LF normalization
2-
* text=auto
1+
src/version.cpp export-subst
32

4-
# Custom for Visual Studio
5-
*.cs diff=csharp
6-
*.sln merge=union
7-
*.csproj merge=union
8-
*.vbproj merge=union
9-
*.fsproj merge=union
10-
*.dbproj merge=union
11-
12-
# Standard to msysgit
13-
*.doc diff=astextplain
14-
*.DOC diff=astextplain
15-
*.docx diff=astextplain
16-
*.DOCX diff=astextplain
17-
*.dot diff=astextplain
18-
*.DOT diff=astextplain
19-
*.pdf diff=astextplain
20-
*.PDF diff=astextplain
21-
*.rtf diff=astextplain
22-
*.RTF diff=astextplain

.gitignore

+40-34
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,42 @@
1-
# Windows image file caches
2-
Thumbs.db
3-
ehthumbs.db
4-
5-
# Folder config file
6-
Desktop.ini
7-
8-
# Recycle Bin used on file shares
9-
$RECYCLE.BIN/
10-
11-
# Windows Installer files
12-
*.cab
13-
*.msi
14-
*.msm
15-
*.msp
16-
17-
# =========================
18-
# Operating System Files
19-
# =========================
20-
21-
# OSX
22-
# =========================
23-
1+
src/*.exe
2+
src/gridccoinstake
3+
src/gridcoinresearchd
4+
src/test_gridcoin
5+
src/build.h
6+
contrib/deprecated
7+
contrib/deprecated/bin
8+
release
9+
.*.swp
10+
*.*~*
11+
*.bak
12+
*.rej
13+
*.orig
14+
*.o
15+
*.pdb
16+
*.patch
17+
*.pgp
18+
*.gpg
19+
*.exe
20+
*.dll
21+
*.cache
22+
*.user
23+
*.force
24+
*.suo
25+
*.scc
26+
gridcoinresearch.zip
27+
.gridcoin
28+
.gridcoinresearch
29+
#compilation and Qt preprocessor part
30+
*.qm
31+
Makefile
32+
gridcoin-qt
33+
gridcoinresearch
34+
#resources cpp
35+
qrc_*.cpp
36+
#qt creator
37+
*.pro.user
38+
#mac specific
2439
.DS_Store
25-
.AppleDouble
26-
.LSOverride
40+
build
2741

28-
# Icon must ends with two \r.
29-
Icon
30-
31-
# Thumbnails
32-
._*
33-
34-
# Files that might appear on external disk
35-
.Spotlight-V100
36-
.Trashes
42+
!src/leveldb/Makefile

COPYING

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Copyright (c) 2014 Black-Coin Developers
2+
Copyright (c) 2013-2014 NovaCoin Developers
3+
Copyright (c) 2011-2012 PPCoin Developers
4+
Copyright (c) 2009-2014 Bitcoin Developers
5+
Copyright (c) 2014-2016 Gridcoin Developers
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in
15+
all copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23+
THE SOFTWARE.

INSTALL

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Building GridCoin
2+
3+
See doc/readme-qt.rst for instructions on building GridCoin QT,
4+
the intended-for-end-users, nice-graphical-interface, reference
5+
implementation of GridCoin.
6+
7+
See doc/build-*.txt for instructions on building gridcoind,
8+
the intended-for-services, no-graphical-interface, reference
9+
implementation of GridCoin.

0 commit comments

Comments
 (0)