This repository has been archived by the owner on Nov 19, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1437 lines (1313 loc) · 43.5 KB
/
ChangeLog
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
7.8.3
16-02-17
Bugfix
* #i0131: Restoring of Configuration/TypoScript/job/593611/plugin/org/constants.ts
7.8.2
16-01-18
Improvement
* #i0130: TCA datetime without any default: system cached the value!
* #i0129: Update cps_tcatree from 0.4.3 to 0.4.4
* #i0128: Cal: type event got the TCA for list views, marginal views and images
Bugfix
* #i0130: .0. is moved to .6. for tx_org_event in Configuration/TypoScript/calendar/201/plugin/tx_browser_pi1/list/navigation.ts
* #i0127: staff 111: list view: heder was configured with url.0 but is must be url.1
* #i0126: Headquarters TypoScript: Label fax was missing
7.8.1
16-01-05
Bugfix
* #i0125: Unproper headquarterUid is moved to proper headquartersUid in some TypoScript templates
* #i0124: Calendar: Filter: tx_org_location.mail_city isn't unique and is moved to tx_org_location.title
7.8.0
15-12-30
Features
* #i0123: Calendar: Filter can disabled by TypoScript Constant Editor. See: [ORGANISER - FILTER: CALENDAR]
* #i0122: Locations: new field city in filter form
* #i0120: Jobs: new field lengthoftime
* #i0119: Jobs: Frontend Editing:
* Only for inserting a new record.
* Editing of records isn't possible.
* No localisation support.
Effected files:
* ext_tables.sql
* tx_org_job.fe_cruser_id (new)
* Classes/* (new)
* Configuration/TCA/tx_org_job.php
* tx_org_job.fe_cruser_id (new)
* Resources/Private/View/TxPowermail/Partials/Form/Tx_org_jobsector.html (new)
Improvement
* #i0121: Update cps_tcatree from 0.4.2 -> 0.4.3
* #i0120: Initialisation Extension linkhandler is removed.
7.7.0
15-12-06
Features
* #i0116: Caddy: new template for hidden fields
* #i0114: Path to flags is configurable by the constant editor. See [ORGANISER - ICONS] > Flags
* #i0113: New static template Bootstrap
* #i0111: Filter for Downloads can disabled by TypoScript Constant Editor. See: [ORGANISER - FILTER: DOWNLOADS]
* #i0109: New TypoScript for download
* If downloads are available in several languages, it will display in each language
* Extra files for caddy
* #i0107: Bootstrap: Update for Browser 7.3.0 Bootstrap
Effected files:
* Configuration/TypoScript
* calendar
* 201
* listincolumns/tx_browser_pi1/list
* htmlSnippets.ts
* tableFields.ts
* tx_browser_pi1
* list
* htmlSnippets.ts
* tableFields.ts
* single
* htmlSnippets.ts
* onecolumn/htmlSnippets.ts
* tableFields/tx_org_calentrance.ts
* 211/setup.txt
* downloads
* 301/tx_browser_pi1/list
* filter.ts
* tableFields.ts
* 311
* setup.txt
* events/61826/tx_browser_pi1/list
* htmlSnippets.ts
* tableFields.ts
* headquarters
* 501/tx_browser_pi1
* list
* htmlSnippets.ts
* tableFields.ts
* single/htmlSnippets.ts
* 511/setup.txt
* job/593611/plugin/tx_browser_pi1
* list/htmlSnippets.ts
* single
* htmlSnippets.ts
* tableFields
* tx_org_headquarters.ts
* tx_org_staff.ts
* location/701/tx_browser_pi1/list
* htmlSnippets.ts
* tableFields.ts
* news
* 401
* tx_browser_pi1
* list
* filter.ts
* htmlSnippets.ts
* tableFields.ts
* single/htmlSnippets.ts
* 409/tx_browser_pi1/list/tableFields.ts
* 411/tx_browser_pi1/list
* htmlSnippets.ts
* marker.ts
* 412/tx_browser_pi1/list
* htmlSnippets.ts
* marker.ts
* service/593621/tx_browser_pi1/list/htmlSnippets.ts
* staff
* 101
* listincolumns/tx_browser_pi1/list
* htmlSnippets.ts
* tableFields.ts
* list
* htmlSnippets.ts
* tableFields.ts
* single
* htmlSnippets.ts
* 102
* list
* htmlSnippets.ts
* tableFields.ts
* single
* htmlSnippets.ts
* 111/setup.txt
* vCard/120/tx_browser_pi1/list/htmlSnippets.ts
Improvement
* #i0117: Template hidden: 'Org [3.1.2] + Downloads Caddy Flags'
* #i0112: linkhandler 1.1.0 is fixed. New version 1.1.1
* #i0110: locallang_db.xml is moved to Resources/Private/Language
* #i0108: If extension Flip it! isn't loaded, any Flip it! tab won't displayed in the TCA of the download records
Bugfix
* #i0118: SQL bug in case of an andWhere category statement and localisation (see #i0214 at TYPO3 Browser)
Workaround:
* The l10n_mode property in the TCA of the category fields of all tables
is moved from 'l10n_mode' => 'exclude' to 'l10n_mode' => 'mergeIfNotBlank'
* #i0115: PHP Warning: Missing argument 1 for tx_org_flexform::__construct() in lib/flexform/class.tx_org_flexform.php line 88
7.6.1
15-11-15
Bugfix
* #i0106: double content in cal single view
7.6.0
15-10-29
Feature
* #i0105: New CSS properties
* .tx-browser-pi1 .searchbox fieldset
* .tx-browser-pi1 .searchbox fieldset legend
See: Resources/Public/Css/org.css
* #i0104: New cal template: Org [2.3] Calendar (map only)
* #i0103: New cal template: Org [2.2] Calendar (map only)
* #71189: CSS inline for the new cal template
* #i0102: New cal template: Org [2.1.1] +list view with columns
* #i0100: tx_org_staff is extended with marginal fields
* #i0099: New staff template: Org [9.1.1] +list view with columns
* #i0098: Staff single view calendar get the more/less property
* #i0096: Staff single view is extended with a calendar list
* #i0095: Calendar single view is extended with a people list
* #i0094: Calendar list view is extended with a people filter
* #i0091: calender gets a relation to staff and staff gets a relation to calendar
* #i0101: Resources/Private/RealUrl/realurl_conf.php got an update
* #71116: Get an ID for including a JavaScript inline
* #i0097: Staff single view: image height for company logo is decreased from 400 to 80
* #i0093: Downgrade property is removed in ext_conf_template.txt
* #i0092: TCA configuration got TYPO3 6.x structure
* TCA downgrade to Organiser 3.x isn't possible any longer.
7.5.5
15-10-23
Improvement
* #i0090: Location: TCA label and label_alt are switched
* #i0089: Calender: new TCA property useColumnsForDefaultValues
* #i0088: Calender TCE form: deprecated types are removed
* #i0087: Location template: calendar items got a date
* #i0086: CSS z-index for .clearing-blackout moved from 998 to 2.000
* Resources/Public/Css/org.css
* #i0085: CSS new class ul.vcard li.expired. See:
* Resources/Public/Css/org.css
7.5.4
15-10-22
Improvement
* #i0084: Leaflet control panel: new CSS property color. See:
* Resources/Public/Css/org.css
* #i0083: Calendar items: Pop ups in the map are extended with date and location. See:
* Configuration/TypoScript/calendar/201/tx_browser_pi1/list/navigation.ts
* #i0082: CSS .sub-nav. See:
* Resources/Public/Css/org.css
7.5.3
15-10-21
Improvement
* #i0081: Labeling TypoScript templates
7.5.2
15-09-22
Feature
* #70021: Staff:title field
Improvement
* #i0080: CSS .singleview padding:1em 0;
* #i0079: cal single: backbutton is moved from html to typoscript
Effected files:
* Configuration/TypoScript/calendar/201/tx_browser_pi1/single
* htmlSnippets.ts
* tableFields/tx_org_news.ts
7.5.1
15-09-21
Bugfix
* #i0078/#t0462: Update Organiser hfs-berlin.de
* 411: News margin view
* removed: wrap <div class="row">|</div>
Effected files:
* Configuration/TypoScript/news/411/tx_browser_pi1/list/htmlSnippets.ts
7.5.0
15-09-06
Feature
* #i0077: News: template for PDF Controller single view
* #i0076: News: template for PDF Controller list view
Effected files:
* Configuration/TypoScript
* base/plugins/org/constants.ts
* news/401/tx_browser_pi1
* constants.txt
* setup.txt
* list
* htmlSnippets.ts
* tableFields.ts
7.4.1
15-08-23
Improvement
* #i0075: news single: backbutton is moved from html to typoscript
Effected files:
* Configuration/TypoScript/news/401/tx_browser_pi1/single
* htmlSnippets.ts
* tableFields/tx_org_news.ts
7.4.0
15-08-23
Feature
* #69272: Group table for news
ToDo:
* Page TSConfig of the data folder and the news folder must updated
Effected files:
* ext_tables.sql
* locallang_db.xml
* Configuration
* ExtTables/tca/tx_org_news.php
* Tca
* tx_org_news.php
* Locallang/tx_org_news.xml
* TypoScript/news/401/tx_browser_pi1
* constants.txt
* list
* filter.ts
* htmlSnippets.ts
Bugfix
* #i0074: TCA Labelling 1st image in list views
7.3.0
15-08-21
Feature
* #69257: Backend-Filter Documents
* #69256: Backend-Filter Staff
* #69255: Backend-Filter Service
* #69254: Backend-Filter Location
* #69253: Backend-Filter Job
* #69252: Backend-Filter Headquarters
* #69251: Backend-Filter Event
* #69250: Backend-Filter Calendar
* #69248: Backend-Filter News
Improvements
* #i0073: "pid=###CURRENT_PID###" is moved to "' . $str_store_record_conf . '"
* #i0072: "'###CURRENT_PID###'" is moved to "$str_marker_pid"
* #i0071: There is a conflict with BE filters and the TCA ctrl sortby
sortby is disabled at:
* tx_org_downloadscat
* tx_org_downloadsmedia
* tx_org_headquarters
* tx_org_headquarterscat
* tx_org_location
* tx_org_locationcat
7.2.3
15-08-21
Bugfix
* #i0070: list view slick news (409) is overriding a constant of list view news (401). Move 0 to 6.
7.2.2
15-06-12
Improvement
* #i0069: Default PDF with a proper second page
7.2.1
15-06-01
Improvement
* #i0068: Clean up
* Configuration/TypoScript/staff/vCard/120/tx_browser_pi1/constants.txt
7.2.0
15-05-30
Major Feature
* #67210: vCard
* You need Browser version from 7.2.0
* NEW
* Configuration/TypoScript/staff/vCard/120/*
* constant editor
* [ORGANISER - PAGES] > vCard
plugin.org.pages.vCard
7.1.1
15-05-14
Feature
* #i0067: news template mini
* #i0065: news 1st image for list only
* #i0064: news add query top news
* #i0059: news simple
Improvement
* #i0066: SQL (all tables): imageseo is moved from tinytext to text
* #i0063: Migrate tt_news: new property source pid
* #i0062: news margin: is configured by Constant Editor [Browser Template] header and text 3
* #i0061: news margin: new file structure
* #i0060: news margin (411) got a wrap <div class="row">|</div>
7.1.0
15-04-29
Feature
* #i0058: news solo template
* #i0057: news template for slick carousel
* #i0056: clearing lightbox: update for Browser 7.0.7
See: Configuration/TypoScript/62037/tx_browser_pi1/constants.ts
* #i0054: Migrate tt_news
* Manual is updated
* SQL statements see: Resources/Private/Migration/tt_news/statements.sql
Improvement
* #i0055: state is set from alpha to beta
7.0.7
15-04-10
Improvement
* #i0053: Update the manual
7.0.6
15-04-08
Features
* #i0052: jobs got a RSS feed
* #i0051: calender got a RSS feed
Improvements
* #i0050: news: RSS feed runs proper
7.0.2
15-03-27
Bugfix
* #61797: Unproper results depending on search without zip
7.0.1
15-03-03
Improvements
* #i0049: SQL select of single views: image is extended with all image fields
* news
* job
7.0.0
15-02-19
Major Feature
* #65185: Integration of Leaflet - responsive map
See: http://leafletjs.com/
See TYPO3 browser at #65184
6.0.9
15-02-05
New feature
* #i0044: job application got an external url
Improvements
* #i0048: job: pop-up in the map: description is replaced by city
* #i0047: job list and single view is improved
Bugfixes
* #i0046: Margin content has broken links in single views
* #i0045: Icons had broken paths in TypoScript
6.0.8
15-01-14
Improvements
* #i0043: staff 111 list 4-8 > 3-9
6.0.7
15-01-02
Features
* #i0041: Additional static template for calendar: display up-to-date items only
Improvements
* #i0042: moved
* res/*.gif to Resources/Public/Images/Icons
* res/html/org.css to Resources/Public/Css
* org/res/icons/defaults to Resources/Public/Images/Icons/Default
removed
* Configuration/TypoScript/news/402
* foundation-5.3.0
* res/html/shopping_cart
* res/jss/fadeSlideShow
* #i0040: removed: searchform < plugin.tx_browser_pi1.displayList.master_templates.subparts.listview.searchform.simple
* #i0039: removed: tx_org_event_mm_tx_org_news
* #i0038: moved: Constant pages.headquarter to pages.headquarters
* #i0037: moved: Constant sysfolder.headquarter to sysfolder.headquarters
Update for Browser 6.0.7
* #i0036: moved: browser/res/js/map to browser/Resources/Public/JavaScript/Map
* #i0035: moved: browser/res/images to browser/Resources/Public/Images
* #i0034: moved: browser/res/html/map to browser/Resources/Private/Templates/HTML/Map
6.0.2
14-12-07
Improvements
* #i0033: tx_org_headquarters relation to event is moved to cal
* #i0032: tx_org_headquarters got the field manager
* #i0031: tx_org_headquarters got the fields migratedtable and migrateduid
* #i0030: Search fields for tx_org_staff
6.0.1
14-11-20
Feature
* #63111: Categories for locations
Improvements
* #i0029: Optimise all maps for touchscreens
6.0.0
14-10-03
Major Features
* #62019: Staff management by tx_org_staff
* Relations to fe_users are replaced
* No support for fe_users any longer
* Removed
* ext_tables/tca/fe_users.php
* static/base/tx_linkhandler/fe_users.php
* tca/locallang/fe_users.xml
* tsConfig/page/tx_linkhandler
* de/fe_users.php
* default/fe_users.php
* #62018: Improve tx_org_downloads
* for Browser 6.0
* Foundation
* simplify relations -> tx_org_mm_all
* removed:
* tx_org_downloads_mm_tx_org_downloadscat
* tx_org_downloads_mm_tx_org_downloadsmedia
* tx_org_headquarters_mm_fe_users
* tx_org_headquarters_mm_tx_org_cal
* file structure for TypoScript
* #61827: tx_org_caltype: +icons
* #61826: + Events
* #61819: Improve cal (foundation, TypoScript)
* #61793: Improve Companies (Headquarters: Foundation, TypoScript)
* #61696: Improve templates
* tx_org_news.description -> tx_org_news.seo_description
* tx_org_news.seo_keywords,seo_description -> tx_org_news.seo_seo_keywords,seo_description
* tx_org_news.newspage -> tx_org_news.page
* tx_org_news.newsurl -> tx_org_news.url
* #61248: Compatibility with TYPO3 CMS 6.2.x
* #61661: Extension Initialisation
Improvements
* #61856: Move all fields description and keywords to seo_description and seo_keywords
* #i0028: graded from beta to alpha
* #i0027: tx_org_departments is removed
5.0.15
14-07-24
Feature
* #60527: tx_org_job:
* newsletter template / view
* #i0026: tx_org_job:
* new field: newsletter
5.0.14
14-07-22
Feature
* #i0025: Configuration for the job application form (powermail). See:
* constants
* plugin.org.tx_org_jobs.contractoremail
* plugin.tx_powermail.settings.uploadSize
* setup
* config.linkVars
* lib.tx_org_job.powermail
5.0.13
14-07-21
Feature
* #i0024: SEO fields enabled for search: tx_org_job and tx_org_service got seo fields in the select for list views.
5.0.12
14-07-18
Feature
* #i0023: CSS foundation job and service
5.0.11
14-07-07
Feature
* #i0022: Jobs details view
5.0.10
14-07-07
Feature
* #60142: New type: nolink
tx_org_cal
tx_org_headquarters
tx_org_jobs
tx_org_location
tx_org_news
tx_org_staff
tx_org_service
5.0.9
14-07-07
Feature
* #i0021: Adaptings for the 2nd and 3rd image and url template of the Browser - TYPO3 without PHP (5.0.5)
5.0.8
14-07-06
Improvements
* #i0020: job and service got radialserach distance and radialsearch class
5.0.7
14-07-05
Feature
* #i0019: Got fields for icons:
* tx_org_jobcat
* tx_org_jobsector
* tx_org_jobworkinghours
Improvements
* #59361: Jobs Typoscript listview
5.0.6
14-07-04
Feature
* #i0018: Adapting template tx_org_service for Browser - TYPO3 without PHP (5.0.3)
5.0.5
14-07-04
Feature
* #i0017: Adapting template tx_org_service for Browser - TYPO3 without PHP (5.0.1)
5.0.4
14-07-01
Feature
* #i0016: Got backend thumbnails:
* tx_org_job
* tx_org_service
* tx_org_staff
5.0.3
14-07-01
Improvements
* #i0015: ext_tables.sql
* NOT NULL without default value is removed
* #i0014: tx_org_staff: TCA
title: obligate
name_first: required
name_last: required
Bugfix
* #i0013: tx_org_staff: TCA default_sortby
5.0.2
14-06-26
Improvements
* #i0012: tx_org_cal
* types (updated)
tx_org_headquarters
* New fields
* bodytext
* marginal_title
* marginal_short
* teaser_title
* teaser_short
* types (new)
* record
* page
* url
tx_org_jobs
* New fields
* mail_address
* Removed fields
* short
* types (new)
* record
* page
* url
tx_org_location
* types (new)
* record
* page
* url
tx_org_news
* types (updated)
tx_org_staff
* types (new)
* record
* page
* url
tx_org_service
* New fields
* mail_address
* Removed fields
* applicationaddress
* specifikation
* onlineapllication
* short
* types (new)
* record
* page
* url
5.0.1
14-06-12
Major-Features
* #59362: Services
Improvement
* #i0010: tx_org_job: note is removed
Bugfix
* #i0011: tx_org_job: TCA for dateofentry
5.0.0
14-06-12
Major-Features
* #59361: Jobs
Effected files:
* ext_tables.sql
* tx_org_job
* tx_org_jobcat
* tx_org_mm_all
* tx_org_jobsector
* #59360: Contacts
Features
* #59461: TCA Search Fields
* #59457 Georeferenced data for locations automatically
* #59456 Georeferenced data for headquarters automatically
Improvement
* #59377: Extension Manager Form: CSS
* #59373: Consolidate file structure
Effected files:
* ext_tables
* backendWorkflows.php
* extensionManager.php
* includeStaticTemplates.php
* pageTreeIcons.php
* t3version.php
* tca
* fe_groups.php
* fe_users.php
* tx_org_cal.php
* tx_org_doc.php
* tx_org_event.php
* tx_org_headquarters.php
* tx_org_job.php
* tx_org_location.php
* tx_org_news.php
* tx_org_tax.php
* tca.php
* tsConfig
* de.php
* default.php
* tsConfig.php
* ext_tables.php
* locallang_db.xml
* tca
* defaultValues.php
* extensionManager.php
* locallang
* tx_org_cal.xml
* tx_org_job.xml
* tx_org_cal.php
* tx_org_downloads.php
* tx_org_event.php
* tx_org_headquarters.php
* tx_org_job.php
* tx_org_location.php
* tx_org_news.php
* tx_org_tax.php
tca.php
4.1.0
14-05-16
Feature
* #58885: Hierarchic headquarters categories
* New fields:
* tx_org_headquarterscat.uid_parent
* Effected files:
* ext_tables.php
* ext_tables.sql
* locallang_db.xml
* tca.php
* #58884: Hierarchic companies (backend only)
* New fields:
* tx_org_headquarters.uid_parent
* Effected files:
* ext_tables.php
* ext_tables.sql
* locallang_db.xml
* tca.php
4.0.0
14-04-29
Feature
* #58346: Fit it into TYPO3 6.1
3.4.1
13-11-14
Bug
* #53649: addTypoScriptSetup
3.4.0
13-10-31
Feature
* #53245: Radialsearch sample
Effected files:
* static/headquarters/501/setup.txt
3.3.6
13-10-03
Bugfix
* #52520: List view cal doesn't respect teaser values
Improvement
* #i0009: tx_browser_pi1[newsUid] > tx_browser_pi1[{$plugin.tx_browser_pi1.navigation.showUid}]
* #i0008: moved from 201/setup.txt to 201/caddy/setup.txt
* plugin.tx_browser_pi1.views.single.201.marker.my_form_begin
* plugin.tx_browser_pi1.views.single.201.marker.my_form_end
* plugin.tx_browser_pi1.views.single.201.tx_org_calentrance
3.3.5
13-10-02
Features
* #52475: Improved configuration of links in e-mails
Constant plugin.org.host is removed in constants.txt
Constant $plugin.org.host is replaced by getIndpEnv:TYPO3_REQUEST_HOST in setup.txt
3.3.4
13-09-27
Improvement
* #i0007: Update the manual
3.3.3
13-09-27
Features
* #i0004: template for caddy with flags
Effected files:
* static/downloads/301/caddy
* wiFlags ( new )
* setup.txt ( new )
Improvements
* #i0006: remove wt_cart properties
* #i0005: shopping cart is replaced with caddy
3.3.2
13-09-07
Features
* #51830: Update for Browser 4.6
Effected files:
* static
* calendar
* 501
* constants.txt
3.3.1
13-07-31
Feature
* #i0003: Integration of seo_dynamic_tag
3.3.0
13-07-27
Feature
* #50490: Simplify LinkHandlerConfiguration. Integration of linkhandlerconf.
* 01: tsConfig > de || default > page.txt is moved to tsConfig > page > tx_linkhandler > de || default
* 02: tt_news isn't removed any longer
Effected files:
* tsConfig/page/tx_linkhandler
* de
* page.txt
* default
* page.txt
3.2.0
13-07-20
Feature
* #50445: Simplify PAGE_TSCONFIG_IDLIST and PAGE_TSCONFIG_ID
Effected files:
* ext_conf_template.txt
* ext_tables.php
* tca.php
* #50236: Integration of caddy
Effected files:
* static
* calendar
* 201
* constants.txt
* setup.txt
* downloads
* 301
* constants.txt
* setup.txt
Improvements
* #i0001: Removing dependency of static_info_tables
3.1.8
13-06-30
Feature
* #49525: Slider for news
Effected files:
* ext_tables.php
* res/jss/fadeSlideShow/* ( new)
* static
* base/constants.txt
* news/402 ( new )
3.1.7
13-06-05
Bugfix
* #48871: Form Download and Ordering
Effected files:
* static/downloads/301/setup.txt
3.1.6
13-02-21
Feature
* #45712: Handle PDF > 1.3
Pages with forms, shaded fills or transparency groups should rendered as bitmap
Effected files:
* ext_tables.sql
* locallang_db.xml
* tca.php
* static/downloads/301/setup.txt
3.1.5
13-02-14
Feature
* #45471: Property: Rendering a PDF as a bitmap
Effected files:
* ext_tables.php
* locallang_db.xml
* tca.php
* static/downloads/301/setup.txt
3.1.4
13-02-07
Bugfix
* #i0002: Flip it! TYPO3 < 4.7
Effected file:
* ext_tables.php
* static/downloads/301/flipit/typo3/4.6
* constants.txt
* setup.txt
3.1.3
13-02-06
Improvemnt
* #i0001: Adapting template 301.flipit to Organiser < 3.1
Effected file:
* static/downloads/301/flipit
* setup.txt
3.1.1
13-02-02
Feature
* #44654: Flip it! Browse in online documents
Flexform evaluation
Effected files:
* lib/flexform
* class.tx_org_flexform.php (new)
* locallang.xml (new)
* static/downloads/301/flipit
* constants.txt (new)
* setup.txt (new)
* ext_tables.php
* locallang_db.xml
* tca.php
13-01-19
Bugfix
* #00000: ERROR: Line 7965: An end brace is in excess.
Effected files:
* static/base/setup.txt
3.1.0
13-01-18
Feature
* #44654: Flip it! Browse in online documents
* #44654: Extend the database and the TCA with fields needed by Flip it!
Effected files:
* ext_tables.sql : tx_org_downloads
* locallang_db.xml : tx_org_downloads
* tca.php : tx_org_downloads
* #44657: Flip it! Extend the static template for the needs of Flip it!
3.0.3
12-12-26
Bug
* #00000: plugin.tx_browser_pi1.views.single.331 is moved from org to org_repertoire
3.0.2
12-12-24
Improvement
* #00000: ERROR: Line 8145: An end brace is in excess.
Effected files:
* static/base/setup.txt
3.0.1
12-12-19
Improvement
* #44136: Remove HTML templates
3.0.0
12-12-13
Feature
* #43898: HTML5 / CSS Styles Content 4.7
Effected files:
* static/base/typo3/4.6/setup.txt
* static/calendar/201/setup.txt
* static/department/601/setup.txt
* static/downloads/302/setup.txt
* static/headquarters/501/setup.txt
* static/location/701/setup.txt
* static/news/401/setup.txt
* static/staff/101/setup.txt
Procedure:
* File: typo3_src-X.X.X/typo3/sysext/css_styled_content/static/setup.txt
* Look for fields in the rendering section
* #43912: css_styled_content 4.7
Effected files:
* static/base/typo3/4.6/setup.txt
* static/calendar/201/setup.txt
* static/department/601/setup.txt
* static/downloads/302/setup.txt
* static/headquarters/501/setup.txt
* static/location/701/setup.txt
* static/news/401/setup.txt
* static/staff/101/setup.txt
* #43733: Integration of index browser in jQuery UI themes
Effected files:
* static/base/typo3/4.6/setup.txt
* static/calendar/201/setup.txt
* static/department/601/setup.txt
* static/headquarters/501/setup.txt
* static/location/701/setup.txt
* static/news/401/setup.txt
* static/staff/101/setup.txt
* #43641: News categories are ordered in a tree
Effected files:
* static/base/constants.txt
* static/news/401/setup.txt
* #43636: TypoScript snippets for HTML templates
Effected files:
* res/html/org.css
* res/html/_default/main.tmpl (new)
* res/html/_default/margin.tmpl (new)
* res/html/calendar/201/default.tmpl (removed)
* res/html/calendar/211/default.tmpl (removed)
* res/html/department/601/default.tmpl (removed)
* res/html/department/611/default.tmpl (removed)
* res/html/downloads/301/default.tmpl (removed)
* res/html/downloads/302/default.tmpl (removed)
* res/html/downloads/311/default.tmpl (removed)
* res/html/headquarters/501/default.tmpl (removed)
* res/html/headquarters/511/default.tmpl (removed)
* res/html/location/701/default.tmpl (removed)
* res/html/location/711/default.tmpl (removed)
* res/html/news/401/default.tmpl (removed)
* res/html/news/411/default.tmpl (removed)
* res/html/staff/101/default.tmpl (removed)
* res/html/staff/111/default.tmpl (removed)
* static/base/setup.txt
* static/calendar/201/setup.txt
* static/calendar/201/expired/setup.txt
* static/calendar/211/setup.txt
* static/department/601/setup.txt
* static/department/611/setup.txt
* static/downloads/301/setup.txt
* static/downloads/302/setup.txt
* static/downloads/311/setup.txt
* static/headquarters/501/setup.txt
* static/headquarters/511/setup.txt
* static/location/711/setup.txt
* static/location/701/setup.txt
* static/location/711/setup.txt
* static/news/401/setup.txt
* static/news/411/setup.txt
* static/staff/101/setup.txt
* static/staff/111/setup.txt
Improvements
* #43976: css_styled_content 4.7: improve rendering of download previews
Effected Files:
* static/downloads/301/setup.txt
* #43646: Update wt_cart 1.4.5
Effected files:
* res/html/shoping_cart/811/default.tmpl
* static/shoping_cart/811/setup.txt
* ##43662: Remove jq_fancybox
Effected files:
* static/base/setup.txt
Bugfixes
* #43970: img-text: missing div-tag for text