440 Commits

Author SHA1 Message Date
Juergen E. Fischer
2cb6982113 release.pl: stay on same master* branch
(cherry picked from commit cc429785edd16a91f7118cb7a1b964492988546f)
2016-10-22 12:28:44 +02:00
Juergen E. Fischer
5c47bd6972 release.pl:
* allow minor releases from master_2 branch
* convert windows splash screen to BMP3 from PNG

(cherry picked from commit 09db6e4a00dda3b573cda7be938d46e8def66bef)
2016-10-20 18:22:57 +02:00
Juergen E. Fischer
14fbb942c7 qgm2cpp.pl fix 2016-10-18 12:07:28 +02:00
Juergen E. Fischer
522013b80e scripts/scandeps.pl: avoid duplicate build depends 2016-10-17 15:59:45 +02:00
Juergen E. Fischer
d9349e5bbb update configuration settings to qgis3 2016-10-06 11:40:42 +02:00
Nyall Dawson
377de52b38 Port generate_test_mask_image.py to python3 2016-10-04 09:22:40 +10:00
Nyall Dawson
456069207e Merge pull request #3554 from nyalldawson/parse_dash
New script to handle multiple render results from a dash results page
2016-10-03 19:13:40 +10:00
Juergen E. Fischer
ffaffadbfa fix typos 2016-10-01 17:58:12 +02:00
Nyall Dawson
a07a57e608 Add new script to handle multiple render results from a dash
results page in an interactive way

Allows generation and tweaking of mask images while previewing
the result
2016-10-01 14:29:43 +10:00
Nyall Dawson
67d5e19303 Update test masks (Qt5 on Fedora) 2016-09-29 12:23:02 +10:00
Médéric RIBREUX
ee87b0dbc9 [PyQt] Add a lib2to3 custom fix to handle QFileDialog methods in PyQt5 2016-08-21 10:35:32 +02:00
Juergen E. Fischer
3f22a7a77f another scripts/replacev2.sh with minor manual fixes 2016-08-10 12:12:28 +02:00
Juergen E. Fischer
6306fb8a9f replacev2.sh: add file renames 2016-08-10 12:12:28 +02:00
Juergen E. Fischer
8a4574436f replacev2.sh: replace V2 classes and methods 2016-08-10 12:08:52 +02:00
Juergen E. Fischer
b642c02705 doc/TRANSLATORS in an output file (followup 156db22) 2016-07-21 10:04:04 +02:00
Juergen E. Fischer
3da19183dc release.pl: use 99 instead of 999 for premajor minor 2016-07-10 20:53:59 +02:00
Juergen E. Fischer
b649c0bf20 release.pl:
* add second 'master' branch for interim release before a new major release
* allow to skip transifex update
2016-07-02 18:36:58 +02:00
Juergen E. Fischer
9446b20fe1 [gui/hidpi] scale splash screen on startup not on release 2016-07-02 17:44:22 +02:00
Juergen E. Fischer
b369b20843 remove_temporary_files.sh: add .new from addcopyrights.sh 2016-06-22 11:12:48 +02:00
Juergen E. Fischer
6e66eef1ef add missing copyright headers 2016-06-03 10:33:09 +02:00
Juergen E. Fischer
840022d772 fix indentation and some typos 2016-06-02 21:29:35 +02:00
Juergen E. Fischer
797826ea5b spelling fixes 2016-05-31 03:36:27 +02:00
Juergen E. Fischer
aef3dd4da4 remove svn references from prepare-commit.sh and make it work from anywhere in the repository 2016-05-26 17:17:24 +02:00
Matthias Kuhn
a349e702cc Fix from PyQt.xy > from qgis.PyQt.xy import leftovers 2016-05-14 00:38:19 +02:00
Nyall Dawson
948c1f0298 Temporarily fix generate_test_mask_image.py by rolling back to Qt4 2016-05-10 06:52:54 +10:00
Juergen E. Fischer
919c54ef5f release.pl: don't created branches from tag names 2016-05-04 13:20:10 +02:00
Denis Rouzaud
8071acd064 move PyQt compat folder to python/qgis 2016-04-29 14:10:26 +02:00
Robert Szczepanek
ee5548b27a Add Polish translators 2016-04-24 22:15:29 +02:00
Matthias Kuhn
1c6b298833 Add unicode_keep_u fixer 2016-04-15 09:20:40 +02:00
Nyall Dawson
4bbe318c20 [symbology] Remove distorted star symbol 2016-04-12 12:12:57 +10:00
Jürgen Fischer
60ada1185e Merge pull request #2946 from sebastic/debian
Debian packaging improvements
2016-04-07 08:59:58 +02:00
Nyall Dawson
54d093ed48 Function argument name should not be translatable 2016-04-04 13:59:22 +10:00
Nyall Dawson
ae00eb965c [FEATURE] Allow expression functions to use named parameters
This commit sets the framework for allowing expression functions to
use named parameters. Ie, instead of:

clamp(1,2,3)

you can use:

clamp( min:=1, value:=2, max:=3)

This also allows arguments to be switched, eg:

clamp( value:=2, max:=3, min:=1)

Additionally, it allows for a more structured definition of function
parameters to handle optional arguments and default values for
parameters. These are currently being done using a hacky infinite
argument list.

I've utilised the postgres ':=' syntax for specifying named arguments
to avoid potential collisions which may arise with the equality test
if we re-used just the '=' operator alone.

Sponsored by North Road
2016-04-04 13:59:13 +10:00
Juergen E. Fischer
9c2473df52 fix indentation 2016-04-03 01:56:21 +02:00
Juergen E. Fischer
42e42f77b4 2to3: avoid duplicate transformation of print (followup c4d9b0a) 2016-04-01 22:12:09 +02:00
Juergen E. Fischer
4f6c271490 move new composer tests to pyqt wrappers (followup 7a8a541 and f413046) 2016-04-01 15:52:51 +02:00
Juergen E. Fischer
c4d9b0a242 2to3: drop fix_print and avoid double parens in fix_print_with_import 2016-04-01 12:02:14 +02:00
Matthias Kuhn
18cdad9956 Convert print function to py3 style in tests 2016-03-31 17:20:53 +02:00
Marco Bernasocchi
2fb71b02c4 Protect process_contexthelp.py from IOError 2016-03-31 10:18:57 +02:00
Nyall Dawson
47cc4473c7 Fix generate_test_mask_image script 2016-03-31 16:44:32 +11:00
Juergen E. Fischer
b1a4ef27da prepare-commit.sh: show progress 2016-03-25 20:29:18 +01:00
Bas Couwenberg
7248d586bf Fix 'nubmer' typo, replace with 'number'. 2016-03-25 16:55:24 +01:00
Juergen E. Fischer
8af5edce12 pyqtwrapper: update some remaining scripts 2016-03-25 10:42:17 +01:00
Juergen E. Fischer
ded1e045c9 indentation fix 2016-03-23 08:06:22 +01:00
Juergen E. Fischer
45c9ea2355 2to3:
* drop libpasteurize.fixes.fix_division
* replace lib2to3.fixes.fix_import with libfuturize.fixes.fix_absolute_import (with PyQt exclude plus AlgorithmsTestBase)
* drop lib2to3.fixes.fix_print (replaced with libfuturize.fixes.fix_print_with_import)
2016-03-23 01:14:33 +01:00
Juergen E. Fischer
00f8eff034 update_ts.sh: pulling doesn't require a build directory 2016-03-22 02:44:21 +01:00
Juergen E. Fischer
719182fe3a scripts/widgets_tree.py: switch to PyQt wrappers and reformat 2016-03-21 17:00:26 +01:00
Juergen E. Fischer
93aedcd14d scripts/mkuidefaults.py: switch to PyQt wrappers and reformat 2016-03-21 17:00:26 +01:00
Juergen E. Fischer
d25c253d87 2to3:
* add fixes
* pyqt fixer: include some QtSql symbols and remove imports
  which only symbol was removed (eg. SIGNAL)
2016-03-21 16:59:30 +01:00
Juergen E. Fischer
fb9d60d7c6 2to3: add fixes 2016-03-20 16:31:05 +01:00