This repository has been archived by the owner on Oct 22, 2020. It is now read-only.
forked from KETSE/casebox
-
Notifications
You must be signed in to change notification settings - Fork 31
/
changelog.txt
executable file
·5352 lines (4570 loc) · 188 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
CaseBox 1.9.618 (2016-11-28)
==============================
- changed Toolbar & Window CSS
CaseBox 1.9.617 (2016-10-12)
==============================
- #7881 Added 'preview' as default action for objPreviewGrid onClick object fields
- corrected an error in Path.php->getPath
CaseBox 1.9.616 (2016-09-26)
==============================
- #13440 Error in logs when navigating to root folder
- #13439 CB allows to save a record with empty required fields
CaseBox 1.9.615 (2016-07-29)
==============================
- #13233 PDF preview doesn't work
CaseBox 1.9.614 (2016-07-22)
==============================
- #13197 If a file can't be uploaded due to file permissions, CB is blocked
CaseBox 1.9.613 (2016-07-20)
==============================
- #13105 Add "by month" as quick filter to pivot tables and search templates for consultation
CaseBox 1.9.612 (2016-07-20)
==============================
- #13159 Bug: Changing parameters in pivot table leads to empty tables
- #13113 BUG не возможно создать исходящее письмо закрыта
CaseBox 1.9.611 (2016-07-07)
==============================
- #13011 Deleted tehsauri items are shown in object preview
- #13043 Not all records are shown in EditMode in objects field
- #13045 Integer Facet interpreted as Object in BreadCrumb
- #13089 BUG with default folder ownership / Casebox
CaseBox 1.9.610 (2016-07-07)
==============================
- fixed headers doubling in preview
- custom "uid" field not displayed correctly in DC because of built-in uid
- validating standalone fields
- replace shoIn = tabsheet to editMode = standalone
CaseBox 1.9.609 (2016-06-23)
==============================
#12940 - BUG when creating a new case, case folders show empty
CaseBox 1.9.608 (2016-06-03)
==============================
- #12783 Process 'data-action', 'data-params' in objectHtmlPlugin
CaseBox 1.9.607 (2016-05-30)
==============================
- #12739 Fields not visible after Copy&Paste from one Search template to another
CaseBox 1.9.606 (2016-05-18)
==============================
- #12710 Object field with "scope: project" shows all records
CaseBox 1.9.605 (2016-05-04)
==============================
- #12613 Suspected bug with entering a case from a specific user
- #12598 User added a vFolder and it broke the instance
CaseBox 1.9.604 (2016-04-26)
==============================
- #12569 Can't create child nodes from objPlugin if object shown in popup window
- #12567 scope: project doesn't have effect
CaseBox 1.9.603 (2016-04-22)
==============================
- #12539 JS Error in dropdown
CaseBox 1.9.602 (2016-04-21)
==============================
- #12472 Field has no properties after copy&pasting it from one tmpl to another
- css fixes for rtl languages
- translations updated
CaseBox 1.9.601 (2016-04-20)
==============================
- #12476 Printing version with arabic support
- #12477 Custom logo and favicon
CaseBox 1.9.600 (2016-04-11)
==============================
- #11916 HtmlPlugin object plugin based on BaseObjectPlugin
- #12406 autoexpand editors popup list when editing a field
- #12407 display field triggers at the right for rtl languages
- #11895 Record.onCopy: exclude comments + add Copy/Move action types in log
CaseBox 1.9.599 (2016-04-07)
==============================
- prepare "content" solr field before indexing into solr
- change required solr to 5.5.0 for travis
CaseBox 1.9.598 (2016-04-07)
==============================
- moving cusor to start when selecting a dropdown value from combo and date fields
- add editable option for objects combo and autoexpand for non editable
- allow to specify custom fn along with facet source for a field,
so that the result facets could be filtered by cystom logic
CaseBox 1.9.597 (2016-04-07)
==============================
- updating order of template fields, on update, in template_structure table
- #12161 New content type similar to Консультация
Added facet source for fields
- #10221 Time Tracking feature
CaseBox 1.9.596 (2016-04-05)
==============================
- #12278 How to use a menu rule in vFolder
- #10726 CUSTOMIZATION: Limit of signs / карточка дела ограничение на 500 знаков с пробелами
CaseBox 1.9.595 (2016-04-04)
==============================
- #11047 Can some fields be hidden on some permission users for example name of victim and compliant against name.
CaseBox 1.9.594 (2016-03-30)
==============================
- pivot counting on child records
CaseBox 1.9.593 (2016-03-29)
==============================
- #11047 Can some fields be hidden on some permission users for example name of victim and compliant against name.
CaseBox 1.9.592 (2016-03-29)
==============================
- add configurable domain support for child facet configs
CaseBox 1.9.591 (2016-03-29)
==============================
- #12276 Make some fields of AffectedPerson indexed & create vFolder with view=pivot
- Replace child.facet.field solr requests with json.facet
- #12288 Pivot table labels issue
CaseBox 1.9.590 (2016-03-25)
==============================
- #12277 Introduce "availableViews": "grid, chart, pivot, activity, calendar"
- #12275 Add all Parent SOLR fields to Children records
- rollback NotificationView preview on click behavior
- #12003 Import eStatements files
- #10310 Import HR files into Alhaq
- #11049 Customizations to apply: Virtual folders, DC, facets
CaseBox 1.9.589 (2016-03-23)
==============================
- #10102 Field workers: one common list for HR & eStatements
- #10050 eStatements DB: District field migration & HR DB Location field
- #12006 Location & fldWorker fields are empty in eStatements
- #12005 Location field should be split into District & Location fields
- #12043 Use Objects fields Y/N instead of varchar
- #12028 Field order: 10xincrement
- #12002 Which tables from production server in kladr mysql db can be deleted?
- #12188 Order of MultiInstance fields not the same in View/Edit modes
- #12195 ContentObjects plugin should be always visible, otherwise I can't add subNodes
- #12183 Issues with object_plugins for barebone core fresh install
- #12080 Send INDEX of multiplied block in custom FN
CaseBox 1.9.588 (2016-03-21)
==============================
- #12139 Add hint with title=label for Bar/Column Charts
- #12136 Use UserSettings.DateFormat for Date columns in DC
- #12135 Sub-field not shown
CaseBox 1.9.587 (2016-03-21)
==============================
- #11044 first and second levels
- #12108 Label for Column Chart are not looking ok
- #12106 vNodes configs: pid is set to NULL onSave
- #12078 Headers inside a MaxInstances header is not visible
- #10221 Time Tracking feature
CaseBox 1.9.586 (2016-03-20)
==============================
- #10221 Time Tracking feature
- #12080 Send INDEX of multiplied block in custom FN
CaseBox 1.9.585 (2016-03-16)
==============================
- #12014 Can't attach files to new tasks
- vertical edit grid adjustments
CaseBox 1.9.584 (2016-03-16)
==============================
- #11246 Virtual Folders and max instance
CaseBox 1.9.583 (2016-03-15)
==============================
- #11246 Virtual Folders and max instance
- verticalEditGrid complete editing before Saving on Ctrl + S
CaseBox 1.9.582 (2016-03-14)
==============================
- #10726 Limit of signs / карточка дела ограничение на 500 знаков с пробелами
- #11898 Improvements for Header & MaxInstances
- #11888 Refactoring object_type_plugins
CaseBox 1.9.581 (2016-03-13)
==============================
- #11888 Refactoring object_type_plugins
- #11821 Index MaxInstances fields as _childDocuments_ in SOLR
CaseBox 1.9.580 (2016-03-13)
==============================
- #11898 Improvements for Header & MaxInstances
CaseBox 1.9.579 (2016-03-11)
==============================
- #11400 "Next" button in Activity Stream doesn't work the first time
- #10221 Time Tracking feature
- #11882 Same notification comes several times
- #11847 BUG / notifications repeat themselves over and over
- #11856 Record preview doesn't appear in Notifications when Preview is OFF
- #11887 multiValued object field doesn't work
CaseBox 1.9.578 (2016-03-09)
==============================
- add show/hide legend under Options menu for all charts
- time add window appear near clicked button
- changes animation on piechart hover
- pivot view adjustments
- #11815 IMG preview not working
CaseBox 1.9.577 (2016-03-07)
==============================
- #8900 Locked first Column/Row in PivotGrid & Export PivotTable to Excel
CaseBox 1.9.576 (2016-03-07)
==============================
- #11752 contentItems object plugin
CaseBox 1.9.575 (2016-03-04)
==============================
- added direct "add" button for time-spent
- #10292 Notifications toolbar improvements
- #11748 Plugin showing Record title, creation date etc (the header) in Edit mode doesn't appear
CaseBox 1.9.574 (2016-03-02)
==============================
- #11043 Tabs
- #10221 Time Tracking feature
- #11719 fields not ordered according to Order
- #11720 After recent update, vGrid has focus problems
- #11636 Writing value in vGrid dropdown field shows an ID after commit
CaseBox 1.9.573 (2016-02-29)
==============================
- #10292 Notifications toolbar improvements
- #11472 Improvements to User menu & Notifications list
- #11042 stability of fields
- #11358 Search menu not ok: wrong icons & deleted search tmpl appear
- #11147 Object DIFF in email notification shows same value
- #11470 If I click inside a comment in Activity Stream, the list is scrolled to the top
- #11400 "Next" button in Activity Stream doesn't work the first time
- #11044 first and second levels
- #10835 'Tree' translation not applied
CaseBox 1.9.572 (2016-02-24)
==============================
- #10672 Bug dev Casebox / took ownership, cannot close task
- #10433 impossible to write an empty comment with just an attachment
- #8658 When deleting a user, email address cannot be used again
- #11183 Broken task preview
- #11152 Do not add Owner/Creator in User Watch List (subscribe)
CaseBox 1.9.571 (2016-02-18)
==============================
- #11047 Can some fields be hidden on some permission users for example name of victim and compliant against name.
- #11045 titles of taxonomies do not show when the text is long
- #10755 Pie chart not showing some legend text
- #11065 Header appears two times in object preview rendering
- #11023 Custom icons not shown in GridView
CaseBox 1.9.570 (2016-01-27)
==============================
- #10590 Перенос папки данными - не работает кнопка Apply for all / экспортировать данные в большом количестве не получается
- #10512 add custom Search Query
- #10398 View=Charts, Sorting doesn't work
- #10392 При копировании писем из одного дела в другое система задает вопрос о замене
Fixed Bugs:
----------
- #10478 system user cannot be added as lawyer in a case
- #10400 DC not displaying all data
CaseBox 1.9.569 (2016-01-14)
==============================
- #10324 User language was reset & and email notifications in wrong language
- #10323 User 'nora' can't see tasks, but is in all security groups
- #10288 Object preview in direct link doesn't use the CSS? + user avatars not shown in tasks
- #9488 Problems when accessing a folder by clicking on a link in notifications tab
- #10302 Stats component not working
CaseBox 1.9.568 (2016-01-12)
==============================
- #10268 Notification broken
CaseBox 1.9.567 (2016-01-12)
==============================
- check object existance on comment refferences
CaseBox 1.9.566 (2016-01-12)
==============================
- removed Zend lib
- #9874 Trigger reindexing after making changes that affect SOLR
Fixed Bugs:
----------
- #10150 Comment indirectly rendered
- #10039 Error on export data
Notes:
----------
- php_imap extension should be enabled in php
CaseBox 1.9.565 (2016-01-10)
==============================
- Testing Travis build errors (tests adjustment)
CaseBox 1.9.561 (2016-01-04)
==============================
- #9897 Fix CSS for Arabic Language on faceting block
Fixed Bugs:
----------
- action buttons from popup window preview didnt work
CaseBox 1.9.560 (2015-12-30)
==============================
- added translation for "Cancel" word
- changed totals calculation for pivot table
Fixed Bugs:
----------
- errors on core_create
CaseBox 1.9.559 (2015-12-23)
==============================
- #9874 Trigger reindexing after making changes that affect SOLR
Notes:
----------
- updated translations in _casebox.sql
CaseBox 1.9.558 (2015-12-17)
==============================
- #9843 Dashboards
- renamed view config options:
pivot_type -> pivotType
chart_type -> chartType
- issue #30 unable to install casebox
Important Notes:
----------
- config model have to be updated by executing shell command:
php 20150826_core_config_model.php -c < core_name>
CaseBox 1.9.557 (2015-12-01)
==============================
- #8753 Request to add a column "Приемная" to the Consultation search results закрыта
- #9806 Error when searching for 'Human Rights Information Center'
- #9692 Show map pointer, improve UI
- #9517 DIFF shown in Activity Stream not correct
- #9358 Demo not being reset by demo data
CaseBox 1.9.556 (2015-11-26)
==============================
- #9692 Show map pointer, improve UI
- #9358 Demo not being reset by demo data
- #9699 Incorrect breadcrumb
CaseBox 1.9.555 (2015-11-25)
==============================
- #9672 Deleting a favorite should Unstar the object, not actually deleting it
- #9707 Tmpl name not shown in object preview
- #9699 Incorrect breadcrumb
Note: facet definisions that should display titles as they are in solr and not try to lookup in tree,
should have set in its config "type": "varchar"
- #9673 Enable Trashbin folder on dev core
Fixed Bugs:
----------
- #9678 JS error breaks barebone CB
Notes:
----------
- updated translations in _casebox.sql
CaseBox 1.9.554 (2015-11-24)
==============================
- #9304 Join queries
- #9454 Leaflet library should be loaded from local server, not CDN + Edit form not shown
CaseBox 1.9.553 (2015-11-23)
==============================
- remove field aliasing on solr query for maps
Fixed Bugs:
----------
- js error because of automated "public" added before function definition
CaseBox 1.9.552 (2015-11-21)
==============================
- #9600 Guarantee GUID uniqueness + guid table per core?
- #9302 Adding GeoMapping
- #9627 JS Error when opening Stratelit
Fixed Bugs:
----------
- #8006 Grid DC config management
- #9313 BUG: not possible to leave field учреждение empty, although it is not mandatory
Notes:
----------
- for existing local cores execute casebox/install/mysql/differential_updates/v.1.9.552.sql
for each core to create guid table
CaseBox 1.9.551 (2015-11-19)
==============================
- #9302 Adding GeoMapping
- #9465 UI polish: Comment button in Activity Stream
- #9517 DIFF shown in Activity Stream not correct
CaseBox 1.9.550 (2015-11-17)
==============================
- limit indexing into Solr of extracted files contents to 1MB to avoid java.lang.OutOfMemoryError
CaseBox 1.9.549 (2015-11-17)
==============================
- #9122 Tamkeen Permission and transfer of ownership
CaseBox 1.9.548 (2015-11-16)
==============================
- #9480 Problems with update: Custom column to choose from got lost
- #9430 Move upgrade scripts from /bin/ to /sys/upgrade/
- #9481 Error on edit Objects
CaseBox 1.9.547 (2015-11-15)
==============================
- include Notifications test for travis
CaseBox 1.9.546 (2015-11-15)
==============================
- #9247 vFolder in Favorites doesn't work
- #9377 CB should not break if a treeNode instance doesn't work + strange behaviour of treeNodes
- #9454 Leaflet library should be loaded from local server, not CDN + Edit form not shown
- #8658 When deleting a user, email address cannot be used again
CaseBox 1.9.545 (2015-11-14)
==============================
- update translations
CaseBox 1.9.544 (2015-11-14)
==============================
Fixed Bugs:
----------
- verify if leaflet namespace is initiated
- #9440 Getting Error when saving a treeNode config
CaseBox 1.9.543 (2015-11-13)
==============================
- Increased space between tree nodes, grid rows
- showing FacetNav total in gray color
CaseBox 1.9.542 (2015-11-13)
==============================
- #9045 Can't write comment in Activity Stream view
- #9151 Remove Comment.textArea in Activity Stream, replace it with "Comment" link
- #9377 CB should not break if a treeNode instance doesn't work + strange behaviour of treeNodes
Notes:
----------
- updated translations in _casebox.sql
CaseBox 1.9.541 (2015-11-12)
==============================
- GeoMap view adjustments
CaseBox 1.9.540 (2015-11-12)
==============================
- #9302 Adding GeoMapping
CaseBox 1.9.539 (2015-11-06)
==============================
- iterate codacy issues
- #9200 Import Alhaq statements (eStatements2003_be.mdb)
Fixed Bugs:
----------
- #9303 Titles of menu items broken
CaseBox 1.9.538 (2015-11-02)
==============================
- #9258 Last user that did action should be shown in Activity Stream for the object
- #9183 Color field names for required fields instead of underline in field Value & Save button always enabled
- #9083 Clean field types list
Fixed Bugs:
----------
- #9202 Fast clicks in Tree doesn't correctly select node
- #9241 Filter panel closes after selecting a facet & button remains ON
CaseBox 1.9.536 (2015-10-31)
==============================
Fixed Bugs:
----------
- fail creating core from script
CaseBox 1.9.536 (2015-10-30)
==============================
- #9184 Transfer ownership feature
Fixed Bugs:
----------
- separators not set correctly in create menus
- misspelled variable name in DataModel\Users.php
- removed remained resource reference in Files.php
- wrong versions assignment in File.php
- misspelled namespace in Solr\Client.php
- misspelled variable name in TemplatesStructure.php
- wrong variable name in DBNode.php
CaseBox 1.9.535 (2015-10-29)
==============================
- template fields are no more saved/updated from its data['fields'] property
- set ntsc to 1 for folder templates
- removed upgrade_task_data.php
Fixed Bugs:
----------
- mark notifications as seen by action id not by notification id
CaseBox 1.9.534 (2015-10-19)
==============================
- #9088 Trouble with "word" file preview
- #8988 Misleading activity log entry 'updated' instead of 'created' in activity stream
- #9034 SOLR error on sorting multiValued SOLR columns & UI broken
CaseBox 1.9.533 (2015-10-14)
==============================
~ #8818 Favorites vFolder
- #9029 Emails coming with the same comment for record where notifications==off
- #9042 Emails not sent to @oburlaca after 15min idle period
- #9056 Date format not consistent andn "Nan-Nan" displayed
- #8618 Popup menu for LeftRibbon should appear on the right of buttons, not below
Fixed Bugs:
----------
- js error on request more comments in vertical layouted edit window
CaseBox 1.9.532 (2015-10-09)
==============================
- #8006 Grid DC config management.
Added search_DC config.
Fixed Bugs:
----------
- #9033 Opening the Notifications panel when the Red mark appears will not show new notifications
- #8935 Error with "Sort ascending"
- #8860 Objects with "defaultPid" in tmpl are not created under that Pid, but directly in Tree
CaseBox 1.9.531 (2015-10-07)
==============================
- #8618 Popup menu for LeftRibbon should appear on the right of buttons, not below
- #8920 Not all comments are shown when clicking "More" + show total number of comments if not all shown
- #8974 Remove versioning info from grid
- set limit to 500 elements for calendar veiw
Fixed Bugs:
----------
- #8811 Remove Notifications button in objPreviewPanel and add one option in dropdown menu
- #8620 rows property for pivot view overwritten by getViewConfig method
- #8913 "Next" button doesn't appear in Stream view footer area
- #8986 Comments area missing for activity stream & comments not properly displayed in Preview panel
- #8946 Error copying cb_dev mysql db using SqlYog, trigger problem
CaseBox 1.9.530 (2015-10-06)
==============================
- #8887 Notifications doesn't appear & two browser instances not synced
- #8913 Activity Stream: refresh doesn't set page=1
- #8621 Adding new treeNode class: vNode. acts like FacetNav but no faceting
Fixed Bugs:
----------
- #8892 Email notifications doesn't come when @mentioning
- #8952 Inconsistent results when sorting the grid in facetedNav & Search tmpl
- #8984 Pivot table not working for FacetedNav
- #8920 Not all comments are shown when clicking "More" + show total number of comments if not all shown
CaseBox 1.9.529 (2015-10-05)
==============================
- removed debug messages
Fixed Bugs:
----------
- wrong class name call in User.php
CaseBox 1.9.528 (2015-10-05)
==============================
- #8745 Enable Calendar View/Objects with new requirements
Fixed Bugs:
----------
- #8864 CB tries to sort in pivot view and it gives Error
- saving a search template changes its type from "search" to "template"
CaseBox 1.9.527 (2015-09-28)
==============================
- hide favorites panel
- #8848 Hide Tree.RootNode
- #8811 Remove Notifications button in objPreviewPanel and add one option in dropdown menu
Fixed Bugs:
----------
- #8843 TagField editor not showing selected value
- #8840 Error 'Cannot connect to server' when logging out
CaseBox 1.9.526 (2015-09-22)
==============================
- Don't notify admin when extracted file content is empty. Happens often for scanned pdfs.
- #7985 Add Favorites for users to quickly navigate objects they want to bookmark
Fixed Bugs:
----------
- remove old notification records with same id on receiving new ones
Notes:
----------
- updated translations in _casebox.sql
- updated bare_bone_core.sql
CaseBox 1.9.525 (2015-09-17)
==============================
- #7536 Email notifications going wild
CaseBox 1.9.524 (2015-09-10)
==============================
- #8726 JS small fixed to improve EditGrid rendering&speed, improve UX
- #8621 Adding new treeNode class: vNode. acts like FacetNav but no faceting
- #8620 Upgrading Cfg for facetedNav & adding a new view: 'stream'
CaseBox 1.9.523 (2015-09-08)
==============================
- #8656 Unresponsive script on Firefox
- #8586 UI frozen, unresponsive script in firefox browser reported
- #8562 Notifications improvements
- #8652 Creating new users from root - should be either set pw or email invite
CaseBox 1.9.522 (2015-09-07)
==============================
- #8407 Buttons in LeftRibbon
- #8608 High CPU usage when browsing HandHelp
- #7118 Create simpler names for templates template/fields template
CaseBox 1.9.521 (2015-09-05)
==============================
- #8006 Grid DC config management
- #7501 Not all notifications come by email
- #8528 UI broken after using grouping in Grid
Fixed Bugs:
----------
- #8166 Notifications not properly updated
CaseBox 1.9.520 (2015-09-03)
==============================
- #7881 onClick actions for object fields in Record preview grid
- #8471 Reopening a task should cancel completion for Assignee
- #8011 The comment should be transferred into the object window when opening it
- #8483 New number for consultation when duplicating
- #8341 Can't follow a task if it's opened in a pop up window
- #8352 "sort" has no effect in treeNode config
CaseBox 1.9.519 (2015-09-02)
==============================
- #8011 The comment should be transferred into the object window when opening it
- #7339 Notifications sent if @user is used in Task.description ?
- #8227 Root needs to be able to reset password without sending email
- #7118 Create simpler names for templates template/fields template
- #8125 Rename Menu titles in Vanilla/Demo/Installation
- #8195 Restore Tree.state correctly (expanded treeNodes)
- #8305 Show the link with last 20 chars of the full_path of the record below record title in Preview Panel & Record Window
- #8350 How to set the order of TreeNodes class loading?
- #8398 Extra space in Activity Stream
Fixed Bugs:
----------
- #8416 Warnings in install.php
CaseBox 1.9.518 (2015-09-01)
==============================
- #8350 How to set the order of TreeNodes class loading?
- #7959 Everyday, the demo instance (demo = vanilla + sample dataset) should be wiped at 00:00 UTC
- #8305 Show the link with last 20 chars of the full_path of the record below record title in Preview Panel & Record Window
- #8309 Versioning object plugin not correctly showing fileVersion owner & css
- #8313 defaults for global cb__casebox & ini files
- #8224 Casebox Barebone missing 'Link' object
- #8312 bare_bone.sql should have DBNode as root (id=1) instead of a virtual node
- #7977 mysql.config table: controlled from CB UI via 'config' content type records, split treeNodes config
Fixed Bugs:
----------
- #8308 Sorting by ID doesn't work in Grid
- #8315 get js error when editing a comment
- #8349 Saving config of #8282 gives Server 500 Error
CaseBox 1.9.517 (2015-08-28)
==============================
- #8203 Adding a "Next >" bottom div in activity stream instead of pagination/infinite scrolling
- #7977 mysql.config table: controlled from CB UI via 'config' content type records
splitted treeNode configs in subrecords
Fixed Bugs:
----------
- #8214 Pivot table not generated, JS error
CaseBox 1.9.516 (2015-08-26)
==============================
- #8165 tagField not using keyboard properly.
- #8183 Space between object plugins if Preview has txt field
- #8128 Reset pageNr in grid when search is performed
- #8057 Need help enabling MultiLanguage support
Added config option "languagesUI"
- #7339 Notifications sent if @user is used in Task.description ?
Added boolean config option "suggestUsers" for memo field types.
Notes:
----------
- updated translations and rtl languages in _casebox.sql dump
CaseBox 1.9.515 (2015-08-26)
==============================
- #7977 mysql.config table: controlled from CB UI via 'config' content type records
Notes:
----------
- use bin/core_update_config_model.php to move config into tree
CaseBox 1.9.514 (2015-08-24)
==============================
- #8107 Sorting by value in Filter.Facet & Chart view should be asInt if facet.type == int
- #8057 Need help enabling MultiLanguage support
- #8014 Allow comma separator in Assigned task field
Fixed Bugs:
----------
- #8105 Selection in grid lost when scrolling.
- #7988 Back button doesn't work for search
CaseBox 1.9.513 (2015-08-21)
==============================
- #7007 Sent mail adjustments
CaseBox 1.9.512 (2015-08-21)
==============================
- #7007 Do not process files with Tika that can't be extracted and report by email
- #7988 Back button doesn't work for search
- #8014 Allow comma separator in Assigned task field
- #7479 TWEAK: Notifications show in title bar
CaseBox 1.9.511 (2015-08-20)
==============================
- #6765 Create basic CB customization script based on specs for Templates, Fields, Thesauri
CaseBox 1.9.510 (2015-08-19)
==============================
Fixed Bugs:
----------
- #7987 Order of fields not correct in object preview
- #798 Can't open searchTemplate
CaseBox 1.9.509 (2015-08-19)
==============================
Fixed Bugs:
----------
- #7546 Error when switching from File1 to File2 when rightPanel is in previewMode
- #7950 Breadcrumb not correct when double clicking record in search results
- #7972 Can't close task, buttons in Task preview doesn't work
CaseBox 1.9.508 (2015-08-18)
==============================
- #7924 Closing a task event doesn't show in Activity Stream
- #7932 Removed focused effect for Files, Content, Comments object plugins
- #7933 Activity stream should be scrolled to Top after Refresh is clicked
- #7868 duplicate consultations button for stratelit
Fixed Bugs:
----------
- #7931 Can't set a new user avatar after 1st change
- #7927 Activity Stream: clicking attached picture in comments doesn't open it
CaseBox 1.9.507 (2015-08-17)
==============================
- #7772 Implement Activity Stream UI powered by core solr data based on last_action_dttm
Fixed Bugs:
----------
- #7895 Time fields displayed as Int in DC if solr_column_name is used
- #7876 clicking on password change link displays leaving page message
CaseBox 1.9.506 (2015-08-14)
==============================
- #5002 popup menu for objects
- #7772 Implement Activity Stream UI powered by core solr data based on last_action_dttm
Fixed Bugs:
----------
- issue #23 - PreviewExtractor with a snake case core name does not work.
- commenting didnt update last action date for parent object
CaseBox 1.9.505 (2015-08-13)
==============================
- #7339 Notifications sent if @user is used in Task.description ?
- clicking object links in notification view will open object window
Fixed Bugs:
----------
- #5777 popup submenu on tree is empty
- #7119 BUG: node search when paginated
- #7546 Error when switching from File1 to File2 when rightPanel is in previewMode
- #7568 Order of fields in Preview not same as in Edit mode
CaseBox 1.9.504 (2015-08-12)
==============================
- #7772 Implement Activity Stream UI powered by core solr data based on last_action_dttm
- #7504 Menu/PopupMenu cleanup
Fixed Bugs:
----------
- issue #19 - Installed on CentOS 7 but can't create core's db tables
CaseBox 1.9.503 (2015-08-08)
==============================
Fixed Bugs:
----------
- issue #19 - Installed on CentOS 7 but can't create core's db tables
- issue #11 - Selection of multiValued form editor disappears upon scroll
CaseBox 1.9.502 (2015-08-07)
==============================
- #7772 Implement Activity Stream UI powered by core solr data based on last_action_dttm
Added comments in Activity Stream
CaseBox 1.9.501 (2015-08-06)
==============================
- #7772 Implement Activity Stream UI powered by core solr data based on last_action_dttm
- issue #17 - Select dropdown only loads the first 50 items, and related issues #17
Added config option "rows" for objects combo fields
Fixed Bugs:
----------
- issue #19 - Installed on CentOS 7 but can't create core's db tables
- issue #18 - Object Permissions - User Labels disappearing after update
CaseBox 1.9.500 (2015-08-03)
==============================
New Features, Improvements
--------------------------
- updated unoconv to last version (0.7)
- remember columns state for vertical edit grid
Fixed Bugs:
----------
- issue #16 - Casebox and Filepreview/Download (Libreoffice&unoconv) - Ubuntu Server 14.04
CaseBox 1.9.499 (2015-07-29)
==============================
New Features, Improvements
--------------------------
- #7335 Add Rename menuItem in popup for Files plugin in ObjPreview & in FilePreview window dropdown menu
- #7504 Menu/PopupMenu cleanup
- #7424 TIFF files to be converted in PDF, not in PNG
Converting to separate png's
- #7520 "Loading" UI feedback
- #7178 Visually it's hard to read the notifications: same color for unread & onMouseOver + no border between unread
class for unread records is "notification-record-unread"
- #7337 Do not reload Grid or change Folder if Notifications panel is active
CaseBox 1.9.498 (2015-07-27)
==============================
New Features, Improvements
--------------------------
- #7480 TIKA: Send file physical location on disk instead to CURL instead of file content
- show field names instead of field titles if not defined for a specific language
Fixed Bugs:
----------
- #7316 Multilingual interface installation problematic
- #7580 JS Error when saving node
CaseBox 1.9.497 (2015-07-24)
==============================
Fixed Bugs:
----------
- show menu separators for for any language
- detect correct template ids for upgrade menu model
CaseBox 1.9.496 (2015-07-24)
==============================
New Features, Improvements
--------------------------
- #6857 Add template to menu through interface
- #7097 Specifying order of selected values in multiValued objects field
- renamed apply_vanilla_data_model.php to core_apply_vanilla_model.php from /bin folder
- added new template type "menu" for menu items
- added option "allowValueSort" for object fields that are edited in a form ("editor": "form")
- created generic widget for visual records sorting
Fixed Bugs:
----------
- errors extracting file contents with tika server
the tika server were listening on ipv6 host
Notes:
----------
- /bin/core_update_menu_model.php should be executed to upgrade menu mode for existent cores
(php core_update_menu_model.php -c <core_name>)
script will remove menu table for DB transfering all rules in tree in System/Menus folder
CaseBox 1.9.495 (2015-07-21)
==============================
New Features, Improvements
--------------------------
- #7107 Can't edit User Groups in User management
Fixed Bugs:
----------
- #7320 Can't upload big files
CaseBox 1.9.494 (2015-07-17)
==============================
New Features, Improvements
--------------------------
- refactoring and covering DataModel namespace with tests
Fixed Bugs:
----------
- #7023 error with client cards
CaseBox 1.9.493 (2015-07-15)
==============================
New Features, Improvements
--------------------------
- consolidation attempt for importing process
- added decimalPrecision option for float fields config
Fixed Bugs:
----------
- #7180 FacetedNav doesn't work with "template" as level_fields
- #6716 Can't upload new files in a new local instance
- #7237 Order of comments is not correct
- nothing changes on breadcrumb elements click
CaseBox 1.9.492 (2015-07-08)
==============================
Fixed Bugs:
----------
- #5661 Button "показать наименования" has no effect
- #6865 the GrandTotal cell (the right/bottom one) is not using floatPrecision
- #7049 AND / OR button when a facet has several selected values
- #7081 Preview of task shows "Reminders" header after save
CaseBox 1.9.491 (2015-07-04)
==============================
New Features, Improvements
--------------------------
- adjust searchResults tree node for custom routers
CaseBox 1.9.490 (2015-07-03)
==============================
New Features, Improvements
--------------------------
- updated barebone core, set system folder to not implement parent nodes security,
wich imply it to be accessible only for root user.
root will be responsible to add any other user to this folder access list.
- changed -s parameter for core_create.php to work like in apply_vanilla_data_model.php
i.e. when -s given without value then barebone core is used by default.
- updated translations table in _casebox.sql dump
Fixed Bugs:
----------
- new users that do not have any security set associated
could navigate the tree, although they could not preview items or do any other actions
CaseBox 1.9.489 (2015-07-03)
==============================
New Features, Improvements
--------------------------
- #5723 No errors shown if upload failed
- #6718 Make createMenu work in search template
- #6770 Change the modal popup "can't connect to server" to a tooltip at the top for a period of time
CaseBox 1.9.488 (2015-07-02)
==============================
Fixed Bugs: