Skip to content
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

auth methods + QCA #67

Open
wants to merge 1,381 commits into
base: vcpkg_bindings
Choose a base branch
from
Open

auth methods + QCA #67

wants to merge 1,381 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Jul 4, 2024

  1. Merge pull request qgis#57982 from nstrahl/add_gitignore

    Ignore custom developer configuration/settings files
    elpaso committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    7b84752 View commit details
    Browse the repository at this point in the history
  2. Merge pull request qgis#57981 from nyalldawson/bugfix-authmanager-ini…

    …tialization-in-tests
    
    [tests][auth] Fix unreported issue with auth tests skipped, fix storage of ssl protocol
    elpaso committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    bee010b View commit details
    Browse the repository at this point in the history
  3. port Basic statistics for fields algorithm to C++

    Also add new optional output a table containing calculated statistics
    similar to the Statistics by categories algorithm (fix qgis#46241)
    alexbruy authored and nyalldawson committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    7bd8c07 View commit details
    Browse the repository at this point in the history
  4. address review comments

    alexbruy authored and nyalldawson committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    5e53e18 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8f0637d View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2024

  1. Configuration menu
    Copy the full SHA
    80f540d View commit details
    Browse the repository at this point in the history
  2. Avoid unnecessary selective rendering test

    Skip the parallel renderer check when the force vector flag is
    set, as that flag is incompatible with parallel rendering and
    we end up running a duplicate raster check anyway. Also avoids
    some console warnings when running the test.
    nyalldawson committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    b6e16ed View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b4f8a22 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    532d24c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ce053b9 View commit details
    Browse the repository at this point in the history
  6. Update test masks

    nyalldawson committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    523271e View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1f580a7 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2024

  1. Use qMetaTypeId<T>() instead of QMetaType::type( T )

    According to the Qt docs this is faster, and also gives us the
    stability of compile-time assurances that T is correctly
    registered as a metatype (and doesn't have typos!)
    nyalldawson committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    046c679 View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2024

  1. Configuration menu
    Copy the full SHA
    79285c2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    00caf22 View commit details
    Browse the repository at this point in the history
  3. Merge pull request qgis#58020 from boardend/sql-layers-use-authcfg

    Prevent expandAuthConfig in createSqlVectorLayer
    m-kuhn committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    67e0563 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ace84af View commit details
    Browse the repository at this point in the history
  5. Allow running processing tools on grass vector layers

    Remove an outdated constraint preventing processing tools from
    operating on GRASS provider vector layers. These native QGIS
    algorithms "just work" with GRASS provider vectors, so there's no
    reason to explicitly block them anymore...
    nyalldawson committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    c48c8b9 View commit details
    Browse the repository at this point in the history
  6. When an OGR algorithm is run on a GRASS provider vector layer,

    export the layer to an OGR compatible source first
    
    Use the same logic we use eg for auto-exporting memory layers
    so that GDAL tools "just work" with GRASS provider vector
    layers
    nyalldawson committed Jul 8, 2024
    Configuration menu
    Copy the full SHA
    4c29831 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2024

  1. Merge pull request qgis#58026 from nyalldawson/fix_58025

    Don't try to translate boolean object
    alexbruy committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    2379ca8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request qgis#58027 from nyalldawson/grass_inputs

    Allow running processing tools on grass vector layers
    alexbruy committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    3ab7ace View commit details
    Browse the repository at this point in the history
  3. [processing] When writing a layer to a temporary GPKG file for

    compatibilty with provider's supported formats, rename the
    existing FID column if we can't write the FID values into
    the GPKG
    
    Eg when the source layer has string/duplicate fids, we warn
    the user and then automatically move the existing fids to
    a "OLD_FID" field
    nyalldawson committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    d154799 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ca1bfbf View commit details
    Browse the repository at this point in the history
  5. Create QgsGdalCloudProviderConnection class

    This QgsGdalCloudProviderConnection subclass represents a connection
    to a cloud storage provider (eg S3) via GDAL's VSI handlers
    nyalldawson committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    b733307 View commit details
    Browse the repository at this point in the history
  6. Refactor out method for creating layer data items from file-like paths

    Provide a method so that external classes can use this same logic
    to create their own layer items containing sublayers for file-like
    paths.
    nyalldawson committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    392eaac View commit details
    Browse the repository at this point in the history
  7. Create data item provider for QgsGdalCloudProviderConnections

    Adds a browser data item provider which shows connections
    to cloud storage providers handled by GDAL's VSI handlers.
    
    Allows loading vector and raster layers from VSI cloud storage
    connections via the browser.
    nyalldawson committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    da2b387 View commit details
    Browse the repository at this point in the history
  8. Create QgsGdalCloudConnectionDialog

    For configuring connections to GDAL supported cloud storage
    containers
    nyalldawson committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    4356b53 View commit details
    Browse the repository at this point in the history
  9. Standardise naming

    nyalldawson committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    995d0e6 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    8389626 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6d8ba6e View commit details
    Browse the repository at this point in the history
  12. Address review

    nyalldawson committed Jul 9, 2024
    Configuration menu
    Copy the full SHA
    3dd90b7 View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2024

  1. Fix handling of mutually exclusive groups in GeoPDF export

    When custom groups are present mutually exclusive group handling
    was not working correctly - it was incorrectly assuming every
    group must be a mutually exclusive group.
    
    I've refactored the whole composition XML generation to be less
    fragile and more future proof, and to ensure cleaner layer trees
    are written to the XML.
    
    Also added many additional tests.
    nyalldawson committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    76f79cd View commit details
    Browse the repository at this point in the history
  2. [feature][layouts] Add option to set geopdf group name for items

    This new setting, located in the layout item "Rendering" section,
    allows users to set an optional "group name" for use in GeoPDF
    exports. When set, a matching layer tree group will be created
    in the exported GeoPDF and the item will only be visible when
    this group is checked.
    
    This allows content to be selectively displayed as a group by
    viewers of the GeoPDF. Eg, it can allow extra layout content
    such as descriptive labels or legends to only be shown when
    layers from the group are visible, making GeoPDF export much
    more flexible.
    nyalldawson committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    06aa04d View commit details
    Browse the repository at this point in the history
  3. Spelling

    nyalldawson committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    a051bad View commit details
    Browse the repository at this point in the history
  4. Drop generic option, go with custom property specific for GeoPDF exports

    It's too messy to try to handle this in a format-agnostic way, as
    the requirement for GeoPDF is very unique to GeoPDF (ie SVG and other
    formats don't export as mini-read-only-projects with custom layer
    trees like GeoPDF does)
    nyalldawson committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    f5bfef8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7ce057c View commit details
    Browse the repository at this point in the history
  6. Do not check for validity in Delete Duplicate Geometries alg

    This isn't required, and can get in the way (Eg when the
    delete duplicate geometries step is used as part of cleaning
    up a dataset prior to fixing geometries)
    nyalldawson committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    33a24df View commit details
    Browse the repository at this point in the history
  7. Explode lines algorithm should not require valid geometries

    This check isn't required for this algorith, and can get in
    the way when using explode as a step prior for data cleaning
    nyalldawson committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    8b07861 View commit details
    Browse the repository at this point in the history
  8. [attribute form] Properly handle default value using current_parent_*…

    … variable/function when in editing state (qgis#58009)
    nirvn committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    6de91c6 View commit details
    Browse the repository at this point in the history
  9. Add processing parameter types for Area and Volume

    Adds dedicated parameter types for Area and Volume values.
    
    Modeled closely off the existing Distance paramter type.
    nyalldawson committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    e8b2638 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    9f2a5bb View commit details
    Browse the repository at this point in the history
  11. Fix settings CRS for new GRASS mapsets

    Don't force the selected CRS to a (lossy) proj string, just
    use the CRS's WKT directly
    
    This avoids losing projection information from some selected
    projections when creating a new GRASS mapset (eg EPSG:3111)
    nyalldawson committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    91a3c8e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    61552f4 View commit details
    Browse the repository at this point in the history
  13. Update src/plugins/grass/qgsgrassnewmapset.cpp

    Co-authored-by: Loïc Bartoletti <[email protected]>
    nyalldawson and lbartoletti committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    3caa616 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    a3f97b0 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    22895e6 View commit details
    Browse the repository at this point in the history
  16. Test postgresraster blocksize

    uclaros authored and nyalldawson committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    20cf663 View commit details
    Browse the repository at this point in the history
  17. GdalUtils test added

    uclaros authored and nyalldawson committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    e2c21e8 View commit details
    Browse the repository at this point in the history
  18. use temporary auth db for test

    uclaros authored and nyalldawson committed Jul 10, 2024
    Configuration menu
    Copy the full SHA
    18edfc1 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    3d8a7a7 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    5f85a82 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2024

  1. Auto run sipify on PRs (qgis#58057)

    By commenting /sipify on a PR, this workflow will automatically update the branch after running sipify_all
    3nids committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    7c32a89 View commit details
    Browse the repository at this point in the history
  2. Update flake8.yml

    no need to run flake8 on other branches
    3nids committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    399f7df View commit details
    Browse the repository at this point in the history
  3. Fix compilation when grass plugin is enabled

    Key_Value* type cannot be cast to a number, and it's meaningless to do so anyway
    nyalldawson committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    31ec96e View commit details
    Browse the repository at this point in the history
  4. [grass] Use better approach to retrieve CRS information for mapsets

    Directly read the SRID and WKT, instead of trying to construct
    a projection from the raw properties. This allows lossless conversion
    of GRASS CRS to QGIS CRS, and eg avoids EPSG:3857 mapsets loading
    into QGIS as invalid projections
    nyalldawson committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    48bd2b7 View commit details
    Browse the repository at this point in the history
  5. [GRASS] Fix writing projection for new mapsets

    Use the more modern API so that the projection SRID and WKT
    are written losslessly to the mapset
    
    Avoids loss of projection information when creating
    mapsets
    nyalldawson committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    2e0e984 View commit details
    Browse the repository at this point in the history
  6. Identation

    nyalldawson committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    6e6ab21 View commit details
    Browse the repository at this point in the history
  7. Fix crash when editing grass layers on debug builds

    Parent methods for QgsFeatureRenderer subclasses must be called
    nyalldawson committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    7f699bc View commit details
    Browse the repository at this point in the history
  8. feat(CMYK): add API color model and profile methods to project

    API allows to define a color model without a color space. If both are
    set, consistency between defined color model and color space one is
    checked (only in Qt version 6.8.0 or greater because it's not possible
    to retrieve color model from color space before that)
    troopa81 authored and nyalldawson committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    7e527d1 View commit details
    Browse the repository at this point in the history
  9. fix(CMYK): treat review comments

    troopa81 authored and nyalldawson committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    43062c8 View commit details
    Browse the repository at this point in the history
  10. remove useless code from workflow (qgis#58065)

    * remove useless code from workflow
    
    This was never used because of limitations of running on PRs. Other approaches have been used since.
    
    * comment set-output
    3nids committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    b05941c View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    1b5390e View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    180e2bd View commit details
    Browse the repository at this point in the history
  13. qgsbox3d: Add support for set method

    ptitjano authored and lbartoletti committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    849df1b View commit details
    Browse the repository at this point in the history
  14. Use a single combo box for scale bar horizontal/vertical label placement

    Since we only have 2 choices for each, we can reduce the number
    of widgets by just exposing 4 choices in a single combo
    nyalldawson committed Jul 11, 2024
    Configuration menu
    Copy the full SHA
    d89ac9b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    711c75d View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2024

  1. Configuration menu
    Copy the full SHA
    495a193 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b0aab23 View commit details
    Browse the repository at this point in the history
  3. Update qgslayoutscalebarwidgetbase.ui

    Make it the same as other widget
    tarot231 authored and nyalldawson committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    6b073cb View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2024

  1. Fix use-after-free in QgsVectorLayerCache iterators

    We need to gracefully handle the situation where the cache
    is deleted before the iterator, as these iterators require
    the cache object
    nyalldawson committed Jul 13, 2024
    Configuration menu
    Copy the full SHA
    f573c87 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2024

  1. Configuration menu
    Copy the full SHA
    9605cc3 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2024

  1. [processing] Show notes for algs which regenerate primary keys

    Add a new Qgis::ProcessingAlgorithmDocumentationFlag flag, with
    a virtual method in QgsProcessingAlgorithm to return documentation
    flags. These flags are used to indicate algorithm behavior which
    should be noted in the documentation.
    
    Add initial flags for algorithms which drop and regenerate
    primary keys/FIDs, and automatically add a note to the algorithm's
    help panel to explain that this will occur
    
    In future this flag could be extended with other helpful warnings,
    eg
    
    - Algorithm requires valid geometries
    - Algorithm will segmentize curved geometries
    - Algorithm will drop Z or M values
    nyalldawson committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    afd1075 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f2d5c87 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ada675b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7c0850b View commit details
    Browse the repository at this point in the history
  5. Fix build

    nyalldawson committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    54953b1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    7c0c56b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    ad03718 View commit details
    Browse the repository at this point in the history
  8. Fix editability of tables with column-limited insert privilege

    Closes qgisGH-28835
    
    Includes testcase
    strk committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    d3474e4 View commit details
    Browse the repository at this point in the history
  9. [grass] Drop custom defaultVectorFileExtension implementation

    This fixes the GRASS provider ignoring the "default output
    vector layer extension" setting for processing. The override
    in the grass provider is NOT required as the base class method
    already applies the logic for falling back to shp when gpkg
    is not available (which was added here in 2e92dab), and
    also correctly respects the default format setting.
    
    Fixes qgis#43988
    nyalldawson committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    b9f6293 View commit details
    Browse the repository at this point in the history
  10. Fix comment grammar

    nyalldawson committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    c9d0d29 View commit details
    Browse the repository at this point in the history
  11. Update python/plugins/grassprovider/grass_provider.py

    Co-authored-by: Loïc Bartoletti <[email protected]>
    nyalldawson and lbartoletti committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    eb66f88 View commit details
    Browse the repository at this point in the history
  12. Update python/plugins/grassprovider/grass_provider.py

    Co-authored-by: Alexander Bruy <[email protected]>
    nyalldawson and alexbruy committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    a42fdd8 View commit details
    Browse the repository at this point in the history
  13. debian packaging: drop bullseye

    qgis.g.info now uses G_get_projwkt / G_get_projsrid, which was
    introduced in GRASS 7.8.6, GRASS' version.h includes major and minor and
    bullseye only has 7.8.5.
    jef-n authored and nyalldawson committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    a56f708 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    ba2ff0c View commit details
    Browse the repository at this point in the history
  15. [metasearch] Consider also name and description for link text

    They should be more informative than scheme, protocol or the static string "Access Link".
    pathmapper authored and nyalldawson committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    7a8e20d View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    c2660e2 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2024

  1. Configuration menu
    Copy the full SHA
    afa8297 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3b80fc0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    909f097 View commit details
    Browse the repository at this point in the history
  4. Remove multi implementations of QPicture scaling fix

    Move to a single function in QgsPainting
    nyalldawson committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    ee1a6bd View commit details
    Browse the repository at this point in the history
  5. Add high-level method to draw QPicture with correct scaling

    This hides the messy scaling workaround details
    nyalldawson committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    1ac9494 View commit details
    Browse the repository at this point in the history
  6. Adds a file to hold a map from class/method to headerfile (qgis#58054)

    * create map file for class / header files for PyQGIS API docs
    
    * create map files
    
    * install file
    
    * add line numbers
    
    * also add methods
    
    * wait to sort
    
    * more methods
    
    * fix CMakeLists install
    
    * fix sorting
    
    * fix spell check
    
    * remove map files for Qt6
    
    * Revert "remove map files for Qt6"
    
    This reverts commit 972f483.
    
    * do not test class_map files + auto sipify_all on branches
    
    * fix warning
    3nids committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    6e99331 View commit details
    Browse the repository at this point in the history
  7. fix workflow

    3nids committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    e9c2569 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    531d5a6 View commit details
    Browse the repository at this point in the history
  9. add workflow_dispatch

    3nids committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    5b68ff0 View commit details
    Browse the repository at this point in the history
  10. auto sipify 🍺

    qgis-bot committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    38c7a2f View commit details
    Browse the repository at this point in the history
  11. no error if nothing to commit

    3nids committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    01e25a9 View commit details
    Browse the repository at this point in the history
  12. Merge pull request qgis#58121 from nyalldawson/picture_mode_enum

    Move layout picture item format enum to Qgis, promote to enum class
    troopa81 committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    c24260c View commit details
    Browse the repository at this point in the history
  13. auto sipify 🍺

    qgis-bot committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    6364659 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    42e5c44 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    37deed0 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    7e4b30e View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    f7237e2 View commit details
    Browse the repository at this point in the history
  18. Use \see not \sa

    So that sipify docstring processing works
    nyalldawson committed Jul 16, 2024
    Configuration menu
    Copy the full SHA
    1f27af6 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. Configuration menu
    Copy the full SHA
    cc937af View commit details
    Browse the repository at this point in the history
  2. Add QgsCoordinateTransform setter for QgsFeatureRequest

    Sets the coordinate transform which will be used to transform
    the feature's geometries.
    
    If this transform is valid then it will always be used to transform
    features, regardless of the destinationCrs() setting or the underlying
    feature source's actual CRS.
    
    This method should be used with caution, and it is recommended
    to use the high-level setDestinationCrs() method instead. Setting a specific
    transform should only be done when there is a requirement to use a particular
    transform, eg when a specific, non-default coordinate operation
    MUST be used for the transformation.
    nyalldawson committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    27294b1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8e95b2c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9dd1ba2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4509057 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    958a31e View commit details
    Browse the repository at this point in the history
  7. Fix some python tests

    nyalldawson committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    c578c7c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1b57e89 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    49a8d2f View commit details
    Browse the repository at this point in the history
  10. auto sipify 🍺

    qgis-bot committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    a44963a View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    e67f21b View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    4fb3307 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    126f21c View commit details
    Browse the repository at this point in the history
  14. feat(CMYK): Add tooltips

    troopa81 authored and nyalldawson committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    6b6ed6d View commit details
    Browse the repository at this point in the history
  15. fix(CMYK): treat review comment

    troopa81 authored and nyalldawson committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    eae2823 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    ea65474 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    b118111 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    76a4202 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    aa08d68 View commit details
    Browse the repository at this point in the history
  20. auto sipify 🍺

    qgis-bot committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    9e47ca4 View commit details
    Browse the repository at this point in the history
  21. Merge pull request qgis#58122 from nyalldawson/painter_dpi_methods

    Cleanup QPicture dpi scaling workarounds
    troopa81 committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    25c28d6 View commit details
    Browse the repository at this point in the history
  22. auto sipify 🍺

    qgis-bot committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    ec64cf9 View commit details
    Browse the repository at this point in the history
  23. Merge pull request qgis#58120 from nyalldawson/m2p_bounds

    Add QgsMapToPixel method to transform bounding boxes
    troopa81 committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    93b52a0 View commit details
    Browse the repository at this point in the history
  24. auto sipify 🍺

    qgis-bot committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    105aabd View commit details
    Browse the repository at this point in the history
  25. Merge pull request qgis#58141 from nyalldawson/see

    Use \see not \sa
    troopa81 committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    57595b4 View commit details
    Browse the repository at this point in the history
  26. auto sipify 🍺

    qgis-bot committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    a7bad33 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    aa10613 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    5205fc4 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    e9ed5ce View commit details
    Browse the repository at this point in the history
  30. Add vcpkg

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    1b1d3eb View commit details
    Browse the repository at this point in the history
  31. Add workflow

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    42730c4 View commit details
    Browse the repository at this point in the history
  32. workflows

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    93002df View commit details
    Browse the repository at this point in the history
  33. nuget

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    6eeb3a7 View commit details
    Browse the repository at this point in the history
  34. spatialite for osx-dynamic

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    cdcdd86 View commit details
    Browse the repository at this point in the history
  35. Features

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    55e5e60 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    0989e68 View commit details
    Browse the repository at this point in the history
  37. Update x64-osx.yml

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    511fcbc View commit details
    Browse the repository at this point in the history
  38. Update x64-osx.yml

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    0652d5b View commit details
    Browse the repository at this point in the history
  39. Update x64-osx.yml

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    fcf3697 View commit details
    Browse the repository at this point in the history
  40. Update x64-osx.yml

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    0d55adf View commit details
    Browse the repository at this point in the history
  41. Make static auth lib conditional

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    e6f3e98 View commit details
    Browse the repository at this point in the history
  42. debug

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    b46b9da View commit details
    Browse the repository at this point in the history
  43. static

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    64175d4 View commit details
    Browse the repository at this point in the history
  44. $ is all I need

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    732217b View commit details
    Browse the repository at this point in the history
  45. hacks

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    665c2cd View commit details
    Browse the repository at this point in the history
  46. fixup install name

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    fd1e49d View commit details
    Browse the repository at this point in the history
  47. remove hacks

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    76dee52 View commit details
    Browse the repository at this point in the history
  48. typo

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    ba5807f View commit details
    Browse the repository at this point in the history
  49. Host triplet

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    8897a9a View commit details
    Browse the repository at this point in the history
  50. No tests

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    ab93f62 View commit details
    Browse the repository at this point in the history
  51. Fix static

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    404ebb8 View commit details
    Browse the repository at this point in the history
  52. pkg release

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    60e1de8 View commit details
    Browse the repository at this point in the history
  53. Remove mac bundling stuff

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    fe74ab6 View commit details
    Browse the repository at this point in the history
  54. Cleanup mac bundling

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    46ae832 View commit details
    Browse the repository at this point in the history
  55. ninja

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    924704f View commit details
    Browse the repository at this point in the history
  56. Revert "$ is all I need"

    This reverts commit c025de2.
    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    8846d6c View commit details
    Browse the repository at this point in the history
  57. Revert "Revert "$ is all I need""

    This reverts commit 2d3365f.
    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    d50dfee View commit details
    Browse the repository at this point in the history
  58. Generate bindings

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    15f9e85 View commit details
    Browse the repository at this point in the history
  59. xcode new style complaints

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    30cee17 View commit details
    Browse the repository at this point in the history
  60. pyqt5

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    75eaa4e View commit details
    Browse the repository at this point in the history
  61. ossl for qca

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    a2a8ba3 View commit details
    Browse the repository at this point in the history
  62. Remve spurious command

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    6e8afb6 View commit details
    Browse the repository at this point in the history
  63. Fix more rpaths

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    1c395c5 View commit details
    Browse the repository at this point in the history
  64. Fix python include path

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    4645d1e View commit details
    Browse the repository at this point in the history
  65. pyqsci experiments

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    76145be View commit details
    Browse the repository at this point in the history
  66. py311

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    ec7b151 View commit details
    Browse the repository at this point in the history
  67. fix qscintilla py bindings

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    d7ce6e4 View commit details
    Browse the repository at this point in the history
  68. Bump vcpkg tag

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    f463da0 View commit details
    Browse the repository at this point in the history
  69. Fix pyqsci5

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    ac2e4e2 View commit details
    Browse the repository at this point in the history
  70. Ensurepip into package

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    a794152 View commit details
    Browse the repository at this point in the history
  71. ensure pip

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    c58ef12 View commit details
    Browse the repository at this point in the history
  72. urh

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    f2dc995 View commit details
    Browse the repository at this point in the history
  73. fix path

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    1f7b53d View commit details
    Browse the repository at this point in the history
  74. nosetuptools

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    a346f0c View commit details
    Browse the repository at this point in the history
  75. Clean up python

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    82ad073 View commit details
    Browse the repository at this point in the history
  76. Add missing license

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    9cdaf15 View commit details
    Browse the repository at this point in the history
  77. Move sip tools to tools

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    56e8263 View commit details
    Browse the repository at this point in the history
  78. Fix path

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    5746360 View commit details
    Browse the repository at this point in the history
  79. We need the file executable

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    ac182c0 View commit details
    Browse the repository at this point in the history
  80. Add python to path

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    431fa42 View commit details
    Browse the repository at this point in the history
  81. env

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    a031cea View commit details
    Browse the repository at this point in the history
  82. Revert "Cleanup mac bundling"

    This reverts commit 53548a4.
    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    0c2fded View commit details
    Browse the repository at this point in the history
  83. arm64-osx and qtwebkit

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    239b70f View commit details
    Browse the repository at this point in the history
  84. Enable qtwebkit

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    b34356b View commit details
    Browse the repository at this point in the history
  85. more recent vcpkg

    3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    ac6af12 View commit details
    Browse the repository at this point in the history
  86. libtool

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    bae0374 View commit details
    Browse the repository at this point in the history
  87. multimedia for webkit

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    97af651 View commit details
    Browse the repository at this point in the history
  88. matrix

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    558be29 View commit details
    Browse the repository at this point in the history
  89. [qt5-webkit] arm64-osx compat

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    1b7b77f View commit details
    Browse the repository at this point in the history
  90. More osx patching

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    a352687 View commit details
    Browse the repository at this point in the history
  91. Fix path

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    6293d1e View commit details
    Browse the repository at this point in the history
  92. Fix upload path

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    c6dab97 View commit details
    Browse the repository at this point in the history
  93. Enable ccache

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    e693ec9 View commit details
    Browse the repository at this point in the history
  94. Move overlay to ports

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    1b0796a View commit details
    Browse the repository at this point in the history
  95. Add qt6 vcpkg manifest

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    a8d0ea8 View commit details
    Browse the repository at this point in the history
  96. Add windows builds

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    7f55f82 View commit details
    Browse the repository at this point in the history
  97. Fix python include paths

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    aca2ab9 View commit details
    Browse the repository at this point in the history
  98. Add newer python ports

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    81622b1 View commit details
    Browse the repository at this point in the history
  99. Upstream vcpkg

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    0c9971a View commit details
    Browse the repository at this point in the history
  100. no more qtwinextras ...

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    0249531 View commit details
    Browse the repository at this point in the history
  101. no more qt winextras

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    4e05c2a View commit details
    Browse the repository at this point in the history
  102. widestring

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    b7e5f92 View commit details
    Browse the repository at this point in the history
  103. no more setupapi?

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    4382c80 View commit details
    Browse the repository at this point in the history
  104. bump vcpkg

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    26bef64 View commit details
    Browse the repository at this point in the history
  105. bigobj, features and protobuf

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    57619fd View commit details
    Browse the repository at this point in the history
  106. unicode for external apps

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    b4a02a7 View commit details
    Browse the repository at this point in the history
  107. vcpkg updates

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    417cf0b View commit details
    Browse the repository at this point in the history
  108. un-unicode

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    583ab9b View commit details
    Browse the repository at this point in the history
  109. splash

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    f78427d View commit details
    Browse the repository at this point in the history
  110. attributetableconfig problem

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    2776449 View commit details
    Browse the repository at this point in the history
  111. proj path

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    e7de37b View commit details
    Browse the repository at this point in the history
  112. pip

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    35fc5fd View commit details
    Browse the repository at this point in the history
  113. Fix merge conflict leftovers

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    e1f94d9 View commit details
    Browse the repository at this point in the history
  114. GDAL with python

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    07def87 View commit details
    Browse the repository at this point in the history
  115. python

    m-kuhn authored and 3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    9abf710 View commit details
    Browse the repository at this point in the history
  116. fix auth method + vcpkg patch

    3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    ebcc4c0 View commit details
    Browse the repository at this point in the history
  117. Configuration menu
    Copy the full SHA
    010fad0 View commit details
    Browse the repository at this point in the history
  118. Configuration menu
    Copy the full SHA
    3430fc9 View commit details
    Browse the repository at this point in the history
  119. Configuration menu
    Copy the full SHA
    5d0fc0c View commit details
    Browse the repository at this point in the history
  120. display ok

    3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    fab2fb0 View commit details
    Browse the repository at this point in the history
  121. fix load/save

    3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    3d130c8 View commit details
    Browse the repository at this point in the history
  122. fix brush

    3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    359ed59 View commit details
    Browse the repository at this point in the history
  123. fix ++ op

    3nids committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    e98abdf View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2024

  1. add test for MVT conversion

    3nids committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    f62ec07 View commit details
    Browse the repository at this point in the history
  2. x

    3nids committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    26fd985 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2024

  1. x

    3nids committed Jul 20, 2024
    Configuration menu
    Copy the full SHA
    da1271e View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. x

    3nids committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    84aa315 View commit details
    Browse the repository at this point in the history
  2. x

    3nids committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    b35c4d6 View commit details
    Browse the repository at this point in the history
  3. fix test

    3nids committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    b09b1f3 View commit details
    Browse the repository at this point in the history
  4. address review

    3nids committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    892fd23 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2024

  1. Configuration menu
    Copy the full SHA
    e93eb06 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2024

  1. fix test

    3nids committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    66b4032 View commit details
    Browse the repository at this point in the history
  2. fix test

    3nids committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    07c443c View commit details
    Browse the repository at this point in the history
  3. [mvt] improve conversion of sprites

    fixes some cases where the sprite was not defined (mainly when data defined) + support step definition
    3nids committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    8c8837c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b66f117 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a293b35 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    10e347b View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    90f389c View commit details
    Browse the repository at this point in the history
  8. implement step expressions

    3nids committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    5a84d58 View commit details
    Browse the repository at this point in the history
  9. fix some tests

    3nids committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    0872235 View commit details
    Browse the repository at this point in the history
  10. fix test values

    3nids committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    eac95db View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. more test

    3nids committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    45195c6 View commit details
    Browse the repository at this point in the history
  2. x

    3nids committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    90ab017 View commit details
    Browse the repository at this point in the history
  3. y

    3nids committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    f60ebac View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2024

  1. fix requiremnts

    3nids committed Aug 20, 2024
    Configuration menu
    Copy the full SHA
    cacf6c3 View commit details
    Browse the repository at this point in the history