All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Add new algorithm script to extract data from
gn_exports.v_synthese_sinp
. This algorithm script can be disabled by setting a new parameter in database (tablesgn_commons.t_parameters
) (fix #159).
### Version note
To disable this new feature, execute this SQL script
INSERT INTO gn_commons.t_parameters ( id_organism, parameter_name, parameter_desc, parameter_value
, parameter_extra_value)
VALUES ( 0, 'plugin_qgis_lpo_exclude_export_sinp'
, 'Option pour exclure le script d''export SINP du plugin QGIS LPO (valeurs possibles: "false","true")', 'true'
, NULL);
## 3.3.8 - 2024-11-05
- Condition attribute table display on layers containing less than 1000 data.
- Fix missing data when extracting from a specific date (start_date = end_date) (fix #150).
- Refactor query area generator (fix #148 from PR #149).
- Time interval script (fix #145 from PR #147) is now fixed and usable as expected
- Plugin menu is now correctly removed from bar when plugin is uninstalled or reloaded
- update documentation
- Restore
_is_extraction_data
var, fix #136 - Update SQL views, fix #135
- Update deps
- Change wiki link to github pages
- Update various dependencies (almost on github actions scripts)
- Migrate wiki docs to github pages using sphinx
- Update github workflows
- Update plugin name
- Move refresh data from plugin menu to plugin settings window
- Load plugin menu on plugin startup
- Update queries
- New pre-commit SQL formatter
- Update tester github workflow
- Fix typing error on windows installs
- Migrate startup tasks to a processing algorithm
- Update metadata
- Change experimental status to false
- fix error on empty layer check
- update Changelog.md for
qgis-plugin-ci
- fix translation environment
- test de changelog
Nothing
- Code refactoring, plugin is now using a QgsProcessing generic class, shared with all algorithms.
- Repository architecture is now based on QGIS Plugins templater.