Maintenance 2026#85
Open
samizdatco wants to merge 40 commits into
Open
Conversation
- all the metadata has been moved to pyproject and setup.py is now only responsible for building the c/objc/swift extension - CI helpers and app/package building now live in the `build.py` script - builds & tests now use standard `python3 -m build` and `python3 -m tests`
- pyobjc doesn't ship wheels for 3.8 anyway
- previously they would never interrupt CI, even with a failure
- also fixes local env detection in cli when run from repo
- allows the test suite to run in CI
- it was using map() which started being lazy in python3 and was failing to invoke the callback
- comparing to a tuple was always a non-match
- add missing dunder methods and drop otiose ones from MagicNumber (the base class for Dimension & Unit) - add unit tests exercising numeric comparison ops - fixes #67
- previously the vector would be rasterized at the width/height of the PDF or SVG, then that bitmap mask would be scaled - now the vector image is scaled to the size it will occupy on the canvas *before* being rasterized, so the masking is still pixel-based, but will no longer be super-low res - partially addresses #83 (though it doesn't provide the vector-based mask the user exptected)
- initial migration uses some runloop trickery in the EditorView.source getter to stay compatible with the synchronous file-saving api - web inspector is now only enabled by default on dev builds (though it can be added to dist builds with a defaults write to `WebKitDeveloperExtras`)
- removed the need for the runloop trickery by keeping a cached copy of the document in _last_source (updated via the undo-manager callback)
- source file is app/art/PlotDevice-app.icon - Assets.car can be rebuilt with `make.py icon`
samizdatco
force-pushed
the
maintenance-2026
branch
from
July 14, 2026 03:28
957dc36 to
43e2599
Compare
- support for quads was added in macOS 14, deprecating the now-ambiguously named `NSBezierPathElementCurveTo`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Misc. Improvements
uvBugfixes
ordered()now works correctly and no longer causes theAdvanced/Sorting.pvexample to crashText.flow()will now invoke user-provided callbacks to determine layout of multi-column runs{4}-style padded number blocks in exported filenames correctlysuper()use in command line toolStacked PR