forked from modxcms/evolution
-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathchangelog.txt
executable file
·4474 lines (4359 loc) · 290 KB
/
changelog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This file shows the changes in recent releases of Evolution CMS. The most current release is usually the
development release, and is only shown to give an idea of what's currently in the pipeline.
Evolution CMS 1.4.15 (Jul 12, 2021)
* [GitHub: 6a3cbda19] - fix phpthumb webp support (Dmi3yy)
* [GitHub: b0cb798d1] - manager (add) add check user and resource groups (Serious)
* [GitHub: b6726eadb] - manager (remove) remove preview to image TVs (Serious)
* [GitHub: d7319a548] - manager (add) add preview to image TVs (Serious)
* [GitHub: 8afe4a446] - Update DocLister.abstract.php (Dreamer0x01)
Evolution CMS 1.4.12 (Dec 21, 2020)
* [GitHub:#2c4e76676] - update TinyMCE (Dmi3yy)
* [GitHub:#6d4c526a0] - fix langs and typo (Dmi3yy)
* [GitHub:#005fec9b2] - Fix classes for the fontawesome icons (Oleg Nosov)
* [GitHub:#437225a40] - Update save_template.processor.php (zatomant)
* [GitHub:#d7983172e] - Update snippet.phpthumb.php (Andrey Myagkov)
* [GitHub:#301b83bb4] - Change string to a correct for a fontawesome class in manager. (Oleg Nosov)
* [GitHub:#626602019] - list of modules icons with class .fas or .fab are shown without margins. (Oleg Nosov)
* [GitHub:#34304c5eb] - Change table format for logs list so pagination become usable. (Oleg Nosov)
* [GitHub:#5daefd7f7] - Update phpcompat.class.inc.php (zatomant)
* [GitHub:#dcacfa757] - Update japanese-utf8.inc.php (Shobu UMEMURA)
* [GitHub:#1aa13c048] - Update files.dynamic.php (Mr B)
* [GitHub:#9ccf1d74f] - fix warning (Pathologic)
* [GitHub:#b62f7a317] - refactor backup manager (Pathologic)
* [GitHub:#cd8a83815] - refactor backup manager: dump structures before data (Pathologic)
* [GitHub:#778fc347b] - fix plugins install (Pathologic)
* [GitHub:#989386eef] - Update phpcompat.class.inc.php (zatomant)
* [GitHub:#526a2ef6a] - fix lost plugin events on install (Pathologic)
* [GitHub:#41aa87b5f] - fix #1403 timestamps for users (Pathologic)
* [GitHub:#3fc9f616b] - fix save verified field from manager (Pathologic)
* [GitHub:#ab0011f96] - Update phpthumb.class.php (zatomant)
* [GitHub:#a33a0ea7c] - Fixed a bug that caused the double "-" will be lost when editing a url. (Segr)
* [GitHub:#0690d7c05] - Removed the extra " - " in the browser title in manager. (Segr)
* [GitHub:#ad84795ad] - fix pager (mnoskov)
* [GitHub:#4da2e5ecf] - fix mcpuk directory check (dzhuryn.volodymyr)
* [GitHub:#38331d202] - Update qm.inc.php (Mr B)
* [GitHub:#10d2fac80] - Check doc to return to if cancel button used (Mr B)
* [GitHub:#10f96625d] - fix breadcrumbs icons (liber87)
Evolution CMS 1.4.11 (Mar 13, 2020)
* [GitHub:#6f67301ba] - Update DocLister to 2.5.2 (Dmi3yy)
* [GitHub:#8d5b31b1f] - Update FormLister to 1.10.3 (Dmi3yy)
* [GitHub:#6e491904a] - keep plugins priority (mnoskov)
* [GitHub:#0859d1062] - getting installed plugin fix (mnoskov)
* [GitHub:#376d7f57c] - getting previous events fix (mnoskov)
* [GitHub:#449e8160e] - Update instprocessor.php (mnoskov)
* [GitHub:#1883666e4] - update bk manager (dzhuryn)
* [GitHub:#acc871ecb] - nested snippet 100->200 (Dmytro Lukianenko)
* [GitHub:#6f7ad2534] - Update russian.php (projkin)
* [GitHub:#e4c47375d] - remove event name duplicates (Pathologic)
* [GitHub:#425b623f8] - fix for nested snippet work with PHx (Dmi3yy)
* [GitHub:#21ae71665] - fix(forms.css): fixed height input (Serg)
* [GitHub:#7c44e274c] - fix(forms.css) changed height inputs (Serg)
* [GitHub:#f3be07dd7] - Fix missing panel toggle arrows (Mr B)
* [GitHub:#29f80ce9a] - Fix tree icon for private resource (Mr B)
* [GitHub:#6c5f69caa] - fix(modx.js): remove loader with locked resource (Serg)
* [GitHub:#787bf71c4] - fix #1261 mcpuk browser missing icons (Nicola)
* [GitHub:#53ec9444f] - Fix right arrow icon before element description (Sasha Beep)
* [GitHub:#d1a4f2e83] - fix demo site install (Pathologic)
* [GitHub:#22713e57e] - fix(modx.js): remove jQuery variable (Serg)
* [GitHub:#f5079d97f] - feat(modx.js): remove jQuery methods (Serg)
* [GitHub:#0fbd46f2a] - feat(modx.js): remove jQuery animate (Serg)
* [GitHub:#3a864cbc9] - fix #1246 (kivamp)
* [GitHub:#e08a7f971] - Fix fullscreen tinymce hiding buttons (Mr B)
* [GitHub:#8bcf79aa7] - fix icon in tree when move #1167 (Dmi3yy)
* [GitHub:#8bcf79237] - fix allert with error internet connection in Chrome (Dmi3yy)
Evolution CMS 1.4.10 (Nov 5, 2019)
* [GitHub:#9cdb6bca9] - Update FA5 in Elements Tree (Dmi3yy)
* [GitHub:#ce883d04a] - fix ignore failed_login_attempts setting (Pathologic)
* [GitHub:#373e4986d] - add field to represent user verification (Pathologic)
* [GitHub:#b32ab8947] - add drop index to prevent broken update (Pathologic)
* [GitHub:#cec06ebda] - fix easyui font awesome 5 icons (Pathologic)
* [GitHub:#3786c2c84] - Update Font Awesome to 5.7 Update Bootstrap to 4.3.1 (Dmi3yy)
* [GitHub:#c9aed1e20] - update Formlister (Dmi3yy)
* [GitHub:#07c2c8ab7] - update Doclister (Dmi3yy)
* [GitHub:#cacc09ba3] - added method for removing tabs (mnoskov)
* [GitHub:#e50fce470] - fix for empty tabs (mnoskov)
* [GitHub:#34a138591] - escape module parameters (mnoskov)
* [GitHub:#57ec953ec] - escape snippet parameters (mnoskov)
* [GitHub:#908b8429c] - escape plugin params (mnoskov)
* [GitHub:#ea8a7d448] - Prepare fixed (Kamil)
* [GitHub:#ef9334e39] - Call to undefined function evolutionCMS() fixed (Mikhail)
* [GitHub:#7ba1460bf] - set priority on install (Mikhail)
* [GitHub:#3616357f0] - priority saving (Mikhail)
* [GitHub:#ad912c87a] - eventlog wrap link (Alexander Sabanov)
* [GitHub:#6aede0628] - add mysql transactions support (Pathologic)
* [GitHub:#6d2980d5a] - fix #1134 (Serg)
* [GitHub:#78210a5bf] - Update composer.json (projkin)
* [GitHub:#3a8fbe416] - add dlmenu and doclister (Andrey)
* [GitHub:#1300b381b] - Update table site_tmplvars, change field "type" #1156 (Dmi3yy)
* [GitHub:#61a15bd44] - Fix manager styles (Ruslan Aleev)
* [GitHub:#a36a9f71b] - add webkit scroll (Ruslan Aleev)
* [GitHub:#00c701608] - fix translates (Ruslan Aleev)
* [GitHub:#d7424dd80] - Refactor icons and styles (Ruslan Aleev)
* [GitHub:#3cb00b9e8] - remove fixed id from system event names (Pathologic)
* [GitHub:#70a729c00] - Error : Undefined index: enable_filter (Kamil)
* [GitHub:#b7f849d21] - fix manager login lang override (Mr B)
* [GitHub:#e95d9a966] - SQL syntax for mysql 8 (Kamil)
* [GitHub:#cdda27b0a] - Update main.css (Kamil)
* [GitHub:#57cd09339] - Revert "updatePubStatusChecked" (Pathologic)
* [GitHub:#585ab8f89] - updatePubStatusChecked (Kamil)
* [GitHub:#46b92fe68] - SQL syntax for mysql 8 (Kamil)
* [GitHub:#b5e082576] - fix (core) Fix regular for aliaslistingfolder (Serious)
* [GitHub:#7a29f18c0] - Update snippet.phpthumb.php (Kamil)
* [GitHub:#e16b6543b] - fix (core) Fix data.sql (Serious)
Evolution CMS 1.4.9 (May 29, 2019)
* [GitHub:#e882db74d] - update phpthumb add support WebPConvert (Serious)
* [GitHub:#f0bd80324] - 1.4.9 Version Notices (help) (Nicola)
* [GitHub:#22a116761] - add(core) rename event OnErrorAlert to OnLogEvent. (Serious)
* [GitHub:#23b85602a] - add(core) add new event OnErrorAlert. Invoked after save data to event_log. (Serious)
* [GitHub:#665d09cee] - set auto_template_logic -> sibling by default (Dmi3yy)
* [GitHub:#394660fdf] - Update mutate_web_user.dynamic.php (Mr B)
* [GitHub:#8a9682163] - Update mutate_user.dynamic.php (Mr B)
* [GitHub:#25dbb695b] - Fix - display thislogin date for users / managers (Mr B)
* [GitHub:#d342d5958] - fix(security): update htaccess (Dmi3yy)
* [GitHub:#6ecc1190e] - Fast fix #1058 but need refactor (Dmi3yy)
* [GitHub:#719b3b7fe] - fix(core): modx.js dataTransfer.dropEffect = 'link' replace to 'move' for Safari (Serg)
* [GitHub:#5940e5606] - Error : Undefined index (Kamil)
* [GitHub:#87f44884b] - Update config.inc.tpl (Dreamer0x01)
* [GitHub:#2db0a3943] - fix missing quality setting for png files (Pathologic)
* [GitHub:#c6bdc2570] - Undefined index: enable_filter (Kamil)
* [GitHub:#fd8ca0de2] - fix google and yandex map (Владимир)
* [GitHub:#2a961c71c] - fix when one doc have many tabs one have one or two (Владимир)
* [GitHub:#39a850be6] - fix(dbapi): unpacking the host string in a circle (Agel_Nash)
* [GitHub:#2495a7672] - fix wrong language codes (#976) (Pathologic)
* [GitHub:#9a20d8d6d] - fix(core): undefined variable (Serg)
Evolution CMS 1.4.8 (Jan 09, 2019)
* [GitHub:#b5a75a063] - [fix] Lightness navbar logo at width < 1200px (Nicola)
* [GitHub:#f25f3deaf] - [fix] ElementsInTree should be sorted by name #887 (Dmi3yy)
* [GitHub:#a191ca1cc] - [fix] ser Icon Standardisation Suggestion #349 (Dmi3yy)
* [GitHub:#9024535fb] - [refactor] clear (core) welcome.static @IF (Dmi3yy)
* [GitHub:#f72a18f43] - [fix] (core) buttons on welcome page, not work with Permission (Dmi3yy)
* [GitHub:#9a169f379] - [refactor] (Extras) Updater - update only minor version(1.4 to 1.5, 2.0 to 2.1) (Update across major version (1.4 to 2.0 or 2.6 to 3.0 ) need do manual or from another plugin) (Dmi3yy)
* [GitHub:#6b7901402] - [fix] (extras) lang typo error (Dmi3yy)
* [GitHub:#f04a856fc] - [fix] only if Enable modifiers in settings: #1200 Enable modifiers in Wayfinder - add nested placeholders to $tags like for $fetch = "phx:input=`[+wf.linktext+]`:test". (Dmi3yy)
* [GitHub:#09a17870a] - [fix] (widgets): style fix (Serg)
* [GitHub:#9e8c2d8e5] - [fix] (managermanager): path to the jquery file (Agel_Nash)
* [GitHub:#55c39917c] - [feat] (manager) show template id in select on Document edit page (Dmi3yy)
* [GitHub:#c43ac0f13] - [fix] (core): typo (Agel_Nash)
* [GitHub:#61815afa8] - [feat] (core): more compatible with 2.x branch (Agel_Nash)
* [GitHub:#db1127ae7] - [style] (lexicon): spanish (Agel_Nash)
* [GitHub:#9727fb352] - [fix] (phpthumb): skipping svg files (Serg)
* [GitHub:#080f2492f] - [fix] (ElementsInTree) Categories are not sorted by name ASC (Nicola)
Evolution CMS 1.4.7 (Dec 10, 2018)
* [GitHub:#92a15c0b6] - [fix] for php7: ddmultiplefields.php http://modx.im/blog/addons/4265.html#comment44232 (Dmi3yy)
* [GitHub:#fa8ba4219] - [fix] typo for 7.3 (Dmi3yy)
* [GitHub:#e132703e4] - [fix] phpthumb to 1.3.3 (Agel_Nash)
* [GitHub:#116f383be] - [fix] Php Thumb image cache path #896 (Nicola)
* [GitHub:#e4ef60a24] - [fix] Undefined index (Agel_Nash)
* [GitHub:#24bd8dd49] - [fix] Save module name and code, if module exist (issue #892) (Serg)
* [GitHub:#4afe71703] - [fix] Form attribute "action" fixes (issue #892) (Serg)
* [GitHub:#e88614d3c] - [fix] #892 duplicated element name issue (Serg)
* [GitHub:#e194b6b59] - [fix] sort modules by name (#887) (Nicola)
* [GitHub:#288a6f96b] - [fix] sort elements by name (#887) (Nicola)
* [GitHub:#e353554f3] - [fix] #888 The FileSource 0.1 is dependent on the mootools (Serg)
* [GitHub:#c5b019ca9] - [fix] #874 Remove fullstop at end of new password displayed on screen(Serg)
* [GitHub:#24eaa5a3d] - [Fix] #882 broken extras module link in RSS check (Nicola)
* [GitHub:#f644a6b1e] - [fix] #869 (missing 1 lexicon) (Agel_Nash)
* [GitHub:#30f27489c] - [fix] update ElementsInTree 1.5.10 (Agel_Nash)
* [GitHub:#403e590d1] - [fix] Update DocInfo and DocLister (Agel_Nash)
* [GitHub:#aa5086c01] - [improvement]colorpicker added (mnoskov)
* [GitHub:#eb2e24936] - [improvement] Enable Mootools Setting Option (Nicola)
* [GitHub:#d4200c3f2] - [improvement] rename extras.evolution-cms.com to extras.evo.im (Dmi3yy)
* [GitHub:#cadb97e2a] - [typo] format code save_user_processor (Serg)
* [GitHub:#d9b8e3c84] - [typo] fix typo in color mode name (Nicola)
* [GitHub:#8130c764c] - [typo] code tag for singleton example (Nicola)
* [GitHub:#91e36991d] - [delete] deprecated snippet DLBuildMenu (Pathologic)
* [GitHub:#a97b1b5f7] - [info] Update 1.4.7 Version Noticies (help) (Nicola)
* [GitHub:#9a174d0b2] - [info] 1.4.6 Version Noticies (help) (Nicola)
* [GitHub:#9e209b4ef] - [info] 1.4.5 Version Noticies (help) (Nicola)
* [GitHub:#bdce11559] - [info] 1.4.4 Version Noticies (help) (Nicola)
* [GitHub:#fd5dfab2c] - [info] 1.4.3 Version Noticies (help) (Nicola)
* [GitHub:#918a14bab] - [info] 1.4.2 Version Noticies (help) (Nicola)
* [GitHub:#a9830af28] - [lang] Polish translation (#891) (Piotr Matysiak)
* [GitHub:#640eea798] - [lang] Updated Italian Language (#861) (Nicola)
* [GitHub:#c28388868] - [lang] Resolve #869 (Agel_Nash)
* [GitHub:#c443927e4] - [lang] #859 (missing 6 manager, 2 installer) https://github.com/evolution-cms/evolution/issues/853#issuecomment-435479192 (Agel_Nash)
Evolution CMS 1.4.6 (Nov 02, 2018)
* [GitHub:#3d445623f] - OutdatedExtrasCheck add url for check Outdated (Dmi3yy)
* [GitHub:#4265bc48e] - Исправлена бага. Если создать ресурс через modResource и получить для него урл и Использовать AliasListing только для Папок [(aliaslistingfolder)] стояло Да то получал /{doc_id}.html вместо нормального урла (dzhuryn)
* [GitHub:#bad13152e] - Исправлена бага. Если создать ресурс через modResource и получить для него урл то в место /proizvoditeli/proizvoditel_1541140716/kolekciya_1541140716/tovar_1541140716.html получал /tovar_1541140716.html из за отсутствия alias_visible (dzhuryn)
* [GitHub:#9aa1c9369] - Remove debug (Agel_Nash)
* [GitHub:#c7cd2ccce] - Update OutdatedExtrasCheck (Agel_Nash)
* [GitHub:#d232ae622] - fix existes GET[q] (Serg)
* [GitHub:#d5827b63c] - moved menu item version in config menu (Serg)
* [GitHub:#cfbe776cd] - Code refactoring the OutdatedExtrasCheck plugin (Agel_Nash)
* [GitHub:#c0a82df48] - Update the OutdatedExtrasCheck lexicon (Agel_Nash)
* [GitHub:#e3d08940d] - Reformat source code the OutdatedExtrasCheck plugin (Agel_Nash)
* [GitHub:#5b837b592] - Up version OutdatedExtrasCheck (Agel_Nash)
* [GitHub:#31e1e651c] - Move source code the OutdatedExtrasCheck plugin into file (Agel_Nash)
* [GitHub:#907a44ea2] - Resolve #845 (Agel_Nash)
* [GitHub:#0a902dab3] - remove redundant property (Pathologic)
* [GitHub:#a23c162bc] - DocLister 2.4.0 (Agel_Nash)
* [GitHub:#ad905490f] - update Filters.php (Pathologic)
* [GitHub:#e5da5675c] - change PHP version in lexicons (Pathologic)
* [GitHub:#a315fe63f] - remove dot from password output (Pathologic)
* [GitHub:#faba1ef7a] - update FormLister to 1.8.0 (Pathologic)
* [GitHub:#917cdb6f9] - Relation to #876 (Agel_Nash)
* [GitHub:#57682bc13] - Refactor the send_errormail cell (Agel_Nash)
* [GitHub:#811f5903b] - #868 (Installer + Update date) (Agel_Nash)
* [GitHub:#11aad77cb] - Polish translations (Manager) (Piotr Matysiak)
* [GitHub:#39654dc2a] - Polish translations (Installer) (Piotr Matysiak)
* [GitHub:#49343d989] - Rename "Создать PHP-файл" to "Создать файл" (#872) (Ser1ous)
* [GitHub:#31ace520a] - Resolve #868 (Agel_Nash)
* [GitHub:#c3ddd2228] - Remove duplicate lexicon (Agel_Nash)
* [GitHub:#c907375de] - Replacing div to pre at the messageQuit method (Agel_Nash)
* [GitHub:#0442323ea] - Fix #825 (Agel_Nash)
* [GitHub:#2e247bfd9] - errorHandlers (Agel_Nash)
* [GitHub:#4d5566bb1] - Resolve #792 (Agel_Nash)
* [GitHub:#343ff4070] - Update phpthumb snippet (Agel_Nash)
* [GitHub:#6aea8b048] - phpthumb 1.7.15 (Agel_Nash)
* [GitHub:#a233a3ff6] - Update DL for compability https://github.com/evolution-cms/evolution/commit/49fab5242971a42eb225c3186238d5649f2e328e (Agel_Nash)
* [GitHub:#f1b0d559b] - fix JS event for radio[chunk_processor] (Serg)
* [GitHub:#de24eaa3f] - add JS event for radio[chunk_processor] (Serg)
* [GitHub:#dc02ce968] - MM removed unused script Tips (Serg)
* [GitHub:#64fccfefa] - fix #818 (Serg)
* [GitHub:#b59bc534d] - fix ip lenght for work with ipw6 #849 (#850) (Ser1ous)
* [GitHub:#49fab5242] - Fix #848 (Agel_Nash)
* [GitHub:#81e10ea54] - Fix #280 (Agel_Nash)
* [GitHub:#2ffdb4e68] - #834 (Agel_Nash)
* [GitHub:#ca4cb5498] - Fix #834 (Agel_Nash)
* [GitHub:#fcc2024e4] - addOutput method (Agel_Nash)
* [GitHub:#c57a5d844] - FIX Lighness Navbar Logo (#827) (Nicola)
* [GitHub:#ada15c795] - event reference fix (#844) (mnoskov)
* [GitHub:#99ba335ac] - fix style loginform in dark mode (Serg)
* [GitHub:#07ca6dea6] - remove mootools.js (Serg)
* [GitHub:#7043a5321] - fix sysalert.display.inc.php (Serg)
* [GitHub:#c2b01a5a6] - fix popup.wrap (Serg)
* [GitHub:#3f846155d] - phpMailer update to 6.0.5 (Dmi3yy)
* [GitHub:#47011d823] - up ajaxSearch version to 1.12.0 in OutdatedExtrasCheck (Dmi3yy)
* [GitHub:#402a5e99d] - Fix #806 (Agel_Nash)
* [GitHub:#3261911f4] - Update snippet.docinfo.php (#806) (Anton Kanopkin)
* [GitHub:#ab1c9ec5a] - events stack (mnoskov)
* [GitHub:#1e59390d4] - events stack (mnoskov)
* [GitHub:#3d15cb1c7] - removing debug statement (Agel_Nash)
* [GitHub:#05a80d9f8] - Fix JS error – typo (esszett)
* [GitHub:#e8025d501] - Fix #26 (Agel_Nash)
* [GitHub:#be22213f0] - Change checking of manager mode / Part 2 (Agel_Nash)
* [GitHub:#46eaa39e6] - Resolve review in PR #779 (Agel_Nash)
* [GitHub:#e4231e872] - Fix #793 (Agel_Nash)
* [GitHub:#3c5aa9b8a] - Fix #828 (Agel_Nash)
* [GitHub:#270ae36c5] - Fix mysql 8.0 bug with copy tv #809 (Ser1ous)
* [GitHub:#615841010] - Refactoring DocumentParser::getHiddenIdFromAlias() (Agel_Nash)
* [GitHub:#6fa6950f0] - Fix #790 (Agel_Nash)
* [GitHub:#1684460b4] - Fix #784 (Agel_Nash)
* [GitHub:#af38bca42] - Fix #797 (Agel_Nash)
* [GitHub:#288068bb1] - Fix #535 (Agel_Nash)
* [GitHub:#27dce74cc] - resolve #819 (Agel_Nash)
* [GitHub:#0ca34ccf0] - improved loginbox styles (Nicola)
* [GitHub:#082db9992] - Update tree.php (Mr B)
* [GitHub:#9a956458d] - [I] Add title for theme mode icon (Mr B)
* [GitHub:#5abf6da33] - fix style on login light (Nicola)
* [GitHub:#4e9a12007] - wrong position (Nicola)
* [GitHub:#c824e55f1] - manager_theme_mode_message #818 (Nicola)
* [GitHub:#cc47a7c1c] - fix light login styles (Nicola)
* [GitHub:#128e35b88] - fix light login fields (Nicola)
* [GitHub:#9d2a81ada] - Updated extrascheck plugin v1.4.5 (Nicola)
* [GitHub:#f4e8d1b76] - Login form style Settings #800 (Nicola)
* [GitHub:#f786a4180] - [F] Fix unable to uncheck permissions (Mr B)
* [GitHub:#9799c7e13] - fix browser resize issues of kcfinder (Pathologic)
* [GitHub:#5471839a9] - fix escape name components (Serg)
* [GitHub:#f4632e571] - fix escape for widget docs (Serg)
* [GitHub:#f6d50671e] - fix escape search result (Serg)
* [GitHub:#9201cd8ea] - fix view svg (Serg)
* [GitHub:#f99b291dd] - Update search.static.php (luigif)
* [GitHub:#373c31cfe] - Update search.static.php (luigif)
* [GitHub:#bc457c79a] - Rename 01About_EVO.php to 01About_Title.php (luigif)
* [GitHub:#6385ac4ba] - Update mutate_categories.dynamic.php (luigif)
* [GitHub:#841ac1ff9] - fix not working clientResize option (Pathologic)
* [GitHub:#473725d08] - fixed #794 (Serg)
* [GitHub:#dc005e5cd] - fix #794 (Serg)
* [GitHub:#85094c9e5] - fix #780 (Serg)
* [GitHub:#149fdb0a2] - Revert "fix #792" (Serg)
* [GitHub:#86eebdd5c] - fix #792 (Serg)
* [GitHub:#a176c043e] - fix notice php7 (Serg)
* [GitHub:#8e30682a4] - Fix some XSS (Agel_Nash)
* [GitHub:#a7fe1cfbc] - Security Fix (Agel_Nash)
* [GitHub:#b59d1f57b] - Fix #789 (Agel_Nash)
* [GitHub:#2b8aaa622] - Fix #788 (Agel_Nash)
* [GitHub:#1845b64b2] - html_escape function (Agel_Nash)
* [GitHub:#79edb9ef5] - Change checking of manager mode (thalegion)
Evolution CMS 1.4.5 (Aug 07, 2018)
* [GitHub:#18627a876] - [F] fix #693 Drag/drop sortable lists (Serg)
* [GitHub:#9cdf9e173] - [F] fix #770 Restyle manager lockout page (Serg)
* [GitHub:#c4a06df62] - [F] fix tree update "Save and Quit" (Serg)
* [GitHub:#f11a627fb] - [I] add file browser events (Pathologic)
* [GitHub:#6ef91bc82] - [I] add more events (Pathologic)
* [GitHub:#618f4313f] - [F] fix #692 Manager left menu charset issue (dmi3yy)
* [GitHub:#a6fc60de7] - [F] fix #755 cookie context and lifetime (dmi3yy)
* [GitHub:#08aad4482] - [F] fix doclister (Pathologic)
* [GitHub:#b219ec85e] - [I] add support mysql 8.0 (Ser1ous)
* [GitHub:#6198dc5ac] - [F] fix #624 Issues for manager with no 'Interface Access' setting (Pathologic)
* [GitHub:#a1c3d37ab] - [F] fix #769 plugin settings get lost while upgrading to newer version (Pathologic)
* [GitHub:#26a430eb6] - [F] fix #730 Retain Plugin Event Execution Order When Upgrading (Pathologic)
* [GitHub:#c8080596b] - [F] update FormLister to 1.7.21 (Pathologic)
* [GitHub:#db41ba731] - [F] fix #767 Web Users not showing in Online Users (Pathologic)
* [GitHub:#747985a47] - [F] fix #368 problem with dublicete snippet (Pathologic)
* [GitHub:#a0c7f264c] - [F] fix for work with mysql 8.0 (Ser1ous)
* [GitHub:#04863cd88] - [I] Update mutate_user.dynamic.php (Mr B)
* [GitHub:#83550c437] - [I] Add username label (Mr B)
* [GitHub:#3130df11c] - [F] fix memory leak (Pathologic)
* [GitHub:#61cd0c0eb] - [F] fix #763 Evolution 1.4.5RC2 Does not work logo replacement(Serg)
* [GitHub:#3bed43eb9] - [F] fix text color in darkness mode (Serg)
* [GitHub:#196e815be] - [F] Fix saving web users (Mr B)
* [GitHub:#841db700d] - [F] fix #552 Weird Chunk Rendering When minifyphp_incache is enabled (Pathologic)
* [GitHub:#ce83e5411] - [F] fix checkVersion (Pathologic)
* [GitHub:#7626ccfbd] - [I] update FormLister (Pathologic)
* [GitHub:#553ff5332] - [F] fix #519 2 functions parseProperties (Pathologic)
* [GitHub:#b637d20ce] - [F] fix #556 Cli mode (Pathologic)
* [GitHub:#86ecaec70] - [F] fix #300 OnDocPublished add automatic start (Pathologic)
* [GitHub:#ac3033f12] - [F] fix #233 Disabling function touch generates error "Cannot access or create thumbnails folder." in media manager (Pathologic)
* [GitHub:#5223b3ab4] - [I] alter recent info table (Mr B)
* [GitHub:#d753660e0] - [I] add OnFileBrowserInit event (Pathologic)
* [GitHub:#5e0a3510f] - [F] fix #749 not bloced user (Serg)
* [GitHub:#5af0c3c4f] - [I] cancel close tabs for components (Serg)
* [GitHub:#b8a27cad0] - [F] fix #758 modxlink plugin (Pathologic)
* [GitHub:#3db936dab] - [I] events of directory delete (Pathologic)
* [GitHub:#57da95fee] - [F] fix #736 backup button back into the dashboard (dmi3yy)
* [GitHub:#63b229bf3] - [F] fix #750 tinymce 4 - link to images folder, not only to files (Pathologic)
* [GitHub:#3032cd717] - [I] stop username wrap if has spaces (Mr B)
* [GitHub:#f3639c642] - [F] Fix saving web user permissions (Mr B)
* [GitHub:#8e083becb] - [I] add File Browser events, skip thumbnails creation (Pathologic)
* [GitHub:#471b9e41a] - [I] add more File Browser events (Pathologic)
* [GitHub:#8ad6402a6] - [F] Fix #737 (Serg)
* [GitHub:#4a1f6972d] - [I] Update mainmenu.css (Mr B)
* [GitHub:#bc539c054] - [I] Update style.php (Mr B)
* [GitHub:#7132beb6b] - [I] Add time to dashboard resource edit dates (Mr B)
* [GitHub:#118f69e47] - [R] russian-UTF8.inc.php #728 (Agel_Nash)
* [GitHub:#62285b7b4] - [R] Update english.inc.php (Mr B)
* [GitHub:#d5d170404] - [I] Add confirmation for purge plugins (Mr B)
* [GitHub:#4143fea6b] - [F] remove docs from core FormLister #366 (dmi3yy)
* [GitHub:#3d178f654] - [F] fix #727 Ampersand (&) in Site Name escaped infinitely (Serg)
* [GitHub:#b5b88d912] - [F] Save and close global tabs (Serg)
* [GitHub:#239fda8a2] - [F] Fix html (Serg)
* [GitHub:#4d909750f] - [F] fix validator in FormLister (dmi3yy)
* [GitHub:#44ff0ff10] - [F] Fix #722 Issues with managing users (Serg)
* [GitHub:#9a64f25aa] - [F] Fix style left-menu position (Serg)
* [GitHub:#51f9102e0] - [F] Fix theme ajax.php (Serg)
* [GitHub:#3eda7b7d6] - [F] Fix add images in settings (Serg)
* [GitHub:#005993658] - [F] Fix notice variables (Serg)
* [GitHub:#952c85d0a] - [I] Action name for dashboard (Mr B)
* [GitHub:#25140784a] - [I] Add date to active users hit time (Mr B)
Evolution CMS 1.4.4 (Jun 08, 2018)
* [GitHub:#5d177a4ea] - [I] Auto set Sender (Евгений Борисов)
* [GitHub:#f13d19d60] - [I] Move color switcher icon (Mr B)
* [GitHub:#ee5cb56b2] - [I] Remove css / colour switch conflict (Mr B)
* [GitHub:#32d2165c7] - [I] Update save_user.processor.php (Mr B)
* [GitHub:#a450d22af] - [I] Trim user/webuser email address (Mr B)
* [GitHub:#cdbeaf8b9] - [I] Update web_user_management.static.php (Mr B)
* [GitHub:#82cda9654] - [I] Replace gender on user/webuser tables (Mr B)
* [GitHub:#b9c3e474c] - [F] - Ignored if default class is extended (Евгений Борисов)
* [GitHub:#dda339c27] - [I] config_mutator.php (Agel_Nash)
* [GitHub:#cb55e213c] - [I] Define MODX_CLI (Agel_Nash)
* [GitHub:#a3fc8c57c] - [I] refactoring webAlertAndQuit (Agel_Nash)
* [GitHub:#bbefb5a28] - [I] $_lang['invalid_event_response'] (Agel_Nash)
* [GitHub:#c60c6a8e6] - [I] OnBeforeMinifyCss (Agel_Nash)
* [GitHub:#81c160eea] - [I] Native support mixed types in a output statement (Agel_Nash)
* [GitHub:#019462178] - [F] Conflict with DLTemplate::renderDoc() (Евгений Борисов)
* [GitHub:#0f0095dd7] - [F] style for 1200px - (dmi3yy)
* [GitHub:#21b31569c] - Update preload.functions.inc.php (Евгений Борисов)
* [GitHub:#d568f89d2] - [I] Code style (Agel_Nash)
* [GitHub:#769270b96] - [S] Cross-Site Scripting https://www.exploit-db.com/exploits/44775/ Site name field XSS fix: https://github.com/nathunandwani/ClipperCMS/commit/f286fbfa81dc3728dbbf6d9d817c8848edcad0b2 (Agel_Nash)
* [GitHub:#ddb47a7d0] - [F] Fix buttons transition and focus background-color (Serg)
* [GitHub:#5edac57c8] - [I] Moving tv parameters without a category to the General tab (Serg)
* [GitHub:#2950b760d] - [F] correct install finish (dmi3yy)
* [GitHub:#ebed40c60] - [F] undeclared variable (Serg)
* [GitHub:#f399f2ea8] - [F] broken OnParseProperties event (Pathologic)
* [GitHub:#ef95a606a] - [F] update DocLister and FormLister (dmi3yy)
* [GitHub:#8c873d61a] - [F] Update tab6_filemanager_settings.inc.php (Mr B)
* [GitHub:#3608ab90f] - [F] Update tab5_security_settings.inc.php (Mr B)
* [GitHub:#0c2fa0ddd] - [I] Add missing events for System Settings tabs (Mr B)
* [GitHub:#323e9cdc9] - [F] tab3 invokeEvent to last tr (Mr B)
* [GitHub:#8d1a0ebac] - [F] revert tab change (Mr B)
* [GitHub:#aff400f72] - [F] Correct message urls (Mr B)
* [GitHub:#6fa23c6a7] - [I] Show element icon (Mr B)
* [GitHub:#7b3692125] - [F] fix locked (Ser1ous)
* [GitHub:#e32d25e19] - [F] Fix strict mode bug on get tv list (Ser1ous)
* [GitHub:#67117ab6b] - [F] fix error log in phpmailer (Pathologic)
* [GitHub:#569a1533c] - [I] singleton (Pathologic)
* [GitHub:#946f7f5de] - [F] fix code format (Ser1ous)
* [GitHub:#bb174a09d] - [I] Ctr+Alt+L on PhpStorm (Ser1ous)
* [GitHub:#4c5a44233] - [I] Add event pub/unpub documents (Ser1ous)
* [GitHub:#99edc5fb5] - [F] Fix ios iframe scroll so only applied to ios (Mr B)
* [GitHub:#bd7237579] - [F] Update qm.inc.php (Mr B)
* [GitHub:#2905e58c7] - [I] Give custom QM buttons a title (Mr B)
* [GitHub:#d287e2b85] - [F] Update execute_module.processor.php (Mr B)
* [GitHub:#12c151b13] - [I] Make store fit iframe width (Mr B)
* [GitHub:#ccb4ac7a6] - [I] Change html check for scroller (Mr B)
* [GitHub:#e100bef00] - [I] iframe scroller for for Module if no need fix add to GET &api=1 (dmi3yy)
* [GitHub:#97179a3bd] - [I] Stacked table cells for system configuration (Piotr Matysiak)
* [GitHub:#84617f23b] - [I] Stacked table cells on small screens (Piotr Matysiak)
* [GitHub:#4db235560] - [F] fix for module iframe scrolling (Mr B)
* [GitHub:#c07af3d5f] - [F] Update modx.min.js (Mr B)
* [GitHub:#c84388af0] - [I] Restrict menu tree auto hide to small mobile (Mr B)
* [GitHub:#7acb549af] - [I] Polish translation (Piotr Matysiak)
* [GitHub:#dbd75f74f] - [I] move login page and menu setting to tab 4 (dmi3yy)
* [GitHub:#f266be8b6] - [F] TinyMCE darcness theme by default - need set lightgray by default #613 (dmi3yy)
* [GitHub:#5c6d120ed] - [F] update DocLister 2.3.15 (dmi3yy)
* [GitHub:#8aed61699] - [F] update FormLister to 1.7.19 (dmi3yy)
* [GitHub:#10a9a62b0] - [I] add params for manager_menu_position (dmi3yy)
* [GitHub:#816c645a0] - [F] welcome widget fix (Piotr Matysiak)
* [GitHub:#cc0e2294c] - [F] Fix manager restrict by day login (Mr B)
* [GitHub:#3658514a8] - [I] welcome widget change (Piotr Matysiak)
* [GitHub:#631286ca9] - [F] welcome and online widgets stacked (Piotr Matysiak)
* [GitHub:#a0198c207] - [F] #650 Display valid-hostnames after setting them (Deesen)
* [GitHub:#ffd97e6bf] - [F] #616 Fix TinyMCE4 custom-theme´s toolbars with global settings (Deesen)
* [GitHub:#657088dc1] - [F] Update .htaccess (Евгений Борисов)
* [GitHub:#454f4f975] - [F] Update index.css (Mr B)
* [GitHub:#bdc53cbf2] - [F] Update modx.min.js (Mr B)
* [GitHub:#135e9b047] - [F] Update modx.js (Mr B)
* [GitHub:#009388364] - [F] iOS iframe Scrolling/jumping (Mr B)
* [GitHub:#bec6c2f09] - [F] #643 Fix TinyMCE4 mobile-mode (Deesen)
* [GitHub:#c26f0eaa6] - [I] Add space to bottom of menu tree (Mr B)
* [GitHub:#8ecd06ecf] - [I] Remove 'Top how many' option as not used (Mr B)
* [GitHub:#30673e780] - refactor stay icons (Serg)
* [GitHub:#adc145943] - [S] Secutiy fix for old version (dmi3yy)
* [GitHub:#1c7f67c1b] - [F] #629 Fix issue with HTTP2/SSL & check connection to server (Deesen)
* [GitHub:#aa7892eea] - [F] store sql fixed (mnoskov)
* [GitHub:#4e6d54387] - [F] box-shadow (Piotr Matysiak)
* [GitHub:#57821c93c] - [I] Remove scrollbars in centered layout (Piotr Matysiak)
* [GitHub:#be9830839] - [I] Login form positions (Piotr Matysiak)
* [GitHub:#e6fec0458] - [F] Set loginbox position CSS class (Piotr Matysiak)
* [GitHub:#160590f23] - [I] Login page - set images placeholders (Piotr Matysiak)
* [GitHub:#009833f50] - [I] Manager Polish Translation update (Piotr Matysiak)
* [GitHub:#28a082472] - [I] Manager Polish Translation (Piotr Matysiak)
* [GitHub:#b69d83b50] - [I] Optimized images (Piotr Matysiak)
* [GitHub:#60cc4b893] - [I] First commit of new login page (Piotr Matysiak)
* [GitHub:#0e628b256] - [I] setting for customize login page (dmi3yy)
* [GitHub:#9b0f507c2] - [F] for TinyMCE skin by default lightgray (dmi3yy)
* [GitHub:#73ebfee5a] - [F] missing tabheader border (Piotr Matysiak)
* [GitHub:#0840e3a31] - [F] minify css default theme (Serg)
* [GitHub:#3cf94bf7d] - [F] width auto for select size=1 (Serg)
* [GitHub:#c2a4032d7] - [F] logo page help (Serg)
* [GitHub:#74da26055] - [F] class input-group-addon (Serg)
* [GitHub:#f8f91e41a] - [F] pagination darkness theme (Serg)
* [GitHub:#4eb2414d3] - [F] hover background-color mainMenu item version (Serg)
* [GitHub:#19b1f5534] - [F] fix for darkness mode (Piotr Matysiak)
* [GitHub:#27b5a37fb] - [F] Fix missing border (Piotr Matysiak)
Evolution CMS 1.4.3 (Apr 04, 2018)
* [GitHub:#e10383b14] - update DocLister (dmi3yy)
* [GitHub:#2654f2c59] - update Formlister (dmi3yy)
* [GitHub:#64c4e9adf] - add select for theme mode in managers settings (dmi3yy)
* [GitHub:#44f8f6c88] - fix for not touch composer.json on update (dmi3yy)
* [GitHub:#4fd89e618] - add Darkness style for tinyMCE (dmi3yy)
* [GitHub:#8526ee4b5] - add styles for modes theme (Serg)
* [GitHub:#097a1076b] - more checks in cli mode (Pathologic)
* [GitHub:#6fb277896] - Missing introtext in Recent Resources (Piotr Matysiak)
* [GitHub:#998f3a2fa] - Fix #603 bug for resource tree scrolling (Piotr Matysiak)
* [GitHub:#f8c17c495] - moved JS code to a file manager/media/script/main.js (Serg)
* [GitHub:#060e49f1d] - fix empty template on save tv (Serg)
* [GitHub:#3fb227540] - [F] #577 Fix TinyMCE for [*introtext*] (Deesen)
* [GitHub:#1a5a68027] - Fix Extras buttons on 1.4.1 #571 (dmi3yy)
* [GitHub:#263737fbe] - add user_agent info to manager_log (dmi3yy)
* [GitHub:#36dfe9c6d] - write manager IP address to manager_log (dmi3yy)
* [GitHub:#8a3bee0ce] - new settings manager_theme_mode (dmi3yy)
* [GitHub:#745f633af] - setting color schema for manager template (dmi3yy)
* [GitHub:#f25ec1e59] - fix 577 TinyMCE introtext mode not work (dmi3yy)
* [GitHub:#d27e12bdc] - fix notice (Serg)
* [GitHub:#10ce1f270] - fix TinyMCE disable after update to 1.4.2 (dmi3yy)
* [GitHub:#dc06fb72f] - fix possible wrong path calculation (Pathologic)
* [GitHub:#b6fecddec] - [I] Wrap TinyMCE3 Toolbar (Mr B)
* [GitHub:#f55089ba7] - [F] Prevent long select option text values overflowing container (Mr B)
* [GitHub:#40f2a53d4] - add view ability for ini files in manager files (dmi3yy)
* [GitHub:#d3117b1c2] - fix demo site (Formlister, param reply-to) (dmi3yy)
* [GitHub:#a5aff20db] - formlister fix typo (dmi3yy)
Evolution CMS 1.4.2 (Mar 23, 2018)
* [GitHub:#6a33e6f2b] - now you can use argv like this: php cli-install.php --database_server=localhost --database=db --database_user=dbuser --database_password=dbpass --table_prefix=evo_ --cmsadmin=admin [email protected] --cmspassword=123456 --language=ru --mode=new --installData=n --removeInstall=y (dmi3yy)
* [GitHub:#d8e7ec072] - run install file (dmi3yy)
* [GitHub:#1baf289d6] - Install Evo from console: (https://monosnap.com/file/Tj21cmlMhZXNJdRXfKBLAvTlJcElkJ) (dmi3yy)
* [GitHub:#52c27d0d6] - fix for use html tags in name (dmi3yy)
* [GitHub:#6324989c9] - [F] #577 Fix "undefined index"-notice (Deesen)
* [GitHub:#8389d3c15] - [C] #577 TinyMCE4 code clean-up (Deesen)
* [GitHub:#4c9b26d56] - fix (document.parser.class.inc.php) sendStrictURI (Ruslan)
* [GitHub:#27c63435a] - modernize default theme (Serg)
* [GitHub:#b42174b85] - Globat Tabs by Default On (dmi3yy)
* [GitHub:#4f8323b13] - add .tpl for create file from filemanager (dmi3yy)
* [GitHub:#2ad9bb7e3] - correct getTpl (Serg)
* [GitHub:#e5718a08a] - add composer.json (dmi3yy)
* [GitHub:#14155ff84] - fix lang error (dmi3yy)
* [GitHub:#628eabf86] - update DocLister and FormLister (dmi3yy)
* [GitHub:#c1ea7c3e0] - fix escapeshellarg disabled for security reason (dmi3yy)
* [GitHub:#f55cff2b8] - Update english.inc.php (Mr B)
* [GitHub:#151206e87] - Update mainmenu.php (Mr B)
* [GitHub:#4ae239de6] - fix #559 Zend OPcache API is restricted by "restrict_api" configuration directive (Pathologic)
* [GitHub:#ddcdcdbc0] - fix #563 Error when upgrading to 'phpmailer sender property' commit(Pathologic)
* [GitHub:#e3ce8aaf9] - phpmailer sender property (Pathologic)
* [GitHub:#ce2fc8313] - fix only variables can be passed by reference (Pathologic)
* [GitHub:#271d809b0] - log only public properties of MODxMailer (Pathologic)
Evolution CMS 1.4.1 (Mar 02, 2018)
* [GitHub:#3a9224b03] - revert [I] save_content.processor.php Initialize full cache only when alias, parent, and published are changed (dmi3yy)
* [GitHub:#dae083a26] - Update FormLister (dmi3yy)
* [GitHub:#367a6507e] - update DocLister (dmi3yy)
* [GitHub:#ef6dfb889] - fix #548 (Pathologic)
* [GitHub:#8770f4f99] - function method (Agel_Nash)
* [GitHub:#16e54b2fe] - deleting an unused variables and functions (64j)
* [GitHub:#db08547fa] - fix #539 (Agel_Nash)
* [GitHub:#1f24ed117] - cli (Agel_Nash)
* [GitHub:#76c89acab] - phpDoc (Agel_Nash)
* [GitHub:#8c93023a7] - Исправлено добавление фигурных скобок в пустые параметры плагина (media_kot)
* [GitHub:#bb183dd25] - fix #102 (Pathologic)
* [GitHub:#22618e102] - single entry point (Pathologic)
* [GitHub:#14e98f967] - join() => implode() (Agel_Nash)
* [GitHub:#ef6566b2d] - intval() => (int) (Agel_Nash)
* [GitHub:#c1a3d3a31] - refactor (Agel_Nash)
* [GitHub:#19f4fe321] - public method (Agel_Nash)
* [GitHub:#8b8bce9d8] - Duplicate function name manager/processors/save_template.processor.php (Agel_Nash)
* [GitHub:#573aa5683] - It seems like $categories defined by $cm->getCategories() (Agel_Nash)
* [GitHub:#fdc0ee465] - New random method for $table_prefix (Vitaliy Rudnyh)
* [GitHub:#1ce79fbf4] - Step 1 + fix conflicts (Agel_Nash)
* [GitHub:#31d870fdb] - Change version and date (Vitaliy Rudnyh)
* [GitHub:#438eacc6b] - Add php-doc (Vitaliy Rudnyh)
* [GitHub:#8583aae71] - formatting psr-2 (Vitaliy Rudnyh)
* [GitHub:#697b1e3e8] - Check exists mysqi extension (Vitaliy Rudnyh)
* [GitHub:#638334d94] - Fix install error on PHP 7.2 (Vitaliy Rudnyh)
* [GitHub:#663a1fdb4] - Commented "plugin locks" / lock-file (Deesen)
* [GitHub:#00fbcc2fc] - [F] #523 If config.inc.php exists, change chmod to 0666 (Deesen)
* [GitHub:#0f6f45a85] - - Fix classname Imagic and Gmagic - Refactor (Agel_Nash)
* [GitHub:#ae66352b5] - Step 2 (Agel_Nash)
* [GitHub:#de7245b0a] - Fix Imagick class name (Agel_Nash)
* [GitHub:#0d0d9ae28] - Fix Gmagic class name (Agel_Nash)
* [GitHub:#af9476613] - refactor array_change_key_case function (Agel_Nash)
* [GitHub:#426b74903] - Fix IN_MANAGER_MODE (Agel_Nash)
* [GitHub:#8d4595dc7] - Step 1 (Agel_Nash)
* [GitHub:#a1b09fad5] - fix install (Pathologic)
* [GitHub:#1581c4c75] - Fix readme (Agel_Nash)
* [GitHub:#8061c2891] - Update badges (Agel_Nash)
* [GitHub:#63117c3b0] - sqlParser for PHP5 (Agel_Nash)
* [GitHub:#095021f7d] - Remove closing tag ```?>``` in files (Agel_Nash)
* [GitHub:#d98fbcb3e] - random table prefix (Agel_Nash)
* [GitHub:#868b6aaa7] - Code style (Agel_Nash)
* [GitHub:#932ceff2f] - Update .gitignore and .htaccess files (Agel_Nash)
* [GitHub:#923a1c674] - [F] #481 Fix export of Static-HTML with FURLs enabled (Deesen)
* [GitHub:#fcd59ef78] - fix #397 (Pathologic)
* [GitHub:#1ce8cb620] - fix #484 (64j)
* [GitHub:#a22a4ddb3] - fix #396 (Pathologic)
* [GitHub:#5c176a09a] - fix #484 need permission for editing templates or chunks or snippets or plugins (64j)
* [GitHub:#3738d46a5] - fix #484 need permission for editing documents (64j)
* [GitHub:#65d13ad82] - fix error session "nrtotalmessages" for role editor (64j)
* [GitHub:#654b69146] - fix russian lang extrascheck (Serg)
* [GitHub:#93d503295] - single entry point (Pathologic)
* [GitHub:#93e702991] - fixed something (Pathologic)
* [GitHub:#52dd369e1] - single entry point (Pathologic)
* [GitHub:#7e06c92bf] - fix Store module unparsed placeholders (Pathologic)
* [GitHub:#b530747af] - moved page icon to style.php (Nicola)
* [GitHub:#1db4e4baf] - page icon - mutate password (Nicola)
* [GitHub:#83318077b] - icon_help (Nicola)
* [GitHub:#6ac0a5c24] - fix broken OnWUsrFormRender event (Pathologic)
* [GitHub:#47b459a0e] - update SystemEvent (Pathologic)
* [GitHub:#c7873b6b0] - Update plugin.updater.php (Mr B)
* [GitHub:#81df65a80] - [MODxMailer] log only public properties (Pathologic)
* [GitHub:#a4081217d] - Update modxmailer.class.inc.php (Pathologic)
* [GitHub:#c9ca177af] - fix #493 (Pathologic)
* [GitHub:#bb4152705] - fix #475 (64j)
* [GitHub:#2f0685fe2] - [F] fix for moving content to another tab (Mr B)
* [GitHub:#b010fe286] - fix #42 (Pathologic)
* [GitHub:#d902a2ce6] - fix #258 (Pathologic)
* [GitHub:#20ff0eb2e] - fix #258 (Pathologic)
* [GitHub:#7b63c4293] - Update style.css (Mr B)
* [GitHub:#a91dc393d] - [I] Add right menu section ids (Mr B)
* [GitHub:#28a085634] - [I] QM+ Remove space from Edit Resource text (Mr B)
* [GitHub:#b34a39c60] - [F] Quick Manager+ ID text fix (Mr B)
* [GitHub:#4aa572f2f] - [I] #483 Provide [+base_path+] and [+base_url+] (Deesen)
* [GitHub:#8a6338966] - [F] #477 Cache plugin-properties using parseProperties() (Deesen)
* [GitHub:#26def6fef] - fix #478 (Pathologic)
* [GitHub:#6a754cc4b] - Fix tree buttons JS (Piotr Matysiak)
* [GitHub:#2987cfff4] - fix and improvements (Outdated Extras Check) (Nicola)
* [GitHub:#cd946c440] - ability to use extended DocumentParser class (Pathologic)
* [GitHub:#83b776239] - [F] Fix Information tab logo path (Mr B)
* [GitHub:#2902c56b2] - [I] Allow default-placeholders like [+which_browser+] in theme-values - $this-set('browserPath', '[+site_manager_url+]media/browser/[+which_browser+]/...') (Deesen)
* [GitHub:#c49d50d2d] - [F] #442 New inlite-theme is only compatible with inline-mode - backend falls back to modern-theme (Deesen)
* [GitHub:#f29ec8638] - [I] Extras/Store - New feature "Install by file-upload" - accepts ZIP-files from https://github.com/extras-evolution/ (Deesen)
* [GitHub:#633908ec0] - Replaced "MODX Content Manager" by "EVO Content Manager" (Deesen)
* [GitHub:#5aeb2a3f7] - Updated project-description (MODX to EVO) (Deesen)
* [GitHub:#cfea32cab] - Update mm_hidefields.php (Mr B)
* [GitHub:#6df0e1c33] - Update jquery.ddMM.js (Mr B)
* [GitHub:#6609e8c51] - [I] Updated TinyMCE4 to v4.7.4 (from v4.6.3) - added param "mobile" to theme.base - added param "Skin-Theme" to settings - fixed/improved theme/skin settings and labels (Deesen)
* [GitHub:#6cff1adc0] - fix #463 (Pathologic)
Evolution CMS 1.4.0 (Jan 25, 2018)
* [GitHub:#b1fffc26] - fix for php 7.2 (dmi3yy)
* [GitHub:#da5b0533] - [F] Moving which_editor with resource content for MM (Mr B)
* [GitHub:#67209c9a] - fix for search by tv (dmi3yy)
* [GitHub:#76850d9e] - To add search in admin panel for TV-parameters #429 fix (dmi3yy)
* [GitHub:#6f56a208] - friendly_url_suffix = / and aliaslistingfolder (scorN17)
* [GitHub:#1e10a7e2] - Update nodes.functions.inc.php (Pathologic)
* [GitHub:#d473297a] - updated polish install lang from Transifex #431 (Nicola)
* [GitHub:#a82898d1] - fix #438 TinyMCE : Failed to load fr.js (Nicola)
* [GitHub:#e00eb5f9] - update DocLister to 2.3.13 (dmi3yy)
* [GitHub:#5eff19ca] - update loadArray (ProjectSoft)
* [GitHub:#3d090bba] - [F] fix hiding which editor label (Mr B)
* [GitHub:#702eaeb9] - Update DocLister (dmi3yy)
* [GitHub:#a5e24ecd] - update FormLister 1.7.12 (dmi3yy)
* [GitHub:#1fddaab7] - cleat @tags from def template, turn off @tags by Default #265 (dmi3yy)
* [GitHub:#402ffc74] - fix for php 7.2 (dmi3yy)
* [GitHub:#1a275c19] - update phpmailer to 6.0.3, #302 fix (dmi3yy)
* [GitHub:#03a4ec41] - comment code for #399 (dmi3yy)
* [GitHub:#9f855003] - #383 fix (dmi3yy)
* [GitHub:#8544d289] - #425 fixed (dmi3yy)
* [GitHub:#ebb2d0af] - fixed #422 (dmi3yy)
* [GitHub:#dcbe3318] - PHP 7.2 - Errror : count() (dmi3yy)
* [GitHub:#eb442b91] - reloadElementsInTree() (scorN17)
* [GitHub:#72dd1ae8] - fix #418 disabled checkbox (Nicola)
* [GitHub:#d9775d88] - Update PHPMailer (scorN17)
* [GitHub:#5b590643] - fix rename hidemenu title (dmi3yy)
* [GitHub:#366227c4] - htmlspecialchars password (Сергей)
* [GitHub:#6f406906] - Quickly create / edit in a template (Сергей)
* [GitHub:#b94d3e86] - Quickly create / edit in a template (Сергей)
* [GitHub:#2afba441] - PHP 7.2: count() Parameter must be an array (Сергей)
* [GitHub:#0b9e9c86] - PSR2 coding standards (valerianpereira)
* [GitHub:#7463da6c] - updated italian Language for 1.4 from transifex (Nicola)
* [GitHub:#5063a72a] - updated dutch Language for 1.4 from transifex (Nicola)
* [GitHub:#7c27d68e] - updated italian for 1.4 from transifex (Nicola)
* [GitHub:#0f77dd08] - updated dutch for 1.4 from transifex (Nicola)
* [GitHub:#72f5da9a] - add one more test for updater plugin (dmi3yy)
* [GitHub:#dae85557] - Polish language for euiuploader (Piotr Matysiak)
* [GitHub:#4d7ad9f4] - FIX updater issues with custom sources (Andrej Kabachnik)
* [GitHub:#7037fe50] - Merge current dev branch (Andrej Kabachnik)
* [GitHub:#1d2cc484] - update ajax.php added autocomplete=off, for top menu input search (64j)
* [GitHub:#024a5557] - fix issue #354 (64j)
* [GitHub:#1af2be0b] - add id for tv sections (64j)
* [GitHub:#aa2dc0fe] - update modx.js refactor method modx.extend refactor method modx.tabs updated method.modx.popup (draggable, resize, icon: none) added method modx.dragging (resize) added scroll to for globals tab js errors correction (64j)
* [GitHub:#c2fc1af6] - refactor tabpane.js format code add for tab data-target id tab-page (64j)
* [GitHub:#91396746] - add id for tv sections (64j)
* [GitHub:#89e6d7d4] - update tree.css changed text overflow for items (64j)
* [GitHub:#2276fb43] - onAfterMoveDocument only on success movement attempt (mnoskov)
* [GitHub:#8d4f7953] - added onBeforeMoveDocument and onAfterMoveDocument to ajax action (mnoskov)
* [GitHub:#6814c47d] - fix #390 (64j)
* [GitHub:#a49c144c] - fix minor problem count($user_groups) (64j)
* [GitHub:#9cb19c7a] - Update snippet.if.php (milkamil93)
* [GitHub:#66d88413] - added widget cardAttr (Nicola)
* [GitHub:#d7e0495a] - fix error in query (dmi3yy)
* [GitHub:#1ec2056f] - code formatting (Beautify) (Nicola)
* [GitHub:#22029adf] - save column layout to localstorage (Nicola)
* [GitHub:#9f69b04e] - removed/fixed dark styles for pagebuilder (mnoskov)
* [GitHub:#08070298] - Extras - fix image stretch (Piotr Matysiak)
* [GitHub:#ad4ab644] - minor fix to js (Nicola)
* [GitHub:#12fd5802] - save extras sidebar state to localstorage (Nicola)
* [GitHub:#519ede30] - restored collapse side btn (Nicola)
* [GitHub:#ecc15aaf] - collapse side bnt margin (Nicola)
* [GitHub:#641c09e3] - Extras - Remove br (Piotr Matysiak)
* [GitHub:#7b8eb126] - Extras - some fixes (Piotr Matysiak)
* [GitHub:#ec936165] - Extras - Refactor search and tools (Piotr Matysiak)
* [GitHub:#18eb80ef] - Extras - Refactor Bootstrap grid (Piotr Matysiak)
* [GitHub:#34acadb6] - Extras CSS - box and box ul padding (Piotr Matysiak)
* [GitHub:#eb12cde8] - Extras CSS - refactor (Piotr Matysiak)
* [GitHub:#3040543c] - Extrass CSS - make list view as default (Piotr Matysiak)
* [GitHub:#9635e6d9] - Extras CSS - search bottom margin (Piotr Matysiak)
* [GitHub:#4b923c85] - Extras CSS - improved item styles (Piotr Matysiak)
* [GitHub:#14d92765] - Extras CSS - improved card styles (Piotr Matysiak)
* [GitHub:#5aec034f] - Extras CSS - fix fontawesome for better rendering (Piotr Matysiak)
* [GitHub:#e5ef76b7] - Extras CSS - remove nthchild odd bg color in list (Piotr Matysiak)
* [GitHub:#10fdad83] - Extras CSS - fix info extras btn in list mode (Piotr Matysiak)
* [GitHub:#1bbc6c5d] - Extras CSS - Remove empty rule (Piotr Matysiak)
* [GitHub:#e1a1e11c] - Extras CSS - Fix typo (Piotr Matysiak)
* [GitHub:#ebfeeda7] - Extras CSS - Refactor (Piotr Matysiak)
* [GitHub:#8232271b] - fix height tree 100% + 1px (64j)
* [GitHub:#e24bbd66] - fix style bars icon in topmenu (64j)
* [GitHub:#8403c596] - fix issue #354 added slide submenu for mobile devices (64j)
* [GitHub:#78bd9c44] - fix #353 minify css (64j)
* [GitHub:#fa86ae0e] - fix style icons for widget Welcome (64j)
* [GitHub:#0d1276e0] - format code plugin Updater (64j)
* [GitHub:#c0028f1d] - fix return null in function invokeEvent (64j)
* [GitHub:#8f2fd4d7] - 1.4.0.RC2 (dmi3yy)
* [GitHub:#0213e910] - Update Doclister (dmi3yy)
* [GitHub:#d0d1fed2] - FIX wrong target link in Welcome Widget (Nicola)
* [GitHub:#568b766b] - Delete 060_Авторизация пользователей.md (Dmytro Lukianenko)
* [GitHub:#66b79159] - update FormLister to 1.7.11 (dmi3yy)
* [GitHub:#3eba71a9] - fixed Chunks included twice at install #358 (dmi3yy)
* [GitHub:#9e07e883] - fix #364 (64j)
* [GitHub:#5cec0299] - fix multitv style (dmi3yy)
* [GitHub:#3627ac27] - [F] Store curl followlocation fix (Mr B)
* [GitHub:#1fb80ae1] - Fix for images and files path in new resource menu (Nicola)
* [GitHub:#ab57f0cb] - [F] Main menu background cover for touch device (Mr B)
* [GitHub:#be0cea4b] - revert https://github.com/evolution-cms/evolution/commit/60560c94b2afa9f4bb689b2d8a56a64ce9041934 (64j)
* [GitHub:#b5e05881] - fix drag and drop in tree (64j)
* [GitHub:#ad9b91d2] - correction popup window from the context menu Closing popup window when "saving" or button press "cancel" Hot keys: Esc - Close Ctrl+S - Save Ctrl+Q - Save and quit (if focus in codeMirror editor) (64j)
* [GitHub:#60560c94] - correct work of non-existent placeholders (64j)
* [GitHub:#c82090f0] - fix minify cache for chunks (64j)
* [GitHub:#0147a557] - fix minify cache for chunks (64j)
* [GitHub:#9320b357] - Better Fix for git relative url (Nicola)
* [GitHub:#5b05a01c] - [F] Update Snoopy for MagpieRSS (Mr B)
* [GitHub:#3226adf5] - Update mutate_settings.dynamic.php (Mr B)
* [GitHub:#4abda91b] - [F] Improve message text fort new install (Mr B)
* [GitHub:#f215529a] - added empty opcache (64j)
* [GitHub:#ab4246b5] - fix #342 (64j)
* [GitHub:#3fde248b] - fix duplicate doc in tree (64j)
* [GitHub:#26d55d46] - [FIX] Recommendation for Warnings after installation/update #327 (dmi3yy)
* [GitHub:#0574d330] - NEW configuration for GitHub repo to update from (Andrej Kabachnik)
* [GitHub:#c761ca59] - FIX typo in SQL (Andrej Kabachnik)
* [GitHub:#aefd98b1] - FIX SQL error when saving doc with ddReadonly in MM (Andrej Kabachnik)
* [GitHub:#13e9a50c] - fix #337 (64j)
* [GitHub:#a952ce05] - fix 337 (64j)
* [GitHub:#d932aa42] - Update mutate_content.dynamic.php (Mr B)
* [GitHub:#ba97bce9] - Update custom.css (Mr B)
* [GitHub:#9a3fde57] - [F] Improve manager log clear date icon (Mr B)
* [GitHub:#17f01ecf] - fix theme manager css minify (64j)
* [GitHub:#5a7943ac] - fix theme manager css minify (64j)
* [GitHub:#4a2a1aff] - fix #336 (64j)
* [GitHub:#d10c7b01] - EIT minor changes js (64j)
* [GitHub:#88fbde6e] - fix #336 (64j)
* [GitHub:#b8359b7b] - Update english.inc.php (Mr B)
* [GitHub:#4a9649b8] - [F] Remove insert button for module icon field (Mr B)
* [GitHub:#0d295d95] - Update mutate_module.dynamic.php (Mr B)
* [GitHub:#b509ad28] - Update mainmenu.php (Mr B)
* [GitHub:#c76d34b9] - update modx.js fix empty trash fix deleted/undeleted docs from context menu fix publish/unpublish docs from context menu (64j)
* [GitHub:#d1f0b660] - format frames/1.php (64j)
* [GitHub:#d5949422] - format frames/1.php (64j)
* [GitHub:#72220d9e] - correct animation context menu in tree (64j)
* [GitHub:#ad954965] - fix stay toggle style icon for stay "Save As+" toggle dropdown (64j)
* [GitHub:#a510bcdc] - Update mainmenu.php (Mr B)
* [GitHub:#846ebf4a] - Update txt_content.tpl (Mr B)
* [GitHub:#84d47f77] - #330 new Categories Manager icon (Nicola)
* [GitHub:#b9b81506] - #330 new Categories Manager icon (Nicola)
* [GitHub:#d5a0e417] - icon module (Nicola)
* [GitHub:#c3d37340] - #329 module (single) icon (Nicola)
* [GitHub:#f4910bfc] - [f] #329 manage modules icon in dropdown menu (Nicola)
* [GitHub:#c56530fa] - fix lib/CSSMinify (64j)
* [GitHub:#c5ecb9e2] - fix mainmenu.css hidden horizontal scroll on click button clear cache (64j)
* [GitHub:#c3c2a0d4] - toggle full screen language string (Nicola)
* [GitHub:#44af370d] - toggle full screen string (Nicola)
* [GitHub:#10f63675] - fix #324 (64j)
* [GitHub:#5030b5c0] - moved right menu icons to style.php (Nicola)
* [GitHub:#7a68d2c7] - right menu icons (Nicola)
* [GitHub:#b0e25017] - fix modules icon in welcome page (Nicola)
* [GitHub:#c902a985] - Update english.inc.php (Mr B)
* [GitHub:#d1a513ff] - updated modules icon in EIT (Nicola)
* [GitHub:#f71de0d6] - [F] Add hover title to 'system' menu icon (Mr B)
* [GitHub:#db17f5fc] - updated module icon to fa-cubes (Nicola)
* [GitHub:#54953e98] - update module icon (Nicola)
* [GitHub:#f00b035d] - fix github rss relative urls (Nicola)
* [GitHub:#c2be49be] - [F] Explicitly label manager users (Mr B)
* [GitHub:#b0ea79fe] - [F] Dashboard user titles (Mr B)
* [GitHub:#16cbda64] - Beautify code and added range input (Nicola)
* [GitHub:#d4807d2e] - update mcpuk style (Nicola)
* [GitHub:#81fe96ae] - fix theme manager url css (64j)
* [GitHub:#a4d03b2c] - FIXED [Demo site] ajax contact form doesn't work #318 (dmi3yy)
* [GitHub:#3c95555b] - added theme manager modx.min.js (64j)
* [GitHub:#9fdb1297] - added theme manager css minify (64j)
* [GitHub:#fe49d380] - added theme manager css minify (64j)
* [GitHub:#a9c277e5] - Update updater.tpl (Mr B)
* [GitHub:#dd0087e8] - FIX Profile page unavailable #319 (dmi3yy)
* [GitHub:#69c1c024] - [F] Make updater installer run when in subfolder (Mr B)
* [GitHub:#835ec247] - FIX Update name #316 (dmi3yy)
* [GitHub:#f00de86c] - Нельзя отправить заголовок если отправлены данные. (ProjectSoft)
* [GitHub:#9a50bf19] - update readme (dmi3yy)
* [GitHub:#b7115d22] - Update FormLister (dmi3yy)
* [GitHub:#7651a4c5] - fix selected item tree when opening components (64j)
* [GitHub:#402a6549] - fix user icon (dmi3yy)
* [GitHub:#19f8c346] - fix demosite (dmi3yy)
* [GitHub:#dae0a6cf] - fix lang (dmi3yy)
* [GitHub:#481fa6e3] - fix icon (dmi3yy)
* [GitHub:#3d073a07] - fix install demosite on old sistem (dmi3yy)
* [GitHub:#f6b64fb6] - FIX Inconsistent Title/Icon for Security / Manager Users #311 (dmi3yy)
* [GitHub:#e2663055] - change rss url (dmi3yy)
* [GitHub:#4764d06f] - change top menu icons (dmi3yy)
* [GitHub:#7b1a8a4f] - #277 Install fails. "Fatal error" by PHP 5.4.x (dmi3yy)
* [GitHub:#43747ad9] - Remove undefined function call (dmi3yy)
* [GitHub:#d4d53e0f] - fix picker size (Nicola)
* [GitHub:#ebe2dfba] - #301 Fix - System Events logs (yamamoto)
* [GitHub:#b0ec7484] - 1.4.0.RC (dmi3yy)
* [GitHub:#26d89b8f] - turnOff warning #301 (dmi3yy)
* [GitHub:#50ba90cd] - fix in demosite (dmi3yy)
* [GitHub:#8b4c4f2a] - demosite fix (dmi3yy)
* [GitHub:#b678063b] - fix extras link (dmi3yy)
* [GitHub:#dc6efbea] - update extras link (dmi3yy)
* [GitHub:#de1bc422] - update demo site (dmi3yy)
* [GitHub:#78a7c3cb] - update demo site (dmi3yy)
* [GitHub:#5de1b2cc] - delete unused files (dmi3yy)
* [GitHub:#5a9f007c] - delete some unused files (dmi3yy)
* [GitHub:#3f729cca] - fix category for snippets and plugins (dmi3yy)
* [GitHub:#0c80bcd7] - move WebLogin to Extras (https://github.com/extras-evolution/Weblogin) (dmi3yy)
* [GitHub:#37e1faea] - move Reflect to Extras (https://github.com/extras-evolution/Reflect) (dmi3yy)
* [GitHub:#d6a6354a] - move UltimateParent to Extras (https://github.com/extras-evolution/UltimateParent) (dmi3yy)
* [GitHub:#10abc1e8] - move Personalize to Extras (https://github.com/extras-evolution/Personalize) (dmi3yy)
* [GitHub:#8f755f75] - move Wayfinder to Extras (https://github.com/extras-evolution/Wayfinder) (dmi3yy)
* [GitHub:#631c75d7] - move MemberCheck to Extras (https://github.com/extras-evolution/MemberCheck) (dmi3yy)
* [GitHub:#072a18d2] - move Jot to extras (https://github.com/extras-evolution/Jot) (dmi3yy)
* [GitHub:#f3cb5d34] - move FirstChildRedirect to extras (https://github.com/extras-evolution/FirstChildRedirect) (dmi3yy)
* [GitHub:#7d731b6c] - move demo content to sql file (dmi3yy)
* [GitHub:#4634e27b] - move demo content to sql file (dmi3yy)
* [GitHub:#a447031d] - move demo elements to sql file 1 step (dmi3yy)
* [GitHub:#30357816] - delete old files (dmi3yy)
* [GitHub:#3d5b05c1] - move eForm to Extras (https://github.com/extras-evolution/eForm) use FormLister (dmi3yy)
* [GitHub:#eed944b1] - move Ditto to Extras (https://github.com/extras-evolution/Ditto) (dmi3yy)
* [GitHub:#7d4acbf3] - [C] move ajaxSearch to Extras (https://github.com/extras-evolution/ajaxSearch) (dmi3yy)
* [GitHub:#95a703ce] - fix correct sort in mm_moveCategoryToTab (Dmytro Lukianenko)
* [GitHub:#9415fd0d] - removed card-header color from color switcher (Nicola)
* [GitHub:#ae3617e8] - [i] added head and body attributes to widget array (Nicola)
* [GitHub:#82985c89] - not needed bg color (Nicola)
* [GitHub:#f1f84afc] - added .btn-secondary class (Nicola)
* [GitHub:#241a63e3] - fix active .btn (Nicola)
* [GitHub:#d8cd8dec] - fix colorswitcher.css the panel covered the scrollbar minor errors and adjustments (64j)
* [GitHub:#7ece96a8] - work function (Alexander Grishin)
* [GitHub:#17692488] - Improved New Resource Menu (Nicola)
* [GitHub:#6210f577] - fix install button in list view (Nicola)
* [GitHub:#5861a044] - fix js and collapse button (Nicola)
* [GitHub:#7fbf04d7] - set evo mcpuck theme as default mcpuck theme (Nicola)
* [GitHub:#7c0e73ba] - update mcpuck template (Nicola)
* [GitHub:#ca857e7f] - new evo mcpuk theme (Nicola)
* [GitHub:#9dc548ec] - increased filemanager popup size (Nicola)
* [GitHub:#c2cb5d8a] - Revert: [F] Show button images in vertical-mode https://github.com/evolution-cms/evolution/commit/f96528c2eaa0582f3d92061da2205ae8cd7b4e07#commitcomment-25178062 (Deesen)
* [GitHub:#d4d9b6fc] - [I] Added new plugin-parameter "Force Paste as Text" (Deesen)
* [GitHub:#f96528c2] - [F] Show button images in vertical-mode Screenshot: https://user-images.githubusercontent.com/8569221/31986364-7e863fb0-b968-11e7-9469-bd4ce5cdf3ac.png (Deesen)
* [GitHub:#03cf14a1] - [I] Allow {{chunk?¶m=`xxx`}} with [*tv_name_[+param+]*] as content (Deesen)
* [GitHub:#b6a0c6af] - #299 Fix default jQuery settings in Quick Manager (Nicola)
* [GitHub:#3a8b6408] - #294 New Resource button (Nicola)
* [GitHub:#ca0f0bba] - #294 New Resource button (Nicola)
* [GitHub:#6681a811] - #294 New Resource button (Nicola)
* [GitHub:#62c95639] - #294 New Resource button (Nicola)
* [GitHub:#e96440f8] - [I] Datepicker: Allow custom dateFormat via attribute data-format <input data-format="YYYY-mm-dd" class="DatePicker" ... /> (Deesen)
* [GitHub:#9804e8e3] - [F] #277 Fatal error when trying to install Evo on PHP <= v5.4 (Deesen)
* [GitHub:#b9593bf5] - Updted color switcher settings description (Nicola)
* [GitHub:#82fcd24d] - Updated Color Switcher (Nicola)
* [GitHub:#9f74fb91] - Updated Color Switcher (Nicola)
* [GitHub:#86a79c1b] - updated spectrum.css (Nicola)
* [GitHub:#9bbb915b] - color.switcher.php (Nicola)
* [GitHub:#2b6ff490] - color.switcher.js (Nicola)
* [GitHub:#cff0e3d3] - color.switcher.css (Nicola)
* [GitHub:#289a9ef0] - Update mutate_user.dynamic.php (Mr B)
* [GitHub:#92b6843e] - [F] Manager and User account country list sort (Mr B)
* [GitHub:#2c1a419a] - Смена родителя ресурса на предка соседа (Dreamer0x01)
* [GitHub:#71aa08d6] - update DocLister (dmi3yy)
* [GitHub:#f7337e41] - fix error if empty docRow (dmi3yy)
* [GitHub:#8813567b] - Update sysinfo.static.php (Andrej Kabachnik)
* [GitHub:#d7b3c479] - Update mutate_menuindex_sort.dynamic.php (Andrej Kabachnik)
* [GitHub:#efe0af72] - minor fix (Mr B)
* [GitHub:#b3391169] - hide usericon when max 728px as without text it has no meaning (Mr B)
* [GitHub:#bfffbeb9] - [F] Fix QM+ toolbar css (Mr B)
* [GitHub:#929d4150] - Decrease treeButton icon line-height (Piotr Matysiak)
* [GitHub:#b2f400d2] - [fix] #278 strange character in step 1 (Nicola)
* [GitHub:#dc20944f] - Decrease mainMenu line-height (Piotr Matysiak)
* [GitHub:#bf962d24] - #278 strange character in step 1 (Nicola)
* [GitHub:#e479fdb5] - Updated widget card style (Piotr Matysiak)
* [GitHub:#3378fe10] - updated QM styles for #275 (Nicola)
* [GitHub:#0c3fef66] - #275 (Nicola)
* [GitHub:#ab5e39d4] - fix check media folder on install (dmi3yy)
* [GitHub:#7a4add2d] - Move Breadcrumbs to extras (https://github.com/extras-evolution/Breadcrumbs) use DLCrumbs (dmi3yy)
* [GitHub:#f198566e] - remove flash and media folder (dmi3yy)
* [GitHub:#b6431dc0] - Remove unnecessary code (yamamoto)
* [GitHub:#e740113e] - #273 Save plugin Events issue (yamamoto)
* [GitHub:#d08123c4] - load colorpicker assets only if enabled in settings (Nicola)
* [GitHub:#fa8011be] - color picker settings (Nicola)
* [GitHub:#55e265ec] - respect system settings for color picker (Nicola)
* [GitHub:#bc2d675f] - added color picker (Nicola)
* [GitHub:#e2f8fb8d] - added color picker settings (Nicola)
* [GitHub:#ffc79d73] - partial fix for active state (Nicola)
* [GitHub:#14ba17cd] - smaller color palette (Nicola)
* [GitHub:#51aa73d1] - text hover color picker (Nicola)
* [GitHub:#fde3302b] - disable link item in picker menu (Nicola)
* [GitHub:#3e68f63b] - fix for menu text picker (Nicola)
* [GitHub:#db3cc2b4] - Color Picker for menu text links (Nicola)
* [GitHub:#7a3de133] - fix #249 (64j)
* [GitHub:#08dd5382] - minor style fix (Nicola)
* [GitHub:#a253ab7a] - plus button padding fix (Nicola)
* [GitHub:#516d6b6f] - replaced more text with PLUS symbol (Nicola)
* [GitHub:#9b4ceac2] - plus button style (Nicola)
* [GitHub:#f5cd402a] - fix button:active style (Nicola)
* [GitHub:#e16c407c] - menu color picker (Nicola)
* [GitHub:#baa60686] - Rename manager/media/style/common/spectrum.css to manager/media/style/common/spectrum/spectrum.css (Nicola)
* [GitHub:#017c99a7] - spectrum.css for colorpicker menu (Nicola)
* [GitHub:#9b10053b] - Rename manager/media/script/spectrum.evo.min.js to manager/media/script/spectrum/spectrum.evo.min.js (Nicola)
* [GitHub:#fd673b48] - spectrum.js for colorpicker menu (Nicola)
* [GitHub:#f63eb526] - set as default menu navbar button style (Nicola)
* [GitHub:#d6c9612a] - 1.5.9 restyled toolbar (Nicola)
* [GitHub:#b34d3ea6] - updated toolbar styles for 1.5.9 (Nicola)
* [GitHub:#88351909] - updated buttons styles (Nicola)
* [GitHub:#6a7aa707] - fixed modx.js fix open chunk or snippet from contextmenu (64j)
* [GitHub:#c9076beb] - Fix - $modx->getTagsFromContent() (yamamoto)
* [GitHub:#bb061a60] - no more need. now not used for AjaxSearch. (dmi3yy)
* [GitHub:#b0207a13] - Change logo file name to evo-logo.png #104 (dmi3yy)
* [GitHub:#6eedbf6d] - #253 Дублирование всех страниц сайта через index.php?q= add in ht.access (dmi3yy)
* [GitHub:#dab9e58c] - demosite Breadcrumbs -> DLCrumbs (dmi3yy)
* [GitHub:#32e99798] - change to #265 Page load speedup after disabled <@> tags (64j)
* [GitHub:#6b7f7ef9] - lighter color for widget card header in dark theme (Nicola)
* [GitHub:#3b99b143] - [I] Improved performance with disabled "@syntax" (Deesen)
* [GitHub:#d923aad3] - [I] #260 Tree: Added option "alias" to sortBy (Deesen)
* [GitHub:#902ac6c8] - revert @3ad110c (yamamoto)
* [GitHub:#9829d3cb] - Better navbar icons rendering in Firefox (Piotr Matysiak)
* [GitHub:#d5aba6c9] - removed HELP button (Nicola)
* [GitHub:#e1d4f502] - Show widget settings for Updater widget (Nicola)
* [GitHub:#460a4cb6] - Show widget settings for Updater widget (Nicola)
* [GitHub:#b4975520] - translated DocInfo snippet description in english (Nicola)
* [GitHub:#b757e3b3] - [F] Allow Updater to try cURL if needed (Mr B)
* [GitHub:#fb756bd8] - Refactor - save_plugin.processor.php (yamamoto)
* [GitHub:#185fd00c] - New - $modx->db->save() (yamamoto)
* [GitHub:#3bde405c] - Code cleanup - save_plugin.processor.php (yamamoto)
* [GitHub:#a3c5cb26] - Updated setup data to EVO cms (Nicola)
* [GitHub:#718c7ecc] - fix missing progressbar in DB info page (Nicola)
* [GitHub:#8eab2901] - updated top search style unpublished and deleted documents in result items (64j)
* [GitHub:#339b360d] - updated top search style unpublished and deleted documents in result items (64j)
* [GitHub:#2ed17105] - update top search search for a number in pagetitle, if more than 3 characters style locked and disabled result items (64j)
* [GitHub:#5932ca3f] - fix #251 (64j)
* [GitHub:#50c47bd8] - New - $modx->['enable_at_syntax'] (2. implement) (yamamoto)
* [GitHub:#2db57457] - New - $modx->['enable_at_syntax'] (1. add config) (yamamoto)
* [GitHub:#abbeed6c] - Minor fix (yamamoto)
* [GitHub:#50a80be7] - Revert @722b6e7 (yamamoto)
* [GitHub:#9c1554b8] - [F] Create directory 'assets/cache/updater' if not existing (Deesen)
* [GitHub:#722b6e7d] - Fix - parse IF tas (yamamoto)
* [GitHub:#cbb45b72] - #58 Fix - Giving placeholders to chunk from outside (yamamoto)
* [GitHub:#3ad110c6] - Fix - Set the property variable as empty value (yamamoto)
* [GitHub:#32042de6] - Improved - PHP error messages (yamamoto)
* [GitHub:#775bf9b8] - update document.parser added and update PHPDoc for functions format code in PSR2 (64j)
* [GitHub:#9e210958] - update ajax.php added loadExtension(modxapi) (64j)
* [GitHub:#00a784f5] - minify html code in cache file (64j)
* [GitHub:#dc80876a] - fix errors undeclared variables (64j)
* [GitHub:#f31ba421] - fix cache file config minifyphp_incache for chunks and line wrapping for html comments format code psr2 (64j)
* [GitHub:#14c04bce] - Fix - Do not minify not php strings (yamamoto)
* [GitHub:#fd4d1472] - optimizing the cache file (Serg)
* [GitHub:#3487f958] - fixed build cache (Serg)
* [GitHub:#d93ec66b] - fix publishTimeConfig in cache processor (Serg)
* [GitHub:#e96961ae] - fix build cache (Serg)
* [GitHub:#3e0ff3c8] - Fix recent commit ( @d8be6a4) (yamamoto)
* [GitHub:#24168cbd] - fixed cache build (Serg)
* [GitHub:#7a4755d4] - Fix recent commit ( @ae6c841 ) (yamamoto)
* [GitHub:#f4997517] - Code cleanup (yamamoto)
* [GitHub:#1a2c6278] - #243 Ditto - Can not show items when parameter is "parents=0" (yamamoto)
* [GitHub:#ee10e6ca] - Ditto Fix - dateSource problem (yamamoto)
* [GitHub:#43372dc4] - Refactor (yamamoto)
* [GitHub:#b958136b] - Minor fix (yamamoto)
* [GitHub:#c1ec4b15] - Minor fix (yamamoto)
* [GitHub:#c47b6f61] - Fix - filesize modifier (yamamoto)
* [GitHub:#85d5f04e] - Minor fix (yamamoto)
* [GitHub:#ea80fba3] - New modifiers "array_pop" and "array_shift" (yamamoto)
* [GitHub:#611436aa] - Add alias name for some modifiers (yamamoto)
* [GitHub:#5f734a46] - Fix - $modx->rewriteUrls() (yamamoto)
* [GitHub:#5fe53fd5] - Fix - "then" modifier (yamamoto)
* [GitHub:#fe8db049] - Fix - recent commit #109 (yamamoto)
* [GitHub:#f1c6276d] - Change tabs to spaces (yamamoto)
* [GitHub:#7bd9df49] - #225 Ditto pagination issue (yamamoto)
* [GitHub:#5efed9f7] - Fix for recent commit (yamamoto)
* [GitHub:#d8ef97a2] - [I] strip_tags modifier (yamamoto)
* [GitHub:#78016d66] - Login box animation (Piotr Matysiak)
* [GitHub:#54047c64] - Не верное отображение символов (ProjectSoft)
* [GitHub:#29d48aff] - #109 Fix - minifyphp_incache breaks heredoc syntax (yamamoto)
* [GitHub:#21cfd888] - [I] - Log failure of parse tags (yamamoto)
* [GitHub:#d416b754] - New - $modx->addLog() (yamamoto)
* [GitHub:#d6be64df] - Fix for recent commit (yamamoto)
* [GitHub:#05099418] - Replace tabs to spaces (yamamoto)
* [GitHub:#397e5a52] - fixed issue #181 (64j)
* [GitHub:#a7701766] - [R] class property change "var" to "public" (yamamoto)
* [GitHub:#c05a0ec8] - Minor fix (yamamoto)
* [GitHub:#9ffa5bd2] - Minor fix - php notice (yamamoto)
* [GitHub:#0481fd7b] - Minor fix - php notice (yamamoto)
* [GitHub:#4552908e] - Fix for recent commit (minified sitecache) (yamamoto)
* [GitHub:#58a99fb5] - Minor fix for recent commits (yamamoto)
* [GitHub:#677d05f4] - Refactor (yamamoto)
* [GitHub:#4d99708f] - Fix - recent commit (yamamoto)
* [GitHub:#d80528d7] - [I] $modx->makePageCacheKey() (yamamoto)
* [GitHub:#4fe0dfd3] - Fix recent commit (yamamoto)
* [GitHub:#28be774e] - Refactor $modx->getSettings() around cache (yamamoto)
* [GitHub:#57b67d3f] - Fix recent commit (yamamoto)
* [GitHub:#9b2935db] - set php display_errors when loggedin (yamamoto)
* [GitHub:#36951572] - [I] $modx->clearCache() (yamamoto)
* [GitHub:#d36e93fb] - Fix bug (yamamoto)
* [GitHub:#ad40f8ed] - update modx.js fix close tabs (64j)
* [GitHub:#be728411] - stabilize tabpane tabs if not found tabpane.js (64j)
* [GitHub:#7c481bd6] - Code cleanup (yamamoto)
* [GitHub:#bac72aca] - Use $_SERVER['REQUEST_TIME'] (yamamoto)
* [GitHub:#de463193] - Code cleanup - Remove file ending "?>" (yamamoto)
* [GitHub:#30c87fe2] - Code cleanup - indent (yamamoto)
* [GitHub:#1b3f3dd2] - Code cleanup and refactor - cache_sync.class.processor.php (yamamoto)
* [GitHub:#fe3540b6] - Use file_put_contents() (yamamoto)
* [GitHub:#2c5b49f0] - Code cleannup (yamamoto)
* [GitHub:#510d72f4] - [I] save_content.processor.php (yamamoto)
* [GitHub:#1dbe8512] - New - $modx->clearCache($docid) (yamamoto)
* [GitHub:#84f36fa0] - Refactor - $modx->clearCache() (yamamoto)
* [GitHub:#5620ef0b] - Code cleanup (indent) (yamamoto)
* [GitHub:#45a42bfa] - Fx - source code indent missing (yamamoto)
* [GitHub:#29b00f37] - Code cleanup (yamamoto)
* [GitHub:#4ae0e05e] - Code cleanup (yamamoto)
* [GitHub:#987ddea3] - fix modx.tabs close tab after clear trash (64j)
* [GitHub:#bfda8aee] - Minor fix (yamamoto)
* [GitHub:#d8d0e0ee] - #232 Modifier usage throws syntax error (yamamoto)
* [GitHub:#af0311cb] - Code cleanup (yamamoto)
* [GitHub:#13e70483] - #231 Fix - <@IF:[!$_GET['...'];!]> doesn't work (yamamoto)
* [GitHub:#0f37dcaf] - Fix (yamamoto)
* [GitHub:#a21e47ce] - fix - $config['enable_filter'] in cache_processor (yamamoto)
* [GitHub:#e50b82f9] - Code cleanup (yamamoto)