plegall
7f2df44417
use SSH url for github
2021-03-19 14:12:38 +01:00
MatthieuLP
4bc1c26994
Fix View managment for plugin and album
...
Fixed bug on first page load no checkbox was checked
2021-03-19 13:35:32 +01:00
MatthieuLP
54320d4043
fixes #1355 alternative view for plugin manager
2021-03-18 15:29:56 +01:00
plegall
5bc04d1143
issue #1118 missing code in d0497f0
2021-03-09 11:52:33 +01:00
plegall
d0497f035c
fixes #1118 competition between regexp models
2021-03-09 11:32:36 +01:00
plegall
a02edff655
fixes #1352 check language name (user input)
2021-03-08 14:59:07 +01:00
plegall
649e73c89b
fixes #1334 change syntax to be compatible with PHP 5.3
2021-03-08 14:27:35 +01:00
plegall
26cc5d130f
fixes #1361 check related albums against permissions
2021-03-08 12:55:56 +01:00
plegall
917c733092
fixes #1344 add auth exception for pwg.images.uploadAsync
...
This method handles its own authentication and can be called by an anonymous request. Thus it should not be blocked by a $conf[guest_access] setting set to false.
2021-03-05 16:35:09 +01:00
plegall
e64acd03c5
fixes #1358 automatic call to pwg.extensions.checkUpdates can be deactivated
2021-03-05 12:19:56 +01:00
plegall
e86d5525d0
fixes #1357 incorrect day due to timezone offset
2021-03-05 11:27:58 +01:00
plegall
370ba453a2
fixes #1342i, fixes #1354 : new way to calculate dashboard storage
2021-03-05 10:49:05 +01:00
plegall
9cebf85c82
fixes #1336 alternate views for album manager
...
* in addition to "tile" view introduced in Piwigo 11, we add "compact" and "lines" views
* implemented by @MatthieuLP as cat_list_new in a custom branch, manually merged by @plegall on master
2021-03-04 14:42:06 +01:00
plegall
28d1e970e5
issue #1336 : Fontello, added 3 Icons for layout switch
2021-03-04 12:12:49 +01:00
MatthieuLP
1233694048
Issue #1323 : Fixing random album ranking in album manager.
...
Fixed when moving ONE album but moving 4+ sub-albums to root still makes random result :/
2021-02-26 15:37:45 +01:00
MatthieuLP
86c5611562
fixes #1319
...
* Fixing parent definition when moving sub-album "Before" other album
2021-02-05 18:00:41 +01:00
plegall
b63ecd19bd
fixes #1313 replace curly braces by brackets
2021-02-05 11:50:26 +01:00
plegall
9c1f6c0c04
fixes #1322 class attributes must be defined in contructor
2021-02-05 11:36:56 +01:00
plegall
eadc846bf6
add debug on activity chart data calculation
2021-02-05 10:14:08 +01:00
plegall
ea69988eac
fixes #1317 remove cache directory size calculation
2021-02-05 10:12:05 +01:00
plegall
82f6371955
fixes #1315 filter on tags no longer cares about case
...
* searching "Pa" will find both "Pasta" and "pasta"
* the searched word can be "included" in the result, not only "starting with". "ta" will find "pasta".
Thanks to @dawsk-2021 in issue #1320
2021-02-05 09:39:14 +01:00
plegall
a9f4449f4b
fixes #1314 store orphan tags deletion message in session
...
... so that's it remains available after the redirect
2021-02-02 18:19:45 +01:00
plegall
c88daa88fa
fixes #1311 #1312 better transmit the tags array from PHP to TPL/JS
...
* the quotes needs to be escaped
* simpler (for orphans) to transmit array in the JS instead of HTML attribute (we might need to do the same for the whole list of tags)
2021-02-02 16:16:56 +01:00
plegall
86047e2280
fixes #1307 render album name on 11.x new features
...
* related albums
* move albums
* search albums
2021-01-31 14:00:08 +01:00
plegall
db65aa51d5
fixes #1297 check output buffer before cleaning it
2021-01-29 14:50:59 +01:00
plegall
cca28340be
fixes #1304 activity table might be totally empty in the X last weeks
2021-01-29 14:34:56 +01:00
plegall
3a0e2ca38d
fixes #1303 move week numbers search out of cache generation block
2021-01-29 14:31:30 +01:00
plegall
1efa9de2a6
fixes #1302 keyboard shortcut / to filter plugins
2021-01-28 16:24:41 +01:00
plegall
7c9e4616c2
fixes #1295 do not hide inactive plugins right after an activation
...
So that you save a click (to show inactive plugins) after an update (which deactivate all plugins)
2021-01-28 15:26:29 +01:00
plegall
82ecffad37
fixes #1301 force reset cache size from session
2021-01-27 20:23:52 +01:00
plegall
cac24635a9
fixes #1300 fall back on exec(du) instead of pure PHP to calculate cache size
...
This algorithm does not work for Windows and when "exec" is disabled. But not having this cache size is not a major issue. What is a problem is when calculating the cache size breaks the execution, which must be avoided.
2021-01-27 19:46:53 +01:00
plegall
c97d8930bc
fixes #1299 add tooltip on inactive settings button for plugin
2021-01-27 19:40:24 +01:00
plegall
d1975a4502
fixes #1298 always show the theme configuration button
2021-01-27 19:36:09 +01:00
plegall
c25fce65b1
fixes #1294 use branch number to generate download code for update
2021-01-22 17:10:57 +01:00
plegall
e848025f39
fixes #1257 avoid warning on PHP 7.4
2021-01-22 12:23:09 +01:00
plegall
6772da4ab2
fixes #1293 dashboard activity chart, activity chart optimized
...
* make the biggest part of aggregations in the database directly
* use a 5 minutes cache in user session
This cache is not optimal. No reason to make it specific to the user session, no reason to
recalculate previous days each time. To be improved. It was urgent to find a fix for
Piwigo 11.1.0.
2021-01-22 11:54:36 +01:00
plegall
86d212f4f1
fixes #1292 ability to avoid the reserved words escape in pwg_query
...
Useful for conf_update_param because we don't want any modification in the config.value and we know we won't use the reserved words in the SQL.
2021-01-21 16:10:36 +01:00
plegall
6704632263
fixes #1291 change syntax to keep compatibility with PHP 5.3 (for now)
2021-01-21 11:01:18 +01:00
plegall
ab81e7707f
fixes #1290 avoid calling external command to calculate directory size
...
+ add a 5 minutes cache to avoid calculating cache size too often
* tested with anold PHP 5.5 (could work with earlier versions, but I prefer to not take the risk)
2021-01-21 10:39:47 +01:00
Thibautg16
17f4b8dbd6
fix issue 1284
2021-01-21 10:02:24 +01:00
Thibautg16
355e05adff
fix issue 1284
2021-01-21 10:02:24 +01:00
plegall
b7ba2e40d7
better display of buttons after upload (new margin for success info)
2021-01-18 17:31:12 +01:00
plegall
8ba76fd406
issue #1272 forgot to create index during install
2021-01-18 17:30:43 +01:00
plegall
cbb9010ab6
fixes #1283 : force UsersCache reload when opening Group Manager
...
quick & dirty fix, must be improved
2021-01-18 16:57:54 +01:00
plegall
3130c08c75
less greedy regexp selector, to detect piwigo-videojs settings page
2021-01-17 20:00:27 +01:00
plegall
6005901356
same margin around error/success/warning/messages boxes for top/right/bottom/left
2021-01-17 19:59:34 +01:00
plegall
411ddc553f
next release will be 11.0.0
2021-01-08 12:07:06 +01:00
plegall
d71d69dbe7
fixes #1277 ability to activate plugin link only for webmasters
2021-01-06 15:03:09 +01:00
plegall
4e1ab21028
groups: set page title with template var instead of fake H2
2021-01-06 10:29:21 +01:00
plegall
4f2a851940
groups: l10n everything
2021-01-06 10:23:24 +01:00