Skip to content

Commit

Permalink
Bump to version v2.13.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
michelvankessel committed Feb 23, 2022
2 parents 2be81b8 + e07507d commit 70ecba1
Show file tree
Hide file tree
Showing 808 changed files with 49,421 additions and 29,223 deletions.
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!-- This issue tracker is only for technical issues related to Blackcoin More.
General blackcoin questions and/or support requests are best directed to the Blackcoin Discord server at https://discord.gg/hjNUgWD
If the node is "stuck" during sync or giving "block checksum mismatch" errors, please ensure your hardware is stable by running memtest and observe CPU temperature with a load-test tool such as linpack before creating an issue!
-->

<!-- Describe the issue -->
<!--- What behavior did you expect? -->

<!--- What was the actual behavior (provide screenshots if the issue is GUI-related)? -->

<!--- How reliably can you reproduce the issue, what are the steps to do so? -->

<!-- What version of Blackcoin More are you using, where did you get it (website, self-compiled, etc)? -->

<!-- What type of machine are you observing the error on (OS/CPU and disk type)? -->

<!-- GUI-related issue? What is your operating system and its version? If Linux, what is your desktop environment and graphical shell? -->

<!-- Any extra information that might be useful in the debugging process. -->
<!--- This is normally the contents of a `debug.log` or `config.log` file. Raw text or a link to a pastebin type site are preferred. -->
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
name: Bug report
about: Create a report to help us improve (use this for suspected bugs only, if not sure, open a regular issue below)
title: ''
labels: Bug
assignees: ''

---

<!-- This issue tracker is only for technical issues related to Blackcoin More.
General bitcoin questions and/or support requests are best directed to the Blackcoin Discord server at https://discord.gg/hjNUgWD
If the node is "stuck" during sync or giving "block checksum mismatch" errors, please ensure your hardware is stable by running memtest and observe CPU temperature with a load-test tool such as linpack before creating an issue! -->

<!-- Describe the issue -->

**Expected behavior**

<!--- What behavior did you expect? -->

**Actual behavior**

<!--- What was the actual behavior (provide screenshots if the issue is GUI-related)? -->

**To reproduce**

<!--- How reliably can you reproduce the issue, what are the steps to do so? -->

**System information**

<!-- What version of Blackcoin More are you using, where did you get it (website, self-compiled, etc)? -->

<!-- What type of machine are you observing the error on (OS/CPU and disk type)? -->

<!-- GUI-related issue? What is your operating system and its version? If Linux, what is your desktop environment and graphical shell? -->

<!-- Any extra information that might be useful in the debugging process. -->
<!--- This is normally the contents of a `debug.log` or `config.log` file. Raw text or a link to a pastebin type site are preferred. -->
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: Feature
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->

**Describe the solution you'd like**
<!-- A clear and concise description of what you want to happen. -->

**Describe alternatives you've considered**
<!-- A clear and concise description of any alternative solutions or features you've considered. -->

**Additional context**
<!-- Add any other context or screenshots about the feature request here. -->
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/good_first_issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Good first issue
about: '(Regular devs only): Suggest a new good first issue'
title: ''
labels: ''
assignees: ''

---

<!-- Needs the label "good first issue" assigned manually before or after opening -->

<!-- A good first issue is an uncontroversial issue, that has a relatively unique and obvious solution -->

<!-- Motivate the issue and explain the solution briefly -->

#### Useful skills:

<!-- (For example, “C++11 std::thread”, “Qt5 GUI and async GUI design” or “basic understanding of Blackcoin staking and the Blackcoin More RPC interface”.) -->

#### Want to work on this issue?

