mirror of
https://github.com/maziggy/bambuddy.git
synced 2026-05-09 05:35:30 +02:00
[GH-ISSUE #208] [Feature]: Add Schedule Button to Archive #127
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#127
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 (Jan 31, 2026).
Original GitHub issue: https://github.com/maziggy/bambuddy/issues/208
Originally assigned to: @maziggy on GitHub.
Problem or Use Case
The schedule print function is only visible in the hidden menu from the print Archive. It would be beneficial to add this to the same screen as the Reprint button. For clarity, also rename the Reprint command button to 'Reprint Now'
Proposed Solution
Update ArchivesPage.tsx like the following: (may need some visual adjustments)
<div className="flex gap-1 mt-3"> {isSlicedFile(archive.filename) ? ( // Sliced file - can print directly <> <Button variant="primary" size="sm" className="flex-1 min-w-0" onClick={() => setShowReprint(true)} disabled={!hasPermission('archives:reprint')} title={!hasPermission('archives:reprint') ? 'You do not have permission to reprint' : undefined} > <Printer className="w-3 h-3 flex-shrink-0" /> <span className="hidden sm:inline">Reprint Now</span> </Button> <Button variant="primary" size="sm" className="flex-1 min-w-0" onClick={() => setShowSchedule(true)} disabled={!hasPermission('queue:create')} title={!hasPermission('queue:create') ? 'You do not have permission to add to queue' : undefined} >Alternatives Considered
No response
Feature Category
Print Archiving
Priority
Would improve my workflow
Mockups or Examples
Contribution
Checklist
@maziggy commented on GitHub (Feb 1, 2026):
"Reprint Now" produces text wrapping, so i kept Reprint.
Available in branch 0.1.7b. Please let me know if it works for you.
@cadtoolbox commented on GitHub (Feb 1, 2026):
Works without issues.