-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: implement #19 #21
Conversation
I was thinking, wouldn't it be better if instead of adding another field we just merged two into one? something like this: "extruder_temp": {
"$comment": "Single or range of temperatures for the extruder in degrees Celsius.",
"type": "array",
"minItems": 1,
"maxItems": 2,
"items": {
"type": "integer"
}
},
"bed_temp": {
"$comment": "Single or range of temperatures for the bed in degrees Celsius.",
"type": "array",
"minItems": 1,
"maxItems": 2,
"items": {
"type": "integer"
}
}, this shouldn't break existing jsons in theory |
It will break existing jsons since the values there aren't arrays, they're integers. |
Also, there are quite a few commits fixing validation failures and polishing, do you want me to squash them or should I resubmit with only one commit? |
Don't worry about too many commits, do as you wish in your own branch :) |
everything should be ok on my side, let me know what you think ;) |
@YanceyA your feedback is welcome :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi Stu, no notes from me and the changes look right on target to address my comments. Thanks for the work!
Once this in committed, I'll ,at minimum ,take a look at the 3dxtech materials and update accordingly.
Looks good! |
now I'm thinking actually that the material name -CF/-GF additions with the new fill field is redundant. Either of the two ways of specifying fill should probably be removed |
Hi Donkie, That said, the material field , as long as we follow a format, could be parsed back into fill category (and others) rather simply by someone with the need. I suggest to keep both but if we only keep one the material post fix is strongly preferred over the fill category. |
Then I suggest we remove the fill field |
I think we should also consider that 3D Printing materials can have other type of fills that we have not accounted yet, such as wood and ceramic. I think either way is fine, it's hard for me to see a proper solution.. If we must get rid of a field, then we just suffix the material name as we are doing right now, or we spell it plaintext in the fill field. your suggestions for implementation are super welcome! |
Also, I'm working on a readme rework that also documents features added in here. |
this should cut it, I don't know how can I run the deploy workflows for testing though, do I have to cherry pick this to my main branch? 🤔