For guidance on contributing, please read [CONTRIBUTING.md](https://gitlab.com/blackcoin/blackcoin-more/blob/master/CONTRIBUTING.md) before opening your pull request.
41 changes: 41 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!--
*** Please remove the following help text before submitting: ***
Pull requests without a rationale and clear improvement may be closed
immediately.
first. See CONTRIBUTING.md
-->

<!--
Please provide clear motivation for your patch and explain how it improves
Blackcoin More user experience or Blackcoin More developer experience
significantly:
* Any test improvements or new tests that improve coverage are always welcome.
* All other changes should have accompanying unit tests (see `src/test/`) or
functional tests (see `test/`). Contributors should note which tests cover
modified code. If no tests exist for a region of modified code, new tests
should accompany the change.
* Bug fixes are most welcome when they come with steps to reproduce or an
explanation of the potential issue as well as reasoning for the way the bug
was fixed.
* Features are welcome, but might be rejected due to design or scope issues.
If a feature is based on a lot of dependencies, contributors should first
consider building the system outside of Blackcoin More, if possible.
* Refactoring changes are only accepted if they are required for a feature or
bug fix or otherwise improve developer experience significantly. For example,
most "code style" refactoring changes require a thorough explanation why they
are useful, what downsides they have and why they *significantly* improve
developer experience or avoid serious programming bugs. Note that code style
is often a subjective matter. Unless they are explicitly mentioned to be
preferred in the [developer notes](/doc/developer-notes.md), stylistic code
changes are usually rejected.
-->

<!--
Blackcoin More has a thorough review process and even the most trivial change
needs to pass a lot of eyes and requires non-zero or even substantial time
effort to review. There is a huge lack of active reviewers on the project, so
patches often sit for a long time.
-->
85 changes: 63 additions & 22 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
*.tar.gz

*.exe
src/blackmore
src/blackmored
src/blackmore-cli
src/blackmore-tx
src/test/test_blackmore
src/qt/test/test_blackmore-qt
*.pdb
src/bitcoin
src/bitcoind
src/bitcoin-cli
src/bitcoin-gui
src/bitcoin-node
src/bitcoin-tx
src/bitcoin-util
src/bitcoin-wallet
src/test/fuzz/fuzz
src/test/test_bitcoin
src/qt/test/test_bitcoin-qt

# autoreconf
Makefile.in
Expand Down Expand Up @@ -45,17 +51,17 @@ src/qt/forms/ui_*.h

src/qt/test/moc*.cpp

src/qt/blackmore-qt.config
src/qt/blackmore-qt.creator
src/qt/blackmore-qt.creator.user
src/qt/blackmore-qt.files
src/qt/blackmore-qt.includes
src/qt/bitcoin-qt.config
src/qt/bitcoin-qt.creator
src/qt/bitcoin-qt.creator.user
src/qt/bitcoin-qt.files
src/qt/bitcoin-qt.includes

.deps
.dirstamp
.libs
.*.swp
*.*~*
*~
*.bak
*.rej
*.orig
Expand All @@ -70,6 +76,7 @@ src/qt/blackmore-qt.includes
*.log
*.trs
*.dmg
*.iso

*.json.h
*.raw.h
Expand All @@ -86,17 +93,16 @@ src/qt/blackmore-qt.includes
*.qm
Makefile
!depends/Makefile
src/qt/blackmore-qt
Blackmore-Qt.app
src/qt/bitcoin-qt
Bitcoin-Qt.app
background.tiff*

# Qt Creator
Makefile.am.user

# Unit-tests
Makefile.test
blackmore-qt_test
src/test/buildenv.py
bitcoin-qt_test

# Resources cpp
qrc_*.cpp
Expand All @@ -114,16 +120,18 @@ releases
/*.info
test_bitcoin.coverage/
total.coverage/
fuzz.coverage/
coverage_percent.txt
/cov_tool_wrapper.sh
qa-assets/

#build tests
linux-coverage-build
linux-build
win32-build
test/config.ini
test/cache/*
qa/pull-tester/run-bitcoind-for-test.sh
qa/pull-tester/tests_config.py
test/.mypy_cache/

!src/leveldb*/Makefile

Expand All @@ -132,13 +140,46 @@ qa/pull-tester/tests_config.py
libbitcoinconsensus.pc
contrib/devtools/split-debug.sh

#Visual Studio
.vscode/*
.vs/*
# Output from running db4 installation
db4/

# clang-check
*.plist

osx_volname
dist/
*.background.tiff
*.background.tiff

/guix-build-*

# Blackcoin More
src/blackmore
src/blackmored
src/blackmore-cli
src/blackmore-tx
src/test/test_blackmore
src/qt/blackmore-qt_test
src/qt/test/test_blackmore-qt
qa/pull-tester/run-bitcoind-for-test.sh
qa/pull-tester/tests_config.py


#Visual Studio
.vscode/*
.vs/*

# Output from running db6 installation
db6/

# Unit-tests

src/test/buildenv.py

# Compilation and Qt preprocessor part
src/qt/blackmore-qt
Blackmore-Qt.app
src/qt/blackmore-qt.config
src/qt/blackmore-qt.creator
src/qt/blackmore-qt.creator.user
src/qt/blackmore-qt.files
src/qt/blackmore-qt.includes
73 changes: 0 additions & 73 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 70ecba1

Please sign in to comment.