惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

M
MIT News - Artificial intelligence
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
博客园 - Franky
腾讯CDC
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
V
V2EX
N
Netflix TechBlog - Medium
量子位
Jina AI
Jina AI
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
爱范儿
爱范儿
博客园 - 叶小钗
D
Docker
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss

PBS activity

Make capypdf a submodule (7f9465b6) · Commits · Inkscape / inkscape · GitLab Draft: Make capypdf a submodule to enable it in the PPA (!7987) · Merge requests · Inkscape / inkscape · GitLab a7a272aeb209d29b500adb09d575af1d89645ffe to f9f9d913e36b14250122d9bc43911b5bb84e958c · PBS / Inkscape · GitLab Make capypdf a submodule (12ee5f11) · Commits · Inkscape / inkscape · GitLab Commits · launchpad-staging · Inkscape / inkscape · GitLab Commits · unmeson · PBS / Inkscape · GitLab Objects can't be moved using arrows keys (#6226) · Issues · Inkscape / inkscape · GitLab Down, left, right arrow keys don't work to move objects (#13628) · Issues · Inkscape / Inbox · GitLab Down, left, right arrow keys don't work to move objects (#13628) · Issues · Inkscape / Inbox · GitLab Draft: Expand tests for boolean operations on paths (!7980) · Merge requests · Inkscape / inkscape · GitLab 1.5-dev: cannot create/open documents after closing window on macOS (#5981) · Issues · Inkscape / inkscape · GitLab Use new Modifiers system for the arc tool (!7961) · Merge requests · Inkscape / inkscape · GitLab Remove dependency on deprecated appdirs module (!730) · Merge requests · Inkscape / extensions · GitLab Commits · appdirs · PBS / extensions · GitLab 1.5-dev: Unable to open the Extension Manager (#6202) · Issues · Inkscape / inkscape · GitLab PBS pushed to project branch capypdf-static at PBS / Inkscape PBS pushed to project branch capypdf-static at PBS / Inkscape Make internal capypdf static (!7947) · Merge requests · Inkscape / inkscape · GitLab Shape builder tool does not detect the interior region (#4477) · Issues · Inkscape / inkscape · GitLab Make (most) tests build and run on Windows (!7940) · Merge requests · Inkscape / inkscape · GitLab Generate AppImage with quick-sharun (a465f4ce) · Commits · PBS / Inkscape · GitLab Commits · sharun · PBS / Inkscape · GitLab 1.5-dev: Split mode state is incorrect in the menu when opening a new document (#6135) · Issues · Inkscape / inkscape · GitLab PBS deleted project branch deadlock-win at PBS / Inkscape 1.5-dev: (Windows) Deadlock on quit, process not exiting sometimes (#6003) · Issues · Inkscape / inkscape · GitLab Fix dark mode on gtk 4.20 (!7932) · Merge requests · Inkscape / inkscape · GitLab Fix some resizing issues on Windows by not setting GTK_CSD (!7931) · Merge requests · Inkscape / inkscape · GitLab Draft: Fix AppImage crashing during save on older distros (!7922) · Merge requests · Inkscape / inkscape · GitLab 19086deebf770c8932b403ee536c8f8562a376f9 to 55362ef7d4c363d9613d70ac7194de7e8e323a34 · PBS / Inkscape · GitLab c74f78ca23ff302b7b59175490b870f1a616b778 to 19086deebf770c8932b403ee536c8f8562a376f9 · PBS / Inkscape · GitLab
55362ef7d4c363d9613d70ac7194de7e8e323a34 to a2b678d5ad5ae...
PBS · 2026-05-06 · via PBS activity

Commits on Source 12

  • Added non-vertical axonometric grids · 7923d920
    Commits:
    
    Preliminary non-vertical axis implementation
    
    Add option to set vertical angle for axonometric grids
    
    Fixed the math for calculating the y axis angle in the axonometric grid
    
    Initial grid snapping with !angle_y_vertical implemented
    
    Update comments to clarify axis behavior in axonometric grids
    
    Change angle_y_vertical to use RegisteredCheckButton and update preferences initialization
    
    Add button to swap axonometric grid axes in document properties dialog
    
    Documented & moved derived_angle_y to mathfns.h and added update_derived_angle_y method for shared behavior
    
    Renamed gridangleyvertical to angleyvertical
    
    Comment: "[the prefix 'grid'] should never have been used for any of the attributes, but we should start by not adding new ones" - @doctormo
    
    I forgot the pi/2 - angle when porting to derived_angle_y rad
  • Fix divide-by-zero crash when using calligraphy tool · d34276f8
    When getting the average color of a cairo surface, if the alpha is
    zero, we were getting a divide-by-zero error, because we were
    dividing r, g, and b by the cumulutive alpha of the surface.
    
    Instead, we should return black in that case.
    
    Fixes #6098
  • Remember maximized/fullscreened states · 562456be
    When those states change, actually notice and save the preference
    for them. This way the "remember last window state" preference will
    work as expected for maximized/fullscreened windows.
  • Update Color API preparing for new Rendering Engine · 8fe2638e
    Added isDirect to Colors::Space::* which tells us if a color space is
    backed by a single icc profile, and no other processing steps with some
    public method cleanups.
    
    Removed Lab toXYZ and fromXYZ which were orphaned by previous commit.
    
    Reformatted CairoTransform into generic SurfaceTransform so it can work
    with any memory surface of pixels and in a greater number of data formats.
    
    Split out CMS transform class from SurfaceTransforms and use a base class
    Allowing for different assumptions with formatting and alpha premultiplication.
    
    Add a forward.h header to make including color namespaces easier and cleaner.
    
    Clean up generic testing utils for VectorIs Add colors and some better flexibility
    for arrays and vectors in testing.
  • Add Alpha color space · c53f375f
    This color space allows surfaces to be converted to luminosity masks
    and varius other useful alpha related filtering for the new rendering
    engine.
    
    We use lcms2 to hold the gray scale profile for quicker conversions.
    
    The transform-cms is modified so it can cope with outputs which do
    not have an allpha channel of their own. Tests for this are added.
  • Allow color conversions using static arrays instead of just vectors · 363d6459
    Most color conversion will be done with std::vectors of doubles
    but to speed up and provide compile time checks for color converting
    on Surfaces we want the ability to take an array directly at some
    but not all of the various levels.
    
    Formalise the interface for ProfileSpace and the Convertable type
    using a self-referential templating pattern.
    
    Move most conversion code to static functions and make as agnostic
    to the array type as possible, allowing for convertors to use them
    directly without expensive vector types.
  • Fix crash when selecting non-visible objects · ee480ecd
    The selection describer code was assuming that a selection can only
    hold visible items (SPItems) but it actually holds SPObjects, which
    can include non-visible items.
    
    This code changes the selection describer to more consistently work
    with SPItems only, and to ignore SPObjects.
    
    Fixes #6125