forked from thorsten/phpMyFAQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1176 lines (1024 loc) · 39.7 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
phpMyFAQ 3.0.0-dev
Codename "Poseidon"
CHANGELOG
This is a log of major user-visible changes in each phpMyFAQ release.
Version 3.0.0-dev - 2015-
- added Symfony HTTP Foundation 2.4 (Alexander M. Turek, Thorsten)
- added Twig 1.15 as new template engine (Alexander M. Turek, Thorsten)
Version 2.9.0-dev 2014-
- changed PHP requirement to PHP 5.4.4 and later (Thorsten)
- added tag intersection based search (Tomer Weinberg, Thorsten)
- added configuration for enable/disable highlighting search terms (Thorsten)
- added configuration for enable/disable RSS feeds (Thorsten)
- added permissions for guests (Thorsten)
- added support for multiple LDAP/AD servers (Bernhard Müller, Thorsten)
- added frontend dependency management using Bower (Thorsten)
- added support for PDO_MYSQL (Thorsten)
- added possibility to delete all logged search terms (Thorsten)
- added experimental support for bcrypt (Thorsten)
- updated bundled Symfony ClassLoader to version 2.4.1 (Thorsten)
- updated bundled jQuery to version 1.10.2 (Thorsten)
- updated bundled Bootstrap to version 3.1.1 (Thorsten)
- updated bundled Font Awesome to version 4.0.3 (Thorsten)
- updated bundled Modernizr to version 2.7.2 (Thorsten)
- updated bundled TinyMCE to version 4.0.20 (Thorsten)
- dropped support for ext/mysql (Thorsten)
Version 2.8.10 - 2014-05-
-
Version 2.8.9 - 2014-04-28
- updated Thai translation
- fixed some minor bugs (Thorsten)
Version 2.8.8 - 2014-03-18
- improved API security (Thorsten)
- fixed search with Hebrew characters (Thorsten)
- fixed PDF export with Czech and Slovak characters (Thorsten)
- fixed a lot of bugs (Thorsten)
Version 2.8.7 - 2014-02-05
- fixed PHP 5.4 related issue introduced in 2.8.6 (Thorsten)
Version 2.8.6 - 2014-02-04
- fixed IE8/9 only XSS and CSRF vulnerabilities (JPCERT, Thorsten)
- updated Hungarian translation
- updated Spanish translation (Luis Carvalho)
- updated bundled Symfony ClassLoader to version 2.4.1 (Thorsten)
- fixed some minor bugs (Thorsten)
Version 2.8.5 - 2013-12-31
- fixed SSO logins with mod_auth_kerb (Stephane Lapie)
- improved HTTPS handling (Thorsten)
- updated Dutch translation
- updated European Portuguese translation
- fixed some minor bugs (Thorsten)
Version 2.8.4 - 2013-11-26
- fixed possible arbitrary PHP code execution (Thorsten)
- updated Chinese (Traditional) translation
- updated Dutch translation
- fixed some minor bugs (Thorsten)
Version 2.8.3 - 2013-11-18
- fixed missing permission check on Image Manager (Thorsten)
- improved HTML / CSS code (Michael Meister)
- updated Brazilian Portuguese translation
- updated Japanese translation
- updated Spanish translation
- updated Swedish translation
- fixed some minor bugs (Thorsten)
Version 2.8.2 - 2013-07-25
- added French Canada translation (Jacqueline Gazaille Tétreault)
- improved attachment upload dialog with HTML5 File API (Thorsten)
- updated Finnish translation (Pasi Pajukoski)
- fixed some minor bugs (Thorsten)
Version 2.8.1 - 2013-06-26
- added support for Grunt (Thorsten)
- added minified CSS and JavaScript code (Thorsten)
- improved usability for group administration (Thorsten)
- fixed broken updates for MS SQL and SQLite (Thorsten)
- fixed IE8 related JavaScript issues (Thorsten)
- fixed HTML5 validation errors (Thorsten)
- fixed Arabic translation (Thorsten)
- fixed some minor bugs (Thorsten)
Version 2.8.0 - 2013-05-21
- changed PHP requirement to PHP 5.3.3 and later (Thorsten)
- phpMyFAQ is now licensed under the terms of Mozilla Public License 2.0 (Thorsten, Florian)
- added new and improved frontend and backend user interface based on Twitter Bootstrap (Thorsten)
- added multi site support (Florian, Thorsten)
- added auto-save for FAQs during editing (Anatoliy)
- added improved advanced search in subcategories (Thorsten)
- added possibility to close and delete open questions (Peter Caesar)
- added possibility to delete multiple open questions (Thorsten)
- added user control panel (Thorsten)
- added support for Composer (Thorsten, Alexander M. Turek)
- added online verification check (Thorsten, Florian)
- added configurable maintenance mode (Thorsten)
- added user notification for answered questions (Thorsten)
- added possibility to deactivate complete FAQ export (Thorsten)
- added possibility to random sorting of FAQs (Thorsten)
- added documentation in Markdown with GitHub style HTML export (Thorsten)
- added support for Gravatar (Thorsten)
- added user statistic report in admin dashboard (Thorsten)
- improved usability of administration backend (Thorsten)
- improved setup and update (Thorsten, Florian)
- improved security with salted passwords (Thorsten)
- improved attachment functionality (Thorsten)
- improved CSS development with LESS (Thorsten)
- improved minified CSS output (Thorsten)
- simplified the link verification (Thorsten)
- dropped support for IBM DB2, Interbase/Firebird and Sybase (Thorsten)
- dropped support for PHP register_globals and magic_quotes_gpc (Thorsten)
- dropped support for Google Translate API v1 (Thorsten)
- removed Delicious support (Thorsten)
- updated bundled jQuery to version 1.9.1 (Thorsten)
- updated bundled Modernizr to version 2.6.2 (Thorsten)
- updated bundled Bootstrap to version 2.3.2 (Thorsten)
- updated bundled TinyMCE to version 3.5.7 (Thorsten)
- updated bundled Symfony ClassLoader to version 2.2.1 (Alexander M. Turek)
- updated bundled Font Awesome to version 3.1 (Thorsten)
- updated bundled jQuery Sparklines to version 2.1.1 (Thorsten)
- updated PHP dependency management using Composer (Thorsten)
- updated Czech translation (Jaroslav Síka)
- updated Portuguese translation
- fixed some bugs (Thorsten, Florian, Alexander M. Turek)
Version 2.7.9 - 2012-11-02
- updated Czech translation (Jaroslav Síka)
- updated Dutch translation
- updated French translation
- improved English translation
- fixed some bugs (Thorsten)
Version 2.7.8 - 2012-08-22
- added experimental rewrite rules for Zeus Webserver (Chris Crawshaw)
- updated Arabic translation
- updated Dutch translation
- updated Spanish translation (Lisandro López Villatoro)
- improved LDAP handling (Thorsten)
- fixed some bugs (Thorsten)
Version 2.7.7 - 2012-07-01
- added Bosnian translation (Alen Durmo)
- improved complete PDF export (Thorsten)
- updated Polish translation
- updated Simplified Chinese translation
- fixed Arabian and Bengali translation (Thorsten)
- fixed some bugs (Thorsten)
Version 2.7.6 - 2012-05-16
- updated Dutch translation
- updated Polish translation
- updated Russian translation
- fixed some bugs (Thorsten)
Version 2.7.5 - 2012-04-14
- fixed serious security issue in bundled ImageManager library (Thorsten)
- full support for Microsoft SQL Server Driver for PHP (Thorsten)
- added online verification check (Thorsten, Florian)
- added experimental support for SQLite3 (Thorsten)
- updated Spanish translation (Reynaldo Martinez P.)
- fixed Slovak translation (Thorsten)
- fixed IE9 related JavaScript issues (Thorsten)
- fixed some bugs (Thorsten)
Version 2.7.4 - 2012-02-22
- added PDF export for complete FAQ in frontend (Thorsten)
- updated Japanese translation
- updated Russian translation (Alexander Melnik)
- updated Spanish translation
- fixed backup issue (Thorsten)
- fixed some bugs (Alexander Melnik, Thorsten, Aco Mitevski)
Version 2.7.3 - 2012-01-16
- improved PDF export (Thorsten)
- updated Dutch translation (Almar van Pel)
- fixed some PostgreSQL related issues (Vince, Thorsten)
- fixed some attachment related issues (Thorsten)
- fixed some bugs (Thorsten)
Version 2.7.2 - 2011-12-31
- improved PDF export and install script (Thorsten)
- updated Finnish translation (Petteri Hirvonen, Niklas Lampén)
- updated French translation (Cédric Frayssinet)
- updated Chinese (Simplified) translation
- updated bundled TCPDF library to version 5.9.136 (Thorsten)
- updated bundled jQuery datePicker plugin (Thorsten)
- fixed some bugs (Thorsten)
Version 2.7.1 - 2011-10-25
- fixed security issue in bundled ImageManager library (Thorsten)
- added missing translations (Thorsten)
- added configurable encryption type for passwords (Thorsten)
- added support for anonymous login for LDAP servers (Thorsten)
- added table of contents in PDF exports (Thorsten)
- fixed some bugs (Thorsten)
Version 2.7.0 - 2011-09-30
- changed PHP requirement to PHP 5.2.3 (Thorsten)
- dropped support for MySQL 4.1 (Thorsten)
- dropped support for Internet Explorer 6 + 7 (Thorsten)
- dropped support for obsolete Microsummaries (Thorsten)
- added new HTML5/CSS3 powered layout and administration backend (Thorsten)
- added configurable search relevance functionality (Gustavo Solt)
- added automatic translations with Google Translate (Gustavo Solt)
- added Twitter support (Thorsten, Thomas Zeithaml)
- added Facebook Like Button support (Thorsten)
- added "Bookmark on Delicious" support (Thorsten)
- added attachment administration frontend (Anatoliy)
- added basic authentication support for LDAP groups (Thorsten)
- added basic support for HTML5 microdata (Thorsten)
- added functionality of the TinyMCE save button (Gustavo Solt)
- added basic reporting functionality (Gustavo Solt, Thorsten)
- added IPv6 support (David Soria Parra)
- added support for Single Sign On authentication (Thorsten)
- added support for complete secured FAQ installations (Thorsten)
- added user configurable date formatting (Thorsten)
- added possibility to delete user generated search terms (Thorsten)
- improved usability in frontend and administration backend (Thorsten)
- enabling Gzip compression by default (Thorsten, Lorenzo Milesi)
- updated bundled jQuery to version 1.6.2 (Thorsten)
- updated bundled Modernizr to version 2.0 (Thorsten)
- updated bundled TinyMCE to version 3.4.2 (Thorsten)
- updated bundled SyntaxHighlighter to version 3.0.83 (Thorsten)
- updated bundled TCPDF library to version 5.9.110 (Thorsten)
- updated Dutch translation (ronald AT proudsites DOT com)
- updated German translation (Thorsten)
- updated Japanese translation (hiromi-suzuki AT garage DOT co DOT jp)
- updated Portuguese translation (Fernando G. Monteiro)
- updated Russian translation (cyber-01 AT yandex DOT ru)
- updated Spanish translation (Jason)
- fixed a lot of bugs (Thorsten)
Version 2.6.18 - 2011-09-28
- updated Spanish translation
- fixed Danish translation
- fixed minor bugs (Thorsten, Matthew Robinson)
Version 2.6.17 - 2011-06-08
- updated Portuguese translation
- fixed minor bugs (Thorsten)
Version 2.6.16 - 2011-05-31
- updated Portuguese translation
- updated Dutch translation
- fixed minor bugs (Thorsten)
Version 2.6.15 - 2011-02-23
- added Malay translation (Ahmad Kamil Zailani)
- updated Danish translation
- updated Brazilian Portuguese translation
- updated Spanish translation (Martin Schenk)
- fixed minor bugs (Thorsten)
Version 2.6.14 - 2011-01-24
- added rewrite rules for nginx (Florian Anderiasch)
- added compatibility for MySQL 5.5 with ext/mysql (Thorsten)
- added support to ban IPs from user tracking files (Thorsten)
- improved restore functionality (Thorsten)
- updated Dutch translation (Hans)
- updated German translation (Thorsten)
- Fixed issue with sending mails to category administrators (Gustavo Solt)
- fixed minor bugs (Thorsten)
Version 2.6.13 - 2010-12-15
- clean package after compromised server (Thorsten)
Version 2.6.12 - 2010-12-13
- added experimental support for MariaDB (Thorsten)
- added empty LDAP configuration file as example (Thorsten)
- updated Arabic translation
- updated Dutch translation (Werner Helmich)
- updated French translation
- updated Norwegian Bokmål translation (harald@delelisten.no)
- fixed minor bugs (Thorsten, Gustavo Solt)
Version 2.6.11 - 2010-11-03
- fixed some bugs introduced with phpMyFAQ 2.6.10 (Thorsten)
Version 2.6.10 - 2010-11-02
- added several security enhancements (Thorsten)
- updated Chinese (Simplified) translation
- updated German translation (Thorsten)
- updated Portuguese translation (Fernando G. Monteiro)
- fixed minor bugs (Thorsten)
Version 2.6.9 - 2010-09-28
- fixed XSS vulnerability (Yam Mesicka, Thorsten)
- added Slovak translation (Tibor)
- added minor usability improvement in administration backend (Thorsten)
- fixed issue with embedded Google Analytics code (Thorsten)
Version 2.6.8 - 2010-08-31
- dropped Oracle database support (Thorsten)
- added new TinyMCE plugin for adding internal links by a suggest search (Thorsten)
- added basic HTML5 powered administration backend (Thorsten)
- improved setup and update functionality (Thorsten, Bram)
- updated bundled TCPDF library to version 5.6.000 (Thorsten)
- updated bundled TinyMCE editor component to version 3.3.8 (Thorsten)
- updated bundled phpseclib to version 0.2.1 (Thorsten)
- updated Russian translation
- updated Portuguese translation
- fixed XML rendering issue (Thorsten)
- fixed many bugs (Thorsten, Bram)
Version 2.6.7 - 2010-07-29
- refactored search backend (Thorsten)
- improved pagination functionality (Thorsten)
- fixed various problems with Microsoft SQL Server Driver for PHP (Thorsten)
- fixed minor bugs (Thorsten, Aaron Burgie)
Version 2.6.6 - 2010-06-21
- refactored database abstraction (Thorsten)
- fixed OpenLDAP authentication (Franky)
- fixed duplication of search results (Aaron Burgie)
- fixed issue with duplicate sitemap characters (Aaron Burgie)
- fixed solution ID issues (Thorsten)
- Improved Glossary deletion workflow (Thorsten)
- updated Brazilian Portuguese translation
- updated Norwegian Bokmål translation
- fixed minor bugs (Thorsten, Philip Mikas)
Version 2.6.5 - 2010-05-24
- updated bundled TCPDF library to version 5.0.009 (Thorsten)
- updated bundled TinyMCE editor component to version 3.3.5.1 (Thorsten)
- refactored OpenSearch plugin code base (Thorsten)
- fixed small update issues in update script (Thorsten)
- fixed missing language fallback issue in instant response (Thorsten)
- fixed user deletion in admin backend (Thorsten)
- fixed backup/restore bug (Thorsten)
- updated Polish translation
- updated Russian translation
- updated Thai translation
- fixed minor bugs (Thorsten)
Version 2.6.4 - 2010-04-18
- added experimental support for Microsoft SQL Server Driver for PHP (Thorsten)
- improved FAQ record administration frontend (Thorsten)
- improved Sitemap titles (Thorsten)
- updated German translation (Thorsten)
- updated Romanian translation
- updated Swedish translation
- fixed minor bugs (Thorsten)
Version 2.6.3 - 2010-03-03
- fixed various mail issues (Thorsten)
- improved links rewriting (Guillaume Le Maout)
- improved sitemap for Chinese, Japanese and Korean content (Thorsten)
- improved meta keyword handling
- updated Portuguese translation (Fernando G. Monteiro)
- updated French translation
- fixed minor bugs (Thorsten)
Version 2.6.2 - 2010-02-01
- fixed update script issue (Thorsten)
- fixed display of Chinese, Japanese and Korean content in PDFs (Thorsten)
- fixed issues with RSS feeds (Thorsten)
- fixed broken Spanish translation (Thorsten)
- updated French translation (Cédric Frayssinet)
- minor bugfixes (Thorsten)
Version 2.6.1 - 2010-01-24
- updated bundled TCPDF library to version 4.8.026 (Thorsten)
- improved cookie handling (Thorsten)
- minor bugfixes (Thorsten)
Version 2.6.0 - 2010-01-11
- moved all language files to UTF-8 (Anatoliy)
- added TCPDF as replacement for FPDF library (Thorsten)
- added support for TinyMCE translations (Aurimas Fišeras)
- added support for multi-language news (Thorsten)
- added user adjustable template sets and styles (Anatoliy)
- added support plurals in translations (Aurimas Fišeras)
- added share on Facebook link (Thorsten)
- added a rest/json API (Thorsten)
- added secure login if SSL is available (Tobias Hommel)
- added FAQ entry dependent meta description (Thorsten)
- added experimental support for Microsoft Windows Web App Gallery (Thorsten)
- improved attachment functionality (Anatoliy)
- improved install script (Thorsten)
- improved category view with description (Thorsten)
- improved FAQ entry activation (Anatoliy)
- improved user administration (Max Köhler)
- improved FAQ entry workflow (Anatoliy, Thorsten)
- removed Docbook XML export (Thorsten)
- removed Net_IDNA library (Thorsten)
- updated Greek translation (Periklis Tsirakidis)
- updated Lithuanian translation (Aurimas Fišeras)
- updated Japanese translation
Version 2.5.7 - 2010-01-19
- improved glossary detection (Guillaume Le Maout)
- updated Dutch translation
- updated Indonasian translation
- updated Chinese (Simplified) translation
- updated Japanese translation
- updated Norwegian Bokmal translation
- many minor bugfixes (Thorsten, Guillaume Le Maout)
Version 2.5.6 - 2009-12-22
- updated bundled TinyMCE editor component to version 3.2.7 (Thorsten)
- updated bundled SyntaxHighlighter library to version 2.1.364 (Thorsten)
- updated bundled SyntaxHighlighter plugin for TinyMCE (Thorsten)
- updated Brazilian Portuguese translation
- updated Spanish translation
- minor bugfixes (Thorsten)
Version 2.5.5 - 2009-12-01
- fixed IE6/7 only XSS vulnerabilities (Amol Naik, Thorsten)
- many minor bugfixes (Thorsten)
Version 2.5.4 - 2009-11-10
- Fixed various PostgreSQL related issues (Anatoliy, Thorsten)
- updated Dutch translation
- updated Brazilian Portuguese translation
- many minor bugfixes (Thorsten)
Version 2.5.3 - 2009-10-19
- switched repository from SVN to git (David Soria Parra, Thorsten)
- added missing Perl syntax hightlighting (Thorsten)
- fixed missing info link in news (Thorsten)
- fixed broken group permission check for instant response (Thorsten)
- fixed broken attachment download (Thorsten)
- fixed SQLite problems (David Soria Parra)
- updated Japanese translation
Version 2.5.2 - 2009-09-01
- fixed IE6/7 only XSS vulnerability (Thorsten)
- updated Polish language file (Dariusz Grzesista)
- updated Chinese language file
- fixed problem with Czech translation (Anatoliy)
- many minor bugfixes (Thorsten)
Version 2.5.1 - 2009-08-10
- added support for LDAP-datamapping, e.g. against an Active Directory Server (Lars Scheithauer)
- added support for multi-domain-authentication, e.g. against an ADS-Global Catalog (Lars Scheithauer)
- added support for PHP LDAP options (Lars Scheithauer)
- Added Lithuanian translation (Aurimas Fiseras)
- fixed LDAP issues (Lars Scheithauer)
- fixed some Oracle issues (Thorsten)
- improved svn2package script (Rene Treffer)
- many minor bugfixes (Thorsten)
Version 2.5.0 - 2009-07-21
- changed PHP requirement to PHP 5.2 (Thorsten)
- dropped support for MySQL 4.0 and MaxDB (Thorsten)
- dropped support for XML-RPC (Thorsten)
- refactored complete code base to PHP 5.2+ (Thorsten, Matteo)
- added new and improved new basic layout theme (Charles A. Landemaine)
- added new administration layout (Thorsten)
- added new Image Manager in administration backend (Thorsten)
- added RSS feed for every category (Thorsten)
- added ability to copy and duplicate FAQ entries (Thorsten)
- added support for blocks in template engine (Jan Mergler)
- added public user registration (Elger Thiele)
- added LDAP authentication (Alberto Cabello Sanchez)
- added HTTP authentication (Thorsten)
- added Mail sub system (Matteo)
- added enable/disable WYSIWYG Editor flag (Thorsten)
- added most popular searches list (Thorsten)
- added frontend for search logs statistics (Anatoliy Belsky)
- added sticky FAQ records (Anatoliy Belsky)
- added smart answering for user questions (Anatoliy Belsky)
- added string wrapper for better UTF-8 handling (Anatoliy Belsky)
- added translation frontend (Anatoliy Belsky)
- added jQuery 1.3 as replacement for Prototype/Script.aculo.us (Thorsten)
- added configurable attachment directory (Anatoliy Belsky)
- added approval permission for FAQs (Anatoliy Belsky)
- added Hindi translation (Sumeet Raj Aggarwal)
- improved user administration frontend (Sarah Hermann)
- improved performance (Thorsten)
- improved language files (Anatoliy Belsky, Thorsten)
- ajaxified comment and record administration (Thorsten)
- updated bundled Net_IDNA to version 0.6.3 (Thorsten)
- updated bundled TinyMCE editor component to version 3.2.5 (Thorsten)
- updated bundled FPDF library to version 1.6 (Thorsten)
- updated Turkish translation (Evren Yurtesen)
Version 2.0.15 - 2009-06-02
- fixed XSS vulnerability (Thorsten)
Version 2.0.14 - 2009-05-21
- updated Vietnamese translation (Julien Petitperrin)
- improved tagging implementation (Thorsten)
- fixed authentication bypass (Thorsten)
- fixed content type for RSS feeds (Thorsten)
- minor bugfixes (Thorsten)
Version 2.0.13 - 2009-04-20
- added new blocked words for spam protection (Kai)
- fixed fatal error in PHP 5.3 (David Soria Parra, Thorsten)
- fixed redirect problem with multiviews in .htaccess (Antonio)
- fixed problem with visible questions in RSS feed (Thorsten)
- minor bugfixes (Thorsten)
Version 2.0.12 - 2009-02-17
- fixed bug with MySQL 6 and ext/mysqli (Johannes)
- fixed stat call bug in installer on OpenSuse 10.3 (Thorsten)
- improved SVN checkout script (Rene Treffer)
- minor bugfixes (Thorsten)
Version 2.0.11 - 2009-01-22
- updated English and Turkish translation and switched to UTF-8 (Evren Yurtesen)
- updated Simplified Chinese translation (Techice Young)
- fixed possible infinity loop bug in categories (Kaoru Izutani)
- fixed permission bypass issue (Thorsten)
- many minor bugfixes (Thorsten)
Version 2.0.10 - 2008-11-26
- fixed image bug in PDF (Thorsten)
- fixed isses in admin log display (Thorsten)
- re-added missing XML-RPCS library files (Thorsten)
- fixed PHP warnings and notices (Thorsten)
- minor bugfixes (Thorsten, Andreas Hansson)
Version 2.0.9 - 2008-10-17
- dedicated to my uncle Werner
- fixed content deletion bug (Thorsten)
- fixed SVN export script (Thorsten)
- improved comment spam protection (Thorsten)
- re-added missing css color file (Thorsten)
- minor bugfixes (Thorsten)
Version 2.0.8 - 2008-09-11
- fixed security vulnerability in XSS filter (Alexios Fakos at n.runs.com)
- switched repository from CVS to SVN (Thorsten)
- fixed session bug with MS SQL (Simon Stewart)
- fixed login errors with IBM DB2 (Thorsten, Helmut Tessarek)
- updated French translation (Julien Ross)
- updated Serbian translation (Slavisa Milojkovic)
Version 2.0.7 - 2008-05-12
- added Bengali translation (Md. Masum Billah)
- added Ukrainian translation (Oleg P. Suvolokin and Denis A. Barybin)
- updated Czech translation (Petr Silon)
- minor bugfixes (Thorsten)
Version 2.0.6 - 2008-02-24
- permission setting related fix (Carlos Eduardo Nogueira Gon�alves)
- minor bugfixes (Thorsten)
Version 2.0.5 - 2008-01-20
- fixed lighttpd rewrite rules (Markus Kohlmeyer)
- minor bugfixes (Thorsten)
Version 2.0.4 - 2007-11-18
- add Thai translation (Thanadon Somdee)
- improved DiggIt link (Thorsten
- fixed French translation (Thorsten)
- many minor bugfixes (Thorsten)
Version 2.0.3 - 2007-08-18
- some permission related fixes (Thorsten)
- some glossary related fixes (Thorsten)
- many minor bugfixes (Thorsten)
Version 2.0.2 - 2007-07-08
- some performance improvements (Thorsten)
- some permission related fixes (Adrianna Musiol)
- some update fixes (Matteo)
- updated Danish translation (Tommy Ipsen)
- some minor bugfixes (Thorsten)
Version 2.0.1 - 2007-06-01
- fixed broken update script (Thorsten, Matteo)
- fixed bugs with basic permission level (Thorsten, Matteo)
- fixed PHP segfaults with Zend Optimizer extension (Thorsten, Matteo)
- updated Japanese translation (Tadashi Jokagi)
- many minor bugfixes (Thorsten, Matteo)
Version 2.0.0 - 2007-05-22
- added rewritten and enhanced user management (Lars)
- added rewritten and enhanced authorization management (Lars)
- added user and group based permissions for categories and records (Thorsten)
- added Ajax support (Thorsten, Matteo)
- added automatic link verification (Minoru Toda)
- added user binding to a category (Thorsten)
- added glossary support (Thorsten)
- added possibility to delete admin log (Thorsten)
- added configurable visibility of new questions (Thorsten)
- added improved and template-based XHTML export (Thorsten)
- added dynamic related articles (Thorsten, Marco Enders, Thomas Zeithaml)
- added support for Google, Yahoo!, and MSN sitemaps (Matteo)
- added improved WYSIWYG editor and Image Manager (Thorsten)
- added improved News module (Matteo, Thorsten)
- added tagging (Thorsten)
- added DiggIt! link (Thorsten)
- added Microsummaries (Matteo)
- added OpenSearch support (Thorsten)
- added "submit translation" link (Matteo)
- added experimental support for Oracle (Thorsten)
- added experimental support for Interbase/Firebird (Thorsten)
- added sorting by id, title and date for records in admin backend (Thorsten)
- added comment administration frontend (Thorsten)
- added configurable simple reordering of records (Thorsten)
- added questionnaire for statistics in installer (Johannes)
- added Ajax-powered Instant Response (Thorsten)
- added editable default values for record configuration (Thorsten)
- added blacklist for search bots (Marco Fester, Thorsten)
- added stylesheets for right-to-left text-direction (Roy Ronen)
- improved export functions (Matteo)
- improved URL rewrite functions (Matteo)
- improved category management (Thorsten, Rudi Ferrari)
- improved administration backend (Thorsten, Matteo)
- updated Arabic translation (Ahmed Shalaby)
- updated German translation (Thorsten)
- updated Hewbrew translation (Roy Ronen)
- updated Italian translation (Matteo)
- updated Japanese translation (Tadashi Jokagi)
- updated Spanish translation (Eduardo Polidor)
Version 1.6.11 - 2007-03-31
- updated Finnish translation
- fixed problems with unsupported charsets in PHP
- fixed some minor bugs
Version 1.6.10 - 2007-02-18
- fixed a serious security issue
- improved performance
- fixed some minor bugs
Version 1.6.9 - 2007-01-28
- updated bundled PHP XMLRPC to version 2.1
- fixed the backup download permissions
- fixed some minor bugs
Version 1.6.8 - 2006-12-15
- fixed a possible security issue
- fixed the blank dropdown in the installer
- fixed some minor bugs
Version 1.6.7 - 2006-11-27
- added Persian (Farsi) translation
- fixed PHP 5.2.0 related issues
- fixed some minor bugs
Version 1.6.6 - 2006-10-28
- updated Arabic translation (also moved to UTF-8)
- updated bundled Net_IDNA to version 0.4.4
- fixed some minor bugs
Version 1.6.5 - 2006-09-21
- added Welsh translation
- added French documentation
- updated Czech translation
- fixed some minor bugs
Version 1.6.4 - 2006-08-19
- updated Brazilian Portuguese translation
- updated Dutch translation
- updated French translation
- updated Italian translation
- updated Japanese translation
- updated Portuguese translation
- fixed some minor bugs
Version 1.6.3 - 2006-07-16
- added German documentation
- updated bundled NET_IDNA class to version 0.4.3
- released a spec file for building an RPM package of phpMyFAQ
- updated Simplified Chinese translation (also moved to utf-8)
- fixed some minor bugs
Version 1.6.2 - 2006-06-17
- added user tracking data deletion
- improved PHP 5 support for MySQL and SQLite
- updated Dutch translation
- updated French translation
- updated Italian translation
- updated Swedish translation
- fixed some minor bugs
Version 1.6.1 - 2006-05-13
- added spam control center
- added mod_rewrite support for lighttpd
- added Microsoft Internet Explorer 7 search plugin
- added automatic admin session expiry notice
- improved record administration
- improved user administration
- improved category administration
- improved highlighting of searched words
- updated Italian translation
- updated German translation
- updated Danish translation
- fixed some minor bugs
Version 1.6.0 - 2006-04-21
- fixed PHP security issue
- added unique solution id
- added revision system
- added support for captchas
- added bad word list blocker
- added search in one selected category
- added linked breadcrumb
- added RSS feed for open questions
- added Brazilian Portuguese translation
- improved record administration
- improved spam protection
- improved language detection and handling
- updated Italian translation
- updated Japanese translation
- updated Korean translation
- fixed some minor bugs
Version 1.5.9 - 2006-04-21
- fixed PHP security issue
Version 1.5.8 - 2006-04-09
- updated Korean translation
- fixed some minor bugs
Version 1.5.7 - 2006-03-02
- fixed some minor bugs
Version 1.5.6 - 2006-01-27
- added Basque translation
- improved spam protection
- fixed some minor bugs
Version 1.5.5 - 2005-12-19
- added support for MaxDB
- added keywords into meta keywords
- added search by record ID
- improved language detection and handling
- updated Italian translation
- fixed some minor bugs
Version 1.5.4 - 2005-11-18
- fixed security issues
- full support for IBM DB2 databases
- added re-ordering of sub-categories
- added Firefox/Mozilla search plugin
- updated Hebrew translation
- updated Simplified Chinese translation
- updated Spanish translation
- updated Italian translation
- updated Japanese translation
- updated Danish translation
- some minor improvements
- many minor bugfixes
Version 1.5.3 - 2005-10-15
- added several security enhancements
- added Greek translation
- improved RSS support
- improved backup/restore frontend
- updated Indonasian translation
- updated bundled Net_IDNA class
- many minor bugfixes
Version 1.5.2 - 2005-09-23
- fixed serious security issues
- full support for SQLite
- more compliance with phpMyFAQ 1.4.x templates
- many minor bugfixes
Version 1.5.1 - 2005-09-19
- added experimental support for SQLite
- added dynamic Sitemap
- added Norwegian Bokm�l translation
- improved image handling in PDF export
- some minor bugfixes
Version 1.5.0 - 2005-08-20
- full support for PostgreSQL databases
- full support for Sybase databases
- full support for MS SQL databases
- full support for MySQL 4.1/5.0 databases
- experimental support for IBM DB2 databases
- LDAP support as an additional option
- one entry in various categories
- mod_rewrite support
- faster template engine parses PHP code
- rewritten PDF export
- complete XML, XHTML and DocBook XML exports
- many code and performance improvements and code cleanup
- better RSS support
- updated bundled htmlArea
- PHP 5.x compatible
Version 1.4.10 - 2005-08-01
- compatibility to PHP 4.4.0
Version 1.4.9 - 2005-06-29
- fixed serious security issue in bundled XML-RPC component
- some minor bugfixes
Version 1.4.8 - 2005-04-11
- fixed bug with images in PDFs
- fixed bug with URLs in export
- updated Japanese language file
- updated Korean translation
- some minor bugfixes
Version 1.4.7 - 2005-03-06
- fixed possible SQL injection bug
- some minor bugfixes
Version 1.4.6 - 2005-02-20
- updated Polish language file
- updated French language file
- some minor bugfixes
Version 1.4.5 - 2005-01-21
- updated Japanese language file
- updated Chinese (Traditional) translation
- some minor bugfixes
Version 1.4.4 - 2004-12-06
- added Romanian translation
- added Chinese (Traditional) translation
- many bugfixes
Version 1.4.3 - 2004-11-05
- added Turkish translation
- added Indonesian translation
- updated German language file
- many bugfixes
Version 1.4.2 - 2004-10-10
- added Finnish translation
- added Hebrew translation
- fulltext search inside admin section
- some accessibility improvements
- many bugfixes
Version 1.4.1 - 2004-08-16
- improved category administration
- added Swedish translation
- added Korean translation
- added Japanese translation
- custom admin menu according to user permissions
- easier record deleting
- session and language stored in a cookie
- less SQL queries in admin section
- updated install script
- updated Chinese language file
- updated Portoguese language file
- improved IDN domain support
- improved accessibility
- many bugfixes
Version 1.4.0a - 2004-07-27
- fixed security vulnerability
Version 1.4.0 - 2004-07-22
- added WYSIWYG Editor
- added Image Manager
- added new category module
- added support for XML-RPC
- added support for timezones
- added ISO 639 support in language files
- added script that converts BBCode in XHTML
- better PDF export with table of contents
- new and better installer
- new XHTML based templates
- automatic language detection
- improved IDN domain support
- password reset function
- include internal links with dropdown box
- many code improvements and code cleanup
- many bug fixes
Version 1.3.14 - 2004-06-09:
- added Slovenian translation
- added Serbian translation
- added Danish translation
- improved performance on Windows Server 2003 and PHP with ISAPI
- fixed some bugs
Version 1.3.13 - 2004-05-17:
- fixed serious security vulnerability (Stefan Esser)
- fixed some bugs
Version 1.3.12 - 2004-04-21:
- added Hungarian language file
- fixed some bugs
Version 1.3.11a - 2004-04-13:
- fixed some annoying bugs
Version 1.3.11 - 2004-04-07:
- added Chinese translation
- added Czech translation
- added support for IDN domains
- many bugfixes
Version 1.3.10 - 2004-02-12
- updated bundled FPDF class
- added Arabic language file
- many bugfixes
Version 1.3.9pl1 - 2004-01-02
- added Vietnamese language file
- bugfixes
Version 1.3.9 - 2003-11-26
- improvements at highlighting searched words
- updated english language file
- BBCode support for the news
- better category browsing
- graphical analysis of votings
- date informations ISO 8601 compliant
- some optimized code
- added Russian language file
- enhanced BB-Code Editor
- fixed some multibyte issues
- improved display of images in PDF export
- some fixes for PHP5
- some bug fixes
Version 1.3.8 - 23.10.2003
- added latvian language file
- fixed italian language file
- bugfix in backup module (IE problem)
- support for MySQL 4.0 full text search
- some improvements in installer (Bug #0000017)
- many bugfixes in the backup module
- better performance in admin area
- fixed cookie problem
- fixed a bug in the BB-Code Parser
- fixed a bug in the language files
- many, many minor bug fixes
Version 1.3.7 - 19.09.2003
- dedicated to Johnny Cash
- added patch against Verisign
- fixed Windows bug in Send2Friend
- some improvements in the BB-Code-Parser
- fixed some layout problems
- many, many minor bug fixes
Version 1.3.6 - 01.09.2003
- fixed bug in installer
Version 1.3.5 - 31.08.2003
- basic internal linking of FAQ records
- RSS-Feed-Export via Cronjob
- solved some PDF problems
- updated english language file
- some improvements in the BB-Code-Parser
- some bug fixes
Version 1.3.4 - 03.08.2003
- improvements at highlighting searched words
- fixed bug in installer (Bug-ID 0000004)
- added new BB-Code-Parser
- added italian translation
- updated dutch and french language file
- little changes in the language files
- many, many minor bug fixes
Version 1.3.3 - 26.06.2003
- better installation
- default password removed
- added IP ban lists
- added portugues translation
- added spanish translation
- selection of default language and setting the password at installation
- changed default language from german to english
- better PDF export with support for pictures
- export all records to one PDF file
- user management improved
- added allow/disallow comment function
- added copyright notice and url in the printer friendly page and the pdf file
- backup files are called phpmyfaq.<date>.sql instead of attachment.php
- fixed bug at installation when using MySQL 4
- fixed bug when deleting news
- fixed bug when deleting comments
- many minor bug fixes
Version 1.3.2 - 25.05.2003
- more verifications in update script
- added new category sorting
- added polish language file
- fixed bug in backup
- added reload locking in voting module
- BB-Code help with multi-language support
- better navigation
- minor bug fixes
Version 1.3.1 - 02.05.2003
- added preview at record editing
- added RSS-Feeds from Top 10, News and latest records
- better navigation in admin area
- system informationen in admin area
- added french language file
- fixed bug in session search
- fixed bugs in adding records
- solved cookie problems
- fixed problem with send2friend link
- fixed delimiter bug with Apache2 and PHP 4.3
- minor bug fixes