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

Subplots are removed when selecting other items in the canvas #264

Closed
wants to merge 58 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
2ba25ed
Allow to choose the gridaxis color of the plot (#259)
ghtmtt Mar 19, 2021
f14ca66
move layout properties to layout options group in widget
Mar 22, 2021
8acb437
hide axis min/max group and label if not needed
Mar 22, 2021
e518f0e
Remove spacer at manual bin size and bar gap properties
Mar 22, 2021
a096415
move more layout properties to layout option group
Mar 23, 2021
25ad00c
Move non-layout properties to first page on widget
Mar 26, 2021
889d219
Merge pull request #260 from SGroe/layout_property_widget
Mar 26, 2021
a5a1d44
when opening point to the first widget page
ghtmtt Mar 30, 2021
c2fd358
Revert "when opening point to the first widget page"
ghtmtt Mar 30, 2021
0e288e4
Expose Dataplotly on QGIS Server for a GetPrint request (#266)
Gustry Sep 28, 2021
495eaa8
bump version 3.8
ghtmtt Sep 28, 2021
3ece8d6
wrong panel on start fix #267
ghtmtt Sep 28, 2021
4e05ca4
bump version 3.8.1
ghtmtt Sep 28, 2021
097742f
Add plugin help button and remove extra menu (#268)
Gustry Oct 22, 2021
6c4b6d5
enable bins box when checkbox is checked fix #269 (#273)
ghtmtt Nov 2, 2021
ac75e1e
Fix TypeError with Python 3.10 (#276)
m-kuhn Feb 14, 2022
1132196
Add options to change title, xticks and yticks font sizes. (#278)
giliam Mar 10, 2022
1c20d52
bump version 3.9
ghtmtt Apr 11, 2022
be0691a
Fix #237 add data-driven color to Polar Plot marker color (#283)
jmonticolo Apr 20, 2022
e950661
Fix "Build a generic plot" processing algorithm (#285)
agiudiceandrea May 13, 2022
17526f3
CI - Use QGIS-Plugin-CI for packaging the plugin (#281)
Gustry Jun 1, 2022
606603b
Lint - Fix tests (#287)
Gustry Jun 1, 2022
b839896
update QGIS release in testing suite (#279)
ghtmtt Jun 1, 2022
fa8a93a
Update .gitignore with files from qgis-plugin-ci (#289)
Gustry Jun 21, 2022
c31674f
Update some deprecated notices about subplots (#290)
Gustry Jun 22, 2022
8638168
[feature] New custom function to get the colors from categories used …
ghtmtt Aug 20, 2022
b37aaee
release 3.9.1
ghtmtt Aug 20, 2022
3372e72
fix action and release 3.9.1
ghtmtt Aug 20, 2022
cb0f635
fixing tests (#296)
ghtmtt Aug 21, 2022
d48fc26
add test badge
ghtmtt Aug 21, 2022
07976c1
fix wrong button for 2dhistogram and contour (#297)
ghtmtt Aug 21, 2022
d626e43
fix stacktrace when removing all the plots in the print layout (#298)
ghtmtt Aug 21, 2022
9f62843
Refactor Processing algorithm (#300)
ghtmtt Aug 23, 2022
bfc4e5a
fix signal when changing the plot idenx combobox (#301)
ghtmtt Aug 23, 2022
d0ad3f4
More Processing (#302)
ghtmtt Aug 30, 2022
ce4b3b1
Fix correct version in the changelog (#303)
Gustry Aug 30, 2022
f4cc7d4
Bar width data defined (#304)
ghtmtt Aug 31, 2022
b9003c8
update QGIS release in docker (#315)
ghtmtt Apr 4, 2023
985f113
WIP : Add multiple docks (#314)
jdlom Apr 13, 2023
380686f
Auto create clear plot (#318)
jdlom Apr 13, 2023
cb8883f
feat: add hole option to pie chart (#317)
jdlom Apr 17, 2023
3d0a3bb
update changelog for version 4.0.0
ghtmtt Apr 17, 2023
121f43d
try to fix qt5 installation trouble in workflow
ghtmtt Apr 17, 2023
aa4bf76
Fix bar width (#321)
ghtmtt May 12, 2023
1258d38
Python cleanup, raise to 3.7 minimum due to QGIS 3.28 (#323)
Gustry May 15, 2023
5129f4a
Python - Remove some unused code now that QGIS 3.28 is the minimum (#…
Gustry May 15, 2023
68f303c
fix : #324 key error pie_hole (#326)
jdlom Jun 23, 2023
c3f4e4e
prepare changelog for 4.0.2
ghtmtt Jun 24, 2023
7b5d552
Fix parsing changelog (#327)
Gustry Jun 26, 2023
95d3cde
Docs - Add some badges in the readme
Gustry Jun 26, 2023
db35c51
fix: really fix this time #324 (#329)
jdlom Jun 27, 2023
b6b0fe7
prepare changelog for 4.0.3
ghtmtt Jun 27, 2023
e14209b
Fix loading of the plugin without pandas installed (#332)
Gustry Jul 4, 2023
2c9a215
prepare changelog for 4.1.0
ghtmtt Nov 15, 2023
7ab2553
Do not add docks if self.iface is not defined when using qgis_process…
Gustry Feb 21, 2024
4319fbc
Deepcopy settings when creating factories (#356)
nyalldawson Oct 24, 2024
e6b8d9d
Update metadata.txt about homePage (#354)
Gustry Oct 24, 2024
b3e7b76
more complete gitignore file
ghtmtt Oct 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Release 🚀

on:
push:
tags:
- "*"

jobs:
release:

runs-on: ubuntu-latest
if: github.repository_owner == 'ghtmtt' && contains(github.ref, 'refs/tags/')

steps:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- uses: actions/checkout@v2

- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"

- name: Install Qt lrelease
run: |
sudo apt-get update
sudo apt-get install qtbase5-dev qt5-qmake qttools5-dev-tools

- name: Install Python requirements
run: pip install qgis-plugin-ci

- name : Get current changelog
run: qgis-plugin-ci changelog ${{ env.RELEASE_VERSION }} >> release.md

- name: Create release on GitHub
uses: ncipollo/[email protected]
with:
bodyFile: release.md
token: ${{ secrets.GITHUB_TOKEN }}

- name: Package and deploy the zip
run: >-
qgis-plugin-ci
release ${{ env.RELEASE_VERSION }}
--github-token ${{ secrets.GITHUB_TOKEN }}
--transifex-token ${{ secrets.TRANSIFEX_TOKEN }}
--osgeo-username ${{ secrets.OSGEO_USERNAME }}
--osgeo-password ${{ secrets.OSGEO_PASSWORD }}
--create-plugin-repo
2 changes: 1 addition & 1 deletion .github/workflows/test_plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

strategy:
matrix:
docker_tags: [release-3_16, release-3_18, latest]
docker_tags: [release-3_28, latest]

steps:

Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/transifex.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Transifex 🗺

on:
push:
branches:
- master
paths:
- '**.py'
- '**.ui'

jobs:
build:
runs-on: ubuntu-latest
if: github.repository_owner == 'ghtmtt'
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"

- name: Install Python requirements
run: pip install qgis-plugin-ci

- name: Push to Transifex
run: qgis-plugin-ci push-translation ${{ secrets.TRANSIFEX_TOKEN }}
161 changes: 155 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,157 @@
*.pyc
.idea/*
.backuputils.py
help/.tx/*
*.zip
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
*.pyc

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.noseids
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
.pybuilder/
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/

# Celery stuff
celerybeat-schedule
celerybeat.pid

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# pytype static type analyzer
.pytype/

# Cython debug symbols
cython_debug/

# Vscode
.vscode/

# Windows thumbs
Thumbs.db

# zip files
*.zip

# IDE
.idea/*

# Vscode
.vscode/*

# Test
*.qgs~
10 changes: 0 additions & 10 deletions .tx/config

This file was deleted.

Loading
Loading