mirror of
https://github.com/maziggy/bambuddy.git
synced 2026-05-09 05:35:30 +02:00
[GH-ISSUE #248] [Feature]: Print from Files Manager is not like Print from Archives #153
Labels
No labels
A1
automated
automated
bug
bug
Closed due to inactivity
contrib
dependencies
dependencies
duplicate
enhancement
feedback
hold
invalid
Notes
P1S
pull-request
security
security
ThumbsUp
user-report
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/bambuddy#153
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cadtoolbox on GitHub (Feb 3, 2026).
Original GitHub issue: https://github.com/maziggy/bambuddy/issues/248
Originally assigned to: @maziggy on GitHub.
Problem or Use Case
When you print from an Archive file you have the following options available:
Print:
Schedule:
When you print from the Files Manager, you have less options available:
Print:
Add to Queue:
Proposed Solution
Make the print options (Print and Schedule) available in the Files Manager as they are in the Archives.
All sub-options should also be available.
Alternatives Considered
No response
Feature Category
Print Queue & Scheduling
Priority
Critical for my use case
Mockups or Examples
No response
Contribution
Checklist
@cadtoolbox commented on GitHub (Feb 4, 2026):
Additional, uploads to the File Manager do not extract the printer model from the file as the Archives do
@cadtoolbox commented on GitHub (Feb 4, 2026):
I've made some progress on these changes myself. ;)
@maziggy commented on GitHub (Feb 4, 2026):
Do you want to submit it, or shall I look into this?
@cadtoolbox commented on GitHub (Feb 4, 2026):
@maziggy I think I have it almost done and ready. Testing more today. I'll need some guidance once I send it over for review if I'm missing anything being my first contribution.
So far I have:
@maziggy commented on GitHub (Feb 4, 2026):
Contributing to Bambuddy - Fork & PR Guide
git clone https://github.com/YOUR_USERNAME/bambuddy.git
cd bambuddy
git remote add upstream https://github.com/maziggy/bambuddy.git
git checkout -b my-feature-name 0.1.8b
Edit files...
git add .
git commit -m "Description of changes"
git push -u origin my-feature-name
Keeping your fork updated (for future PRs)
git checkout main
git fetch upstream
git merge upstream/main
git push origin main
@maziggy commented on GitHub (Feb 4, 2026):
Merged to branch 0.1.8b.
Thanks!!!