Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: "3.13"
- name: Install pipx
run: |
python3 -m pip install --user pipx
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: "3.13"
- name: Compile filaments
run: python3 scripts/compile_filaments.py
- uses: actions/upload-artifact@v7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
issue-manager:
runs-on: ubuntu-latest
steps:
- uses: tiangolo/issue-manager@0.5.1
- uses: tiangolo/issue-manager@0.8.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
config: >
Expand All @@ -32,7 +32,7 @@ jobs:
"message": "It seems the issue was answered, closing this now."
},
"waiting": {
"delay": 60400,
"delay": 604800,
"message": "Closing after 7 days of waiting for the additional info requested."
}
}
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# SpoolmanDB
A centralized place to store information about 3D printing filaments and their manufacturers.

The database is hosted using GitHub Pages, you can browse it at: [https://donkie.github.io/SpoolmanDB/](https://donkie.github.io/SpoolmanDB/)
The database is hosted using GitHub Pages, you can browse it at: [https://sherrmann.github.io/SpoolmanDB/](https://sherrmann.github.io/SpoolmanDB/)

This is a fork of [Donkie/SpoolmanDB](https://github.com/Donkie/SpoolmanDB) that additionally includes reviewed data from upstream pull requests that have not been merged there yet.

You can contribute to this database by adding/editing files and submitting pull requests in this repository.

Expand Down
4 changes: 4 additions & 0 deletions filaments.schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"type": "object",
"additionalProperties": false,
"required": [
"manufacturer",
"filaments"
Expand All @@ -14,6 +15,7 @@
"uniqueItems": true,
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"name",
"density",
Expand Down Expand Up @@ -43,6 +45,7 @@
"uniqueItems": true,
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"weight"
],
Expand Down Expand Up @@ -147,6 +150,7 @@
"uniqueItems": true,
"items": {
"type": "object",
"additionalProperties": false,
"oneOf": [
{
"required": [
Expand Down
8 changes: 4 additions & 4 deletions filaments/ratrig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"weights": [
{
"weight": 1000.0,
"spool_material": "plastic",
"spool_type": "plastic",
"spool_weight": 219.2
}
],
Expand Down Expand Up @@ -43,7 +43,7 @@
"weights": [
{
"weight": 1000.0,
"spool_material": "plastic",
"spool_type": "plastic",
"spool_weight": 219.2
}
],
Expand All @@ -66,7 +66,7 @@
"weights": [
{
"weight": 1000.0,
"spool_material": "plastic",
"spool_type": "plastic",
"spool_weight": 219.2
}
],
Expand All @@ -89,7 +89,7 @@
"weights": [
{
"weight": 1000.0,
"spool_material": "plastic",
"spool_type": "plastic",
"spool_weight": 219.2
}
],
Expand Down
1 change: 1 addition & 0 deletions materials.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"material",
"density"
Expand Down
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<main>
<h2>A repository of the latest filament and materials data for 3D printing.</h2>
<p>This project is open-source, feel free to create a pull request <a
href="https://github.com/Donkie/SpoolmanDB"> on Github</a> if you want to add or modify any
href="https://github.com/sherrmann/SpoolmanDB"> on Github</a> if you want to add or modify any
data.</p>
<h2>Data files</h2>
<div class="data-files">
Expand Down