Skip to content
Merged

Dev #16

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5b5c76a
Merge pull request #15 from The-Distributed-Computing-Project/main
sam-astro Oct 20, 2024
0ba3d35
dos2unix
sam-astro Oct 20, 2024
fcd7415
make config file stored in more readable formatting
sam-astro Oct 20, 2024
2105a0f
cleanup segment header
sam-astro Oct 20, 2024
d6bdd8b
write specific error message
sam-astro Oct 20, 2024
8bd7e8b
compile
sam-astro Oct 20, 2024
acc0b9f
compile
sam-astro Oct 20, 2024
703592a
Use correct variable to check for header validity
sam-astro Oct 20, 2024
00340b3
Make sure to remove bad connections that send invalid headers, likely…
sam-astro Oct 22, 2024
97c9d06
Use permanent address for dcc server
sam-astro Oct 24, 2024
c200a9e
add generalized table generator to make my life easier for future add…
sam-astro Oct 31, 2024
c696bb3
Give DCC an actual name, reaname everything to AetherNet, begin work …
sam-astro Jan 24, 2025
2912d51
images
sam-astro Jan 24, 2025
da492ca
Update README.md
sam-astro Jan 24, 2025
801a64d
Start fixing some more p2p issues
sam-astro Jan 24, 2025
fa6c887
Fix uncommon bug where a partial message reciept is never completed, …
sam-astro Jan 24, 2025
569e611
Add new logo option
sam-astro Jan 24, 2025
1514995
add fix for disconnecting peer
sam-astro Jan 24, 2025
a071c1c
remove peer on complete conversation
sam-astro Jan 24, 2025
d898207
Ensure peer disconnect after success
sam-astro Jan 24, 2025
6d03c34
re-add socket receive timeout
sam-astro Jan 24, 2025
b767fe5
add invalid address check
sam-astro Jan 25, 2025
8305746
add even more checks for initial conncetion
sam-astro Jan 25, 2025
b7a94e3
change checking
sam-astro Jan 25, 2025
bcd8469
fix unmatched braces
sam-astro Jan 25, 2025
74282eb
Add icon
sam-astro Jan 25, 2025
57b9e60
.
sam-astro Feb 4, 2025
ac7a419
Merge branch 'main' into dev
sam-astro Feb 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
54 changes: 27 additions & 27 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG] "
labels: bug
assignees: sam-astro
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Additional context**
Add any other context about the problem here.
---
name: Bug report
about: Create a report to help us improve
title: "[BUG] "
labels: bug
assignees: sam-astro

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Additional context**
Add any other context about the problem here.
34 changes: 17 additions & 17 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[FEATURE REQUEST] "
labels: enhancement
assignees: sam-astro
---
**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.
**Additional context**
Add any other context or screenshots about the feature request here.
---
name: Feature request
about: Suggest an idea for this project
title: "[FEATURE REQUEST] "
labels: enhancement
assignees: sam-astro

---

**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.

**Additional context**
Add any other context or screenshots about the feature request here.
140 changes: 70 additions & 70 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,70 +1,70 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: '37 5 * * 3'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
#- run: |
# make bootstrap
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: '37 5 * * 3'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ BlockchainMiner/bin/Debug/netcoreapp3.1/programs
ColdWallet/config.txt
FileContentIndex
*.cfg
*.dccwallet
*.agwallet
*.lnk
*.dccblock
*.dccsuper
*.agblock
*.agsuper
programs
slnx.sqlite
DCC-Miner/.vs/slnx.sqlite
Expand Down
4 changes: 2 additions & 2 deletions .vs/CMakeWorkspaceSettings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"enableCMake": true
{
"enableCMake": true
}
4 changes: 2 additions & 2 deletions .vs/ProjectSettings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"CurrentProjectSetting": "No Configurations"
{
"CurrentProjectSetting": "No Configurations"
}
32 changes: 16 additions & 16 deletions .vs/VSWorkspaceState.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"ExpandedNodes": [
"",
"\\DCC-Miner",
"\\DCC-Miner\\DCC-Miner",
"\\DCC-Miner\\out",
"\\DCC-Miner\\out\\CMakeFiles\\3.21.4",
"\\DCC-Miner\\out\\CMakeFiles\\3.21.4\\CompilerIdC",
"\\DCC-Miner\\out\\_deps",
"\\DCC-Miner\\out\\_deps\\cpr-build",
"\\DCC-Miner\\out\\_deps\\cpr-subbuild",
"\\DCC-Miner\\out\\_deps\\curl-build",
"\\DCC-Miner\\out\\_deps\\zlib-build"
],
"SelectedNode": "\\DCC-Miner\\out\\_deps\\cpr-build\\cpr.sln",
"PreviewInSolutionExplorer": false
{
"ExpandedNodes": [
"",
"\\DCC-Miner",
"\\DCC-Miner\\DCC-Miner",
"\\DCC-Miner\\out",
"\\DCC-Miner\\out\\CMakeFiles\\3.21.4",
"\\DCC-Miner\\out\\CMakeFiles\\3.21.4\\CompilerIdC",
"\\DCC-Miner\\out\\_deps",
"\\DCC-Miner\\out\\_deps\\cpr-build",
"\\DCC-Miner\\out\\_deps\\cpr-subbuild",
"\\DCC-Miner\\out\\_deps\\curl-build",
"\\DCC-Miner\\out\\_deps\\zlib-build"
],
"SelectedNode": "\\DCC-Miner\\out\\_deps\\cpr-build\\cpr.sln",
"PreviewInSolutionExplorer": false
}
Binary file added Media/aethergrid-bold.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/aethergrid-high.xcf
Binary file not shown.
Binary file added Media/aethergrid-superbold-high.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/aethergrid-superbold.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/aethergrid.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/aethergrid.xcf
Binary file not shown.
Binary file added Media/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading