You are here

CHANGELOG.txt in Case Tracker 6

Same filename and directory in other branches
  1. 5 CHANGELOG.txt
  2. 7 CHANGELOG.txt
Case Tracker 5.x-1.0, 2007-??-??
--------------------------------
 * hook_uninstall() has been added to basic, core, and mail.
 * basic node types renamed: casetracker_basic now ships with node types named
   casetracker_basic_project (and _case) as opposed to the original form of
   casetracker_project. this renaming was a paranoid sideeffect of adding a
   hook_uninstall() which would DELETE node types named casetracker_project.
   we felt that such a name would be relatively common for custom CCK-like
   installations, and didn't want to see accidental deletions when and if
   casetracker_basic.module was ever uninstalled. a hook_update() for case
   tracker will rename all "casetracker_project" (and "case") types to include
   the "basic" string, and hope we don't trounce non-basic types.
 * bug: empty case number on the "Jump to case number" block will now
   correctly say "Case number not required". However, the fix requires
   some CSS magick which doesn't actually work in IE 6. Oh well.

Case Tracker 4.7.x-1.0, 2006-12-19
----------------------------------
 * database: casetracker_comment merged with casetracker_comment_status.
 * all css ids and classes are now - delimited, not _.
 * database: casetracker_case:p_id is renamed to pid.
 * database: casetracker_case:case_id is renamed to case_number.
 * database: casetracker_comment_status:project_term_id renamed to pid.
 * database: casetracker_project:project_no is renamed to project_number.
 * casetracker > cases menu item is now modifiable. hackish, but ok.
 * casetracker_case_state_load() now issues one query and then caches.
 * mail sending and receiving has been moved into casetracker_mail.module.
 * Removed the use of sequences to keep track of Case Tracker's project and
   case numbers. The sequences for cases were never implemented properly; to
   do them right would mean filling up sequences with a per-project counter.
   Everything has been moved to a settings variable which, while allowing for
   a race condition, doesn't abuse sequences (with both amount of project
   case numbers and the forcing of +100 instead of +1 by db_next_id()).
 * "Jump to case number" block now requires 'access case tracker' perms.
 * "Latest cases" block configuration moved to block edit screen.
 * xmlrpc_example.php added to repository, demonstrating simple client access.
 * XML-RPC integration has been rewritten; moved to casetracker_xmlrpc.module.
 * "assigned to" now defaults to the Drupal "anonymous" setting.
 * casetracker_views.module now exists - all Views code has moved there.
 * case filtering now supports node types.
 * project filter nids can now be comma separated.
 * assigned:## and author:## are now available in case filters.
 * case URL filtering has been improved again; more filters coming.
 * user/*/cases exist, thanks to moshe for the idea and patch.
 * my demonic case URL search filters are finished. see README.txt.
 * case filter criteria (via URLs) is now shown in both the title of the
   page but also in a new "Case filter criteria" text above the table.
   this will make for a stronger display when I add commas into the URLs.
 * bug: fixed the use of CSS classes. in the past, they only worked under
   the assumption that you never change the default 'status' states. now,
   CSS classes are generated by taking the realm name and state value and
   munging them, such that "Priority: 1-High" becomes class "priority_1_high"
   and "Status: Needs Review" becomes 'status_needs_review'. The same sort
   of conversion will happen for all user-entered state values as well.
 * Added explanation of Case Tracker URLs into the README.txt. Along with
   this, note that two URLs have changed format - all URLs that were
   originally /projects/* are now /casetracker/projects/*, and state
   names (such as /cases/all/priority/13) have been replaced with 'state'
   (/cases/all/state/13). This opens up some nice abilities coming soon.
 * removed "Last updated" from projects overview display. this didn't really
   "mean" anything: was it the last time the project node was updated (it
   was), the last time a comment was added, the last time a case was added,
   or the last time a case was commented on? until clearer, irrelevant.
 * casetracker_basic is now automatically enabled for previous installs
   when the update.php is run (the default "case" node type has been
   moved there as part of the CCK-capable transition).
 * feature: cases can now be assigned to any node type (ex. CCK).
 * theme: altered the forms so that states are inline/single-row. 
 * the basic case fields (state, assigned to, project, etc.) have now been
   abstracted into a single function, and are used by both the case node
   type and the comment form_alter. case node type modification has also
   moved to form_alter, completing ground work for CCK capabilities. 
 * bug: disabled the search functions. they were never updated to the
   new project architecture, and most certainly didn't work right.
 * bug: if only one project, it is now autoselected (no dropdown appears).
 * theme: case states are now inline'd, like project_issue.module.
 * rewrote entire case state administrative interface. 
 * bug: deleted numerous functions that were commented or unused. 
 * feature: casetracker_case node type has been moved to hook_nodeapi
   to ease future integration with CCK and other existing node types.
 * theme: theme_casetracker_case_summary now exists.
 * feature: project dropdown now only displays on case creation if the URL
   argument was missing ("create content" vs. "add case to this project").
 * theme: theme_casetracker_project_summary now exists.
 * feature: added default case type to settings.
 * feature: added default case priority to settings.
 * bug fix: default case status was not displayed in settings.
 * db schema explanation added to casetracker.install.
 * casetracker.install goldplated like a core .install.
 * cleanup of casetracker_basic.module finished.
 * Morbus Iff begins goldplating.

File

CHANGELOG.txt
View source
  1. Case Tracker 5.x-1.0, 2007-??-??
  2. --------------------------------
  3. * hook_uninstall() has been added to basic, core, and mail.
  4. * basic node types renamed: casetracker_basic now ships with node types named
  5. casetracker_basic_project (and _case) as opposed to the original form of
  6. casetracker_project. this renaming was a paranoid sideeffect of adding a
  7. hook_uninstall() which would DELETE node types named casetracker_project.
  8. we felt that such a name would be relatively common for custom CCK-like
  9. installations, and didn't want to see accidental deletions when and if
  10. casetracker_basic.module was ever uninstalled. a hook_update() for case
  11. tracker will rename all "casetracker_project" (and "case") types to include
  12. the "basic" string, and hope we don't trounce non-basic types.
  13. * bug: empty case number on the "Jump to case number" block will now
  14. correctly say "Case number not required". However, the fix requires
  15. some CSS magick which doesn't actually work in IE 6. Oh well.
  16. Case Tracker 4.7.x-1.0, 2006-12-19
  17. ----------------------------------
  18. * database: casetracker_comment merged with casetracker_comment_status.
  19. * all css ids and classes are now - delimited, not _.
  20. * database: casetracker_case:p_id is renamed to pid.
  21. * database: casetracker_case:case_id is renamed to case_number.
  22. * database: casetracker_comment_status:project_term_id renamed to pid.
  23. * database: casetracker_project:project_no is renamed to project_number.
  24. * casetracker > cases menu item is now modifiable. hackish, but ok.
  25. * casetracker_case_state_load() now issues one query and then caches.
  26. * mail sending and receiving has been moved into casetracker_mail.module.
  27. * Removed the use of sequences to keep track of Case Tracker's project and
  28. case numbers. The sequences for cases were never implemented properly; to
  29. do them right would mean filling up sequences with a per-project counter.
  30. Everything has been moved to a settings variable which, while allowing for
  31. a race condition, doesn't abuse sequences (with both amount of project
  32. case numbers and the forcing of +100 instead of +1 by db_next_id()).
  33. * "Jump to case number" block now requires 'access case tracker' perms.
  34. * "Latest cases" block configuration moved to block edit screen.
  35. * xmlrpc_example.php added to repository, demonstrating simple client access.
  36. * XML-RPC integration has been rewritten; moved to casetracker_xmlrpc.module.
  37. * "assigned to" now defaults to the Drupal "anonymous" setting.
  38. * casetracker_views.module now exists - all Views code has moved there.
  39. * case filtering now supports node types.
  40. * project filter nids can now be comma separated.
  41. * assigned:## and author:## are now available in case filters.
  42. * case URL filtering has been improved again; more filters coming.
  43. * user/*/cases exist, thanks to moshe for the idea and patch.
  44. * my demonic case URL search filters are finished. see README.txt.
  45. * case filter criteria (via URLs) is now shown in both the title of the
  46. page but also in a new "Case filter criteria" text above the table.
  47. this will make for a stronger display when I add commas into the URLs.
  48. * bug: fixed the use of CSS classes. in the past, they only worked under
  49. the assumption that you never change the default 'status' states. now,
  50. CSS classes are generated by taking the realm name and state value and
  51. munging them, such that "Priority: 1-High" becomes class "priority_1_high"
  52. and "Status: Needs Review" becomes 'status_needs_review'. The same sort
  53. of conversion will happen for all user-entered state values as well.
  54. * Added explanation of Case Tracker URLs into the README.txt. Along with
  55. this, note that two URLs have changed format - all URLs that were
  56. originally /projects/* are now /casetracker/projects/*, and state
  57. names (such as /cases/all/priority/13) have been replaced with 'state'
  58. (/cases/all/state/13). This opens up some nice abilities coming soon.
  59. * removed "Last updated" from projects overview display. this didn't really
  60. "mean" anything: was it the last time the project node was updated (it
  61. was), the last time a comment was added, the last time a case was added,
  62. or the last time a case was commented on? until clearer, irrelevant.
  63. * casetracker_basic is now automatically enabled for previous installs
  64. when the update.php is run (the default "case" node type has been
  65. moved there as part of the CCK-capable transition).
  66. * feature: cases can now be assigned to any node type (ex. CCK).
  67. * theme: altered the forms so that states are inline/single-row.
  68. * the basic case fields (state, assigned to, project, etc.) have now been
  69. abstracted into a single function, and are used by both the case node
  70. type and the comment form_alter. case node type modification has also
  71. moved to form_alter, completing ground work for CCK capabilities.
  72. * bug: disabled the search functions. they were never updated to the
  73. new project architecture, and most certainly didn't work right.
  74. * bug: if only one project, it is now autoselected (no dropdown appears).
  75. * theme: case states are now inline'd, like project_issue.module.
  76. * rewrote entire case state administrative interface.
  77. * bug: deleted numerous functions that were commented or unused.
  78. * feature: casetracker_case node type has been moved to hook_nodeapi
  79. to ease future integration with CCK and other existing node types.
  80. * theme: theme_casetracker_case_summary now exists.
  81. * feature: project dropdown now only displays on case creation if the URL
  82. argument was missing ("create content" vs. "add case to this project").
  83. * theme: theme_casetracker_project_summary now exists.
  84. * feature: added default case type to settings.
  85. * feature: added default case priority to settings.
  86. * bug fix: default case status was not displayed in settings.
  87. * db schema explanation added to casetracker.install.
  88. * casetracker.install goldplated like a core .install.
  89. * cleanup of casetracker_basic.module finished.
  90. * Morbus Iff begins goldplating.