forked from pixtur/streber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistory.txt
executable file
·1422 lines (1138 loc) · 47 KB
/
history.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
streber-version-history
v0.094
- added project summary block with link to client and open efforts
- only list open efforts in company project list
v0.093 / 515
- fixed javascript freezes when search for special characters
- more aggressive cleaning for query strings (switched to white list)
- fixed computation of password strength
rev514
- renamed ->people
- fixed installation sql setup (file had invalid version)
- fixed rendering on people list header
rev513
- fixed unit-tests
- Disable modifications by anonymous users (I.e. guests)
- Fixed error in grouped list style
- Fixed show traceback only for admins (http://streber-pm.org/7934)
- disable comments for anonymous users
rev511
- fixed issue with items_delete_many and selected tasks/topics
- fixed type syntax installation SQL-dump
v0.092 / rev511
- reduce people list visibility if anonymous login
- increase spam filter rate
rev510
- fixed invalid probabality warning
- fixed unknown variable warning
- fixed type warning
- fixed html_commment warning
- disable csv export for non-priveledged users
- added some bot definitions
rev509
- added ref="nofollow" attribute to external links
- fixed html escape for comment headlines
rev508
- fixed Inline editing break #8396
- updated some language glitches
- added some functions to delete spam comments
- implemented deleting of person (e.g. disable login and remove from all projects)
- fixed comment author link for admins
- some refactoring of page functions
- fixed SQL injection
- fixed passing by reference warning with PHP 5.3
rev503
- refactored DateTime field parsing
- added itemsRemoveMany-function to delete spam comments (including preview)
- refactored spam detection
rev 501
- fixed minor title for new task edit
- fixed edit font for inline edit in webkit
- tuned the word-level diff for heavily edited chapters
- refactored task-edit page
- updated custom project view
rev 494
- fixed 2008 bug
- fixed minor text issues
- fixed image-attributes inside tables
- fixed url for mod_rewrite
- fixed effort-date-time problems
- fixed milestone task count
- fixed link to milestone tasks
- fixed line-breaks for notification mails
rev 492
- version v0.0911
- fixed layout of attached files
- fixed double upload form in topics #8305
- added missing _image_cache directory to repository
- added generation of crawler list
- added some details to RSS-Feed
- fixed closed tasks for milestone are not displayed correctly
- added current milestone block to project overview
- added graph to milestone view
- fixed CSS definition for lots of list elements
version v0.91 (revision 485)
=============
major:
- implemented new style and removed block collapsing
- fixed new folder as documentation setting
- highlight wiki-differences inside wiki
- added word level diff
- add also show your changes to project change block
- implemented image-caching for scaled images
minor:
- fixed unit tests
- fixed g_login_params bug
- removed deprecated background styles
- started to split reusable blocks into /blocks/*
- refactored wikiFieldAsHtml to automatically check if editable
- standard way to include files added
- updated language change files and polish language
version v0.0902
===============
- fix deletion of error.log.php at upgrades
- fixed minor language problems
- fixed minor problem in triggerSendNotification
- fixed ob_clean() warning
- reduced warnings for missing locale-settings
- updated languages
version v0.09
=================
- added some layout hints and styling for iphone user client
- fixed feedback-often-requested-by-admin bug
- fixed visibily of changed items for admins
- disabled right to edit everthing for PMs
- fixed locale-setting of russian translation
- fixed more unit-tests
version v0.08099
=================
- changed version to v0.08099
- fixed bold syntax for wiki #7445
- fixed broken urls in wiki links with & #7350
- fixed creation of project items if current user has RIGHT_VIEWALL but is not assigned to project #2312
- CHECK_IP_ADDRESS is not disabled by default
- fixed rendering of long wiki headlines #7417
- fixed caching problem of install-page
- refactored details of item change
- added personRevertChanges
- added some more tests
- fixed minor layout problem in header on safari
- fixed locale setting for spanish translation
- fixed tests for language settings
- updated change files for translations
- added anchors to headline in wiki texts
- fixed resetting of is_news flag when adding comment to task with quickEditBlock
- fixed minor bug in bot detection regex
- fixed "book effort"-link for people with disabled efforts
version v0.08095 [2008-12-16]
===========================
- fixed double escaping html symbols in company list
- fixed double escaping html symbols in user email addresses
- fixed minor bug when editing empty bookmark list
- fixed problem with unit test fixture setup
- first unit tests working with fixtures
- some tests of login/logout/change password and correct escaping of user data
- fixed unescaped userdata in person title
- recent-change list always visible #7057
- refactored resolve version dropdown list to grouped style #7088
- added missing translation to due-column #7156
- links to Versions are not rendered stroken
- beautified attached files list
- fixed wiki link to person #7068
- fixed missing include of personitem #7077
- added first version of firephp support #7058
- updated swedish language
- added Feedback-Message after uploading file #7062
- MAJOR: fixed changing password and profile from notification mails
- MINOR: slightly adjusted notification mails
- Fixed: jumping to item after login with mod_rewrite
version v0.08093 [2008-11-5]
===========================
- MAJOR: fixed stripping of backslashes (make obvious by reoccuring change markers). This involved some changes in the backend which need to be tested on different platforms.
- internal: fixed login with random tokens
- internal: hide own change markers.
- internal: use ready() function instead of onLoad() this has to be tested!
- MAJOR: added random token to forms to prevent from cross site request forgery
- Added wiki syntax for rendering latex formulas
- Refactored some forgotten password link in notification mails
- Refactored locale settings in conf
- Fixed translation of dates and times in German
version v0.08092 [2008-11-5]
===========================
- MAJOR: changed default wiki syntax for links from [[item:34]] to [[#23]]
- MINOR: adjusted wiki css styles
- MINOR: adjusted rendering of wiki links
- Refactored autoWikiAdjustments #7034
- WIKI_AUTO_INSERT_IDS option is now always on and therefore deprecated
- MAJOR: fixed potential problem with cached ajax request
- Fixed: Invalid WikiLinkCreate parent after inline edit #7033
version v0.08081 [2008-10-04]
==============================
- MAJOR: option to treat folder as documentation
- MAJOR: highlight updates in wiki changes
version v0.0807 [2008-08-28]
============================
- MAJOR: first version of feedback request working
- refactored versions config variables (now there is only STREBER_VERSION)
- fixed minor bug with bookmarks
- Code formatting changed TABS into SPACES, argh!
- fixed minor bugs in the install / upgrade form
version v0.0806 [2008-08-22]
============================
- added support of autocomplete input fields
- added request feedback option items
version: v0.0804 [2008-08-22]
==========================
major
- added user setting to ignore filtering of own changes in recent changes lists.
- Fixed bug #6574 (New install failing on "add db_version entry").
- Rewrote ListBlockCol_DaysLeft class and enabled it by default.
- Added "blocked" and "my blocked" filters to task list in home.
- Modified project list's page actions to have provide option to create new
project from scratch or from a template.
minor
- fixed render wiki bug when link with pipe above table.
- fixed several minor typos.
- checked for missing iconf-function when exporting csv.
- added LICENSE and COPYRIGHT files which were missing for some reason.
- Fixed two spelling errors and updated translation files:
. "plattform" -> "platform"
. "upcomming" -> "upcoming"
- Fixed bug where if you had permission to see everything you'd still not be able to
view companies that had projects which you were assigned to. Furtermore, if a
company has projects you are assigned to but more than one then it would give a bug error -
changed it to report insufficient permissions instead until we properly implement it.
- SQL errors on install will print out the line number the error occurs to help debug.
- A number of fixes/minor enhancements to install script.
- Updated install/install.php to not produce unsightly error when no write permissions to
tmp files directory and a few other trivial improvements to pre-req checking.
- If reinstalling, instead of doing nothing lets rewrite the database settings. Otherwise,
if you delete them config files (db one specifically) then you have to regenerate it
yourself or drop the database.
- Set default company category to client when creating a new company.
version: v0.0803 [2008-05-09]
==========================
major
- added is_news option to tasks / topics
- added project options to hide features like tasks and file uploads
- fixed table-rendering bug (http://www.streber-pm.org/5217)
- Added "ASAP" option to mail notifications which will result in mail
notifications being sent out for individuals everytime the sendNotifications
function is called when they have their notification interval set to "ASAP".
Site admins can create a cron job to visit index.php?go=triggerSendNotifications
at regular intervals.
- Made db-version detection more robust.
- Fixed bug where two entries of db-version would be inserted on install.
- Fixed bug where error would result if correct schema file is available.
- Disabled profile selection drop down if user being edited is the
automatic user created at install time. This should prevent situations
like in bug #6105 (unless existing install already has deleted but we
can't do much about that ;]).
- Added more options to the install process and changed order of questions.
Site name (sets APP_NAME) and Admin's email (sets ADMINISTRATOR_EMAIL).
New options will be installed to _settings/site_settings.php
- Changed default conf value for MESSAGE_WELCOME_HOME, replacing streber with
%s. Updated index.php and pages/login.inc.php to replace string token with
APP_NAME conf.
- Updated pages/login.inc.php to use APP_NAME conf instead
of the constant "streber".
- Added new permission, RIGHT_PERSON_GRANT_ACCT which allows you to set the
"can login?" bit on a user. By default, if you have the ability to create a
user you also have the ability to edit a user so I made it the default that
if you can create/edit a user, you can also grant them an account
(ie. login). This allows admins to allow people to "really" setup new
accounts without giving them the permissions to edit people's rights
(which you required before).
minor
- updated languages
- renamed Home section from User name to "Home"
- renamed Home to "Recent changes"
- added news section to projView
- renamed "Docu" to "Topics"
- renamed "Documentation" to "Topic"
- removed a debug message when magic_quotes was enabled
- default lang is 'en' now
- bug fix: now the relation between taks and milestone is copied and transposed.
- fixed typo in install/install.php: grand->grant
- Created new schema export for 0.803
- Updated history.txt to include the updates from v0.0801 (as well as this
release obvisously. :]).
version: v0.0801 [2007-08-04]
==========================
major:
- fixed missing link in password reminder mail
- fixed added in of backslashes when ajax editing chapters
- fixed invalid display of tasks for newly created milestones
- fixed update trigger of person function (cause fatal error)
- fixed some js errors in lists
- fixed http-syntax in wiki rendering
- fixed Ctrl-Click in firefox (Ctrl-Klick in firefox) / Comments summary (Comments summary)
- time filter for efforts
- new page for effort calculations
- fixed wiki link syntax inside tables and lists
minor:
- Wiki Format - link should open in a new window ("Wiki format" link should open in a new window)
- added more distinctive project name in project selector - More distinctive project name in project selector
- added configuration variable to enforce a theme
- added example custom theme
- added grouped option list for milestones
- fixed one pixel gap below tabs
- adjust display of feedback messages
version: v0.08 [2007-05-15]
==========================
major:
- fixed ajax editing fails for Safari #4113
- "Failure getting project" when editing Wiki inline project description #5188, #5074
- Wiki syntax:
- Depreciate indented code blocks #5184
- Leading spaces are now displayed as
- added hungarian translation #
minor:
- updated Polish and Swedish Translations
- add HTTP Links in Wiki Syntax #4986
version: v0.0799 [2007-05-05]
==============================
major:
- party fixed backslashes in wiki texts and ajax editing #4286, #4043
- fixed changelist claims "attached file" even if person only added comment #4300
- fixed uploading of files on strato server #4264
- party fixed splitting of utf8 chars (#4259)
- added russian translation
- fixed storing of uploaded files in project directories
- added homeselectorlist
- splitted home into "homeDashboard" (to be implemented), "homeTasks", "homeEfforts", "homeBookmarks" and "homeAllChanges"
- polished the look of pageHeader in clean theme
- fixed inline edit cannot find wiki chapter if invalid table syntax #4556
- home dashboard lists recent changes (add gets more changes with ajax) #4639
- changed font-size settings from "%" to "pt"
- fixed: Default rights doesn't work as expected #3871
- fixed item relatiionshop for deleted team members #4512
- hide deleted efforts #4160
- list changes now explicitly lists files
- fixed some problems with IE7 display
- fixed composition of notification mails
- fixed reassigning people to teams (assigned twice?) #4849
- fixed Strange behaviour when re-assigning a user to a project #4083
- fixed issue values are not stored correctly #4865
- refactored project RSS-Feed:
- now supports author
- uses class_changeline
- Summarizes what happened
minor:
- fixed rendering for Dates "Today" (added time again)
- Replaced minor title "Item-ID:123" with "# 123"
- fixed Mail header "from" is malformed #4471
- install checks for readable /_rss directory
- removed some Bookmark page functions (e.g. person)
- "Page" renamed to "Topic"
- polished project list in home
- fixed error in effort description with wiki links
- Fatal error in effortView when links exist in description #4439
- added item-id to change list to quicker fill out svn commit comments :)
- Change Version(s) to Release(s) consequently #3136
- added support of additinal image mimetype image/x-png
- fixed adding a new comment stated as "renamed" in History #4522
- fixed in changelog not the last, of multiple comments is listed #4514
- adjusted stylesheet to fix Labels moves after any link "on focus" event at task description #4584
- re add comments to milestones #4729
- fixed Notification email do not have task name anymore #4862
- fixed "add another" option from create Milestone form does not work #4858
- minor: removed block style functions from list Milestones
- updated translation and some texts
internal:
- Cleaned up most of the source code for doxygen
- added File::renderLocation()
- fixed undefined 'projects' warning in personView
- added separate stylesheet for IE to fix some layoutproblems with IE 7.0
version: v0.0796 [2007-02-25]
==============================
major:
- fixed open tasks for milestone --> invalid project_id #4078
- fixed Multiedit tasks - bad initial values #2744
- fixed csv-export of efforts (was broken because of presets)
minor:
- fixed disabled both Webbplatsen themes #4145
- fixed Invalid renderDateHtml after midnight #4081
- fixed Label of Documation pages
- fixed minor issues with AjaxEditing inside selectable list rows
- fixed sorting of efforts #4036
- added "add comment" to news in custom_projView.inc.php
- fixed id parameter in itemView #4132
- added "book effort" function for docu pages #3772
- improved csv-exporting of lists (added names of people, tasks and projects)
- fixed wiki text with less than 3 characters doesn't appear bold #4107
v0.0795 [2007-02-19]
====================
minor:
- new states for efforts (also db change -> new attribute)
- filter functionality for efforts
- fixed project view changes
- fixed smart display of dates like "Today", "Yesterday"
- fixed display of attached files in list_changes
- fixed default list style in projViewEfforts #3748
- added date to list of attached files taskView
- partly fixed display of context menu #4117
v0.0794 [2007-02-14]
=================
minor:
- fixed creation of project with strict mysql settings #3213
- fixed installation / upgrade with strict mysql settings #3952
- inline wiki editing is not caused by double click
- added strict sql_mode settings to installation
- fixed minor problem with updated files
- fixed display of task location in list_changes
- changed layout of project "history"
- added additional headers to ajax content to fix #3965
- wiki links to releases are no longer striked
v0.0791 [2007-02-05]
====================
hotfixed:
- fixed: ajax editing with code blocks and complex texts
- fixed: error in RSS feed
- fixed: block dependencies after upgrade
v0.079 - rc2 for v0.08 [2007-02-04]
===================
major:
- fixed: Anonymous user cannot view tasks #3836
- added: inplaced editing of wiki chapters (task descriptions/ own comments) #3695
- added: quick project selector to Project tab #3867
- more functionality for bookmarks
- fixed: compatibilty with IE 6.0 (stylesheets, javascript, etc.) Still ugly but better
- fixed: new users can't editor their own profile #3817
- added finish and czech translations
- RSS feeds for project with HTTP authentication #670
- fixed javascript error when clicking into comment list (checkbox not found)
- changed: projView "Folder list" replaced by project documentation box
- included notification on changed and unchanged items in sendNotifcationForPerson function
- fixed visibility check for RSS feed when ananymous user
- added correct ATOM-Feed link to header
- added ~~strike~~ syntax to wiki #2328
minor:
- removed Delete and Bookmark functions from projView (deleting is no good, Projectselector works better than bookmarking)
- fixed character setting #3843
- task list effort column is off by default
- added counter for num of sql statements
- added table indeces to comments and efforts
- added note on deleted tasks headline #3671
v0.078 - rc1 for v0.08 [2007-01-03]
====================
major:
- full compatibilty with php5.2
- polished default theme 'clean'
- forms splitted into tab groups
- Task categories to distinguish between tasks and documentation
- Documentation navigator
- Export to CSV format
- Anonymous Browsing (for guests and search engines) (#2665)
- sorted view of project history
- Keep track of unviewed / changed items
- Bookmark items (not stable yet)
- display modification history for all item types (not just tasks)
minor:
- Polish translation finished. 100%
- stupid captcha and spam check for guests
- possibility of derive customized style sheats (#2971)
- refined search (support multiple word search)
internal:
- refined installation from available SQL-structure file
- Polish translation finished. 100%
v0.0703
======
major:
- added clean url support to some pages
- added anonymous browsing (not considered stable yet)
minor:
- fixed rendering of ordered wiki lists with high numbers
- added wiki syntax for rendering ordered lists with any numbering (like 1. 2. 4. )
- renamed .htacess file to avoid problems with apache v1.3
- own comments can be deleted
- comments can now be restored
- added "New company" as page function
- directly publish suggested comments
- fixed bug #2680
- allow trusted clients to comment all tasks (reduced quick edit form)
- fixed right validation in taskEditSubmit
- hide edit functions in taskView if cur_user has not enough right to edit
- fixed default values for is_milestone (#2721)
v0.0702rc2
===========
major
-----
- added Note on Person (creates tasks, projects and efforts on the fly)
- assign new projects direct to a project
- fixed display of completed tasks
- fixed display of folders in tree
- fixed rendering of tables (foreach Warnings in wiki pages with tables)
- renamed Dumpster -> Trash
minor
------
- fixed default user rights of new people #1785
- changed wrapping of long indented task names in tree view
- added server_time_offset option
- added ROUND_AUTO_DETECTED_TIME_OFFSET option
- milestones can be toggled
- added time zone setting in user profiles
- folders can be moved
- show "edit description"-button even if there is no description yet
- wiki: liked items (like #234) are striked if completed
- fixed usage of back slashes in wiki texts
- increased performance with long tasklists (e.g. a few hundred tasks)
v0.07RC1
=======
major:
----------
- fixed #1499 dates are changing in a mysterious way
- changed interactions with lists (refactored jquery functions)
- updated translations
- added new wiki-syntax to link to item ids (#123)
minor:
-------
- version v0.07rc1
- fixed deletion of task description
- fixed wiki line syntax (_____)
- fixed wiki links to people like [[item:##]]
- fixed wiki rendering of empty code blocks
- fixed style sheets for printing
- fixed layout problems with too long nick names in projView team list
- list milestones does no longer show completion bar if there are not tasks for milestone
- display of files / file lists
- adjusted display of versions
- resolved tasks for next version are set to new version
- more reasonable debug output in log-file
internal:
-----------
- fixed ITEM_TYPES of new created people
- fixed DbProjectItem::getVisibleById() for non project items
- DEV_AJAX is been made the default (removed)
v0.068
========
major:
---------
- released versions
- task:resolved version and task:resolve reason
- taskViewEffort
- quick edit in task view
- added comment field in quick edit form of normal task view
- fixed login of new people when not checking IP-ADRESS
- fixed tasks visibility related to status of folders in tree lists
- add new definitions for company and person categories
- fixed strange modification date for project and people
- new Translation into: Polish, Swedish, Norwegian,
minor
-----
- "My tasks" do no longer list completed tasks
- effortEdit: improved task selection
- moved company / person updates by freshframes to v0.0681
- fixed bug with new bug on milestone
- started using jquery-library
- labels of form fields can now be overwritten
- in German translation Notizen -> Kommentare
- added filter presets for "all", "Modified" and "without milestone"
- fixed install function when aborting on write protected tmp-dir
internal
--------
- missing files logged
- resolve reason for tasks
- adjusted quickEditForm
- fixed client / Database Date conversion (see sysInfo for check)
- fixed effort style for creator of new projects
- added reproducibility and severity to task display
- fixed link-styles
- fixed wiki links inside tables
- moved edit description below description
- issue-report only display on issues
- fixed wiki list at end of text
- added support for pjpeg mime type
- added quick task edit including comment by Tino
v0.067 (2006-07-29)
=====================
major
--------
- add a quick edit form in the normal task view (http://streber.pixtur.de/index.php?go=taskView&tsk=1351)
- fixed "searching for Item-IDs does not work" (http://streber.pixtur.de/index.php?go=taskView&tsk=1405) - Search works with Item-ID for people, companies, projects and tasks
minor
-----
- replaced icons in comments block by text-labels (http://streber.pixtur.de/index.php?go=taskView&tsk=560)
- fixed Bug in Person View (FATAL error) - a result of the date functions
v0.065 (2006-07-13)
====================
major
-----
- fixed creating of project templates
- new theme "webplasten"
- added slovak translation
- fixed display of milestones
Minor
------
- fixed visibility of upcomming projects
- fixed "comment on task added to project"-bug
- fixed download name of files containing spaces
- fixed display of effort sum in task-list
- in wiki texts show completed tasks with line through
- keep user logged in if IP_-ADDRESS not checked (do not refresh cookie)
- added reduced header functionality to person lists (http://streber.pixtur.de/index.php?go=taskView&tsk=1220)
v0.063 (2006-06-19)
=====================
major
--------
- rewrote the search results (sorted and designed)
- added editting of multiple tasks
minor
-----
- version, plattform, os and production-builds of new bug-reports are initialized with ealier settings of user
- person description
- added warning and documentation on database exceptions (http://streber.pixtur.de/index.php?go=taskView&tsk=1272)
- added display of worst-case estimated time to tasks and milestone lists
- fixed display of projects in home
- added CRC-checksum for hidden form fields
- added "tasks needed approval" preset
- search: added quick-jump with "!"
- search: highlight query with javascript
internal
---------
- added cycle-lock detection when listing task folders
- splitted task.inc.php into task_view and task_more.inc.php
- added LOG_LEVEL_HACKING_ALERT
- fixed right to adjust setting pub-level
- started implementation for taskEditMultiple
- added caching to person and project (experimental)
- added assigntype to figure out initial assignments (has to be added to taskEditSubmit)
- added phpVersion-check to index.php
- refactured some of the notification-stuff (maybe the mails make more sense now)
- adjusted browsing the error-log
- fixed fatal error with incomplete translations
- added incomplete slovak translation
- fixed typo
- person has option to log efforts as duration or times (affects new projects only)
- adjusted / styled grouped list-style
- adjusted print output
- task status is automatically set to "open" after been edited
- Task-Status is printed in the breadcrumbs (above headline)
- wiki: fixed line breaks inside quotes
- guess client time shift with javascript (is been tested)
- fixed "canceling new template duplicates project" bug
- fixed browser-caching of old css-styles (caused layout-issues on upgrades)
- fixed some errors in the style-sheets
v0.062
========
major
------
+ wiki: added table syntax
+ wiki: fixed cascacading lists (now supports mixing of unsorted and numbered lists)
% fixed encoding of notification-messages (distinguis server-specific OS linebreaks)
minor
------
+ wiki config-option to autoinsert ids to wiki-texts
% fixed display of upcomming projects
+ added delete-milestone function
% adjusted display of error-messages (distinguish notes, warnings, errors)
% fixed sorting of tasks in tree-view
+ added "create another tasks after submit"-option
+ Wiki: added long minus ("--") syntax
+ automatically set complettion to 100% if tasks status is set to completed
+ errors.log - can be filtered (very very handy for development) and deleted in sysInfo (see footer)
- fixed undefined g_wiki_project where possible
- adjusted Diff-View
% fixed warning if no milestone defined
% fixed bug when adding new team members to project
% fixed unsetting task's for_milestone setting
internal
---------
+ optimized browser-caching of downloaded images by adjusting http-headers
% fix Project::getChanges-bug should be static function bug
% adjusted display of project changes
% slightly adjusted display of attached files for tasks
+ made "can login" default option for new people
=== v0.061 =========
major
------
- show differences of tasks / task history (including wiki difference of text-block)
- cleaned version history
- added personListDeleted (deleted person can be restored)
- fixed toggling of folders in tree task-list
- notification-mails are sent as multipart message with HTML and(!) plain-text
minor
--------
- added DB_USE_UTF8_ENCODING config setting
- list changes list (move and added attachments)
- fixed database-error when sorting for file-ID
- fixed wrapping for milestone completion graph
- fixed display of page functions in companyView and personView
- fixed print styles
- added "from -options to wiki code blocks
- fix mysql date bug
- set default-values for database fields
- also search closed tasks
- fixed "-" birthday bug
- fixed wiki-link not rendered with emphasized words inside
internal
--------
- hide list function in task filelist
- fixed fatal error with undefined profile
- fixed some undefined vars
- refactured user_profile-handling (user profiles can now be translated)
- add production build to task forms
- fixed bug in notification mail
- validate edit time request (prevent from overwriting of later changes)
=== v0.06 =========
- new page function for tasks "move"
- display of grouped list adjusted
- wiki: added `monospace`-syntax
- wiki: added ''emphasize''-syntax
- fixed default sorting of comments
- fixed an issue with IIS-Support
- fixed intergration with mysqli-interface
- new page function for tasks "move"
- in taskView attached files are displayed as thumbnails
- display of grouped list adjusted
=== v0.0592
- list estimated/completed time for milestones
- fixed urls in notification mails (including https-support)
- fixed "next milestone"-filter preset
- added ID-column to files list
- fixed missing wiki-link in grouped lists
- projView, taskView -> adjusted page function display
- fixed "folder not used as parent for new task"
- assigned tasks are no longer listed in "projView" (but as preset in projViewTasks)
- fixed "tree"-style of tasks list
- taskView > added "estimated time" and "Milestone" to details block
- taskView > if task is a milestone, attached tasks are listed
=== v0.059 [2006-04-07] ============================
minor
-----
- added "severity" security
- project-labels for new projects can be customized with "PROJECT_DEFAULT_LABELS"
- added additional output on login procedure
- resorted project objects in navigation bar
- fixed pageFunctions at taskView
- check for tasks with identical names
- fixed some errors with related to task editting and validation
- show icon to tasks with attached files
- hide label, if tasks is a folder
- added "wiki"-label for new projects
- wiki finds team-members by nickname
- fixed wiki-formatting for some lists
- fixed wiki-formatting for some items
- wiki supports numbers lists with syntax 1. 2. 3.
- wiki checks for existence of images before querrying them from the database (and causing an error)
internal
----------
- increased cookie lifetime
- moved db-upgrades to separate file
- fixed files querry
- prepared "milestone", "versions" and "roadmap"
- fixed visibility-check for people
- refactured listFilters
- refactured display of tasks in tree-view (this is much slower now, but should work)
=== v0.0572 [2006-03-31] ===============================================
minor
------------
- fixed comment-sorting
- fixed add effort `Database`-error
=== v0.057 [2006-03-24] ===============================================
major
-----
- refactured notifications:
- uses person's language
- lists all project changes
- correctly obeys visibility for person
minor
-----
- finished changes list
- refactured People::getPeople()
- capture mail() error with error-handler
- added "www.somehost.de/index.php?go=triggerSendNotifications" to externally trigger notification by cron-jobs
- added 'STMP'-config-var
security
--------
- cleaning search-string (might have been tricked into SQL-injection)
=== v0.057ß1 [2006-03-22] ===============================================
major
-----
- change-log (history) for all items
- fixed upgrade-link to installation
minor
-----
- refactured error-log output
- renamed status "onhold" into "blocked"
- efforts > fixed setting of 'person'-field
security
--------
- fixed unconverted html-output in project-history (could have been used for XSS)
=== v0.056 [2006-03-20] ===============================================
security
---------
- cookie depreciated on changed ip-address
- random cookie-string for each login
minor
-----
- fixed several issues related to converting html-special changes
- fixed several minor issues with using image-files
- slightly changed layout of projView and taskView
- fixed drop-downlist-behaviour in opera v8.x
- fixed page-function of taskView (delete, approve, complete)
- added "edit project description"-function
- fixed "assigned tasks not visible in projView"-bug (added tree-view)
- added favicon (very important ,-) )
- fixed UTF8-encoding of notification mails
wiki
-----
- adjusted the wiki-styling
- fixed several issues with wiki-formating
- code-blocks sometimes do not work
- [sub]subset[/sub]-syntax
- "___" -syntax to add an HR
- clicking an non-existing link opens edit-dialog for a new task at the current location (project and folder)
- fixed overwriting link-name like [[item:324|actually this name is better]]
=== v0.055 [2006-03-15] ===============================================
security
---------
- html-characters are always converted (avoid XSS and js-code-injection)
major
-----
- fixed mySql5 compatibility
- added mySQLDump tool for backup-purposes (see _sql/mysqldump.php)
- "fixed blank-page after submit"-bug
- tested compitibility with XAMPP 1.1.5
=== v0.0541 [2006-02-24] ===============================================
minor
-----
- fixed "no page-id in params got by from_handle"-bug
- added list of closed tasks
=== v0.054 [2006-02-22] ===============================================
major
-----
- wiki formatting (also allows embedding uploaded images)
- french translation by Yves Perrenoud
- tweaked interface
minor
-----
- lots(!) of minor bugfixes and improvements
=== v0.052 [2006-02-04] ===============================================
minor
-----
+ display last_login of team-members
+ display item-id for tasks
+ enable searching for task-ids
% fixed up/downloading of large files
% fixed "created_by=__CUR_USER__" bug
% fixed "forced logout after password change when login by notification mail"
% fixed several "passed reference"-warnings