You are here

CHANGELOG.txt in Shoutbox 6.2

Same filename and directory in other branches
  1. 5 CHANGELOG.txt
  2. 6 CHANGELOG.txt
  3. 7.2 CHANGELOG.txt
  4. 7 CHANGELOG.txt
Dev:
-------------
15 AUG 2011:
-------------
* Fixed broken "new shouts on top" option
* Fixed warning message by initializing context variable to an empty array
* Added permission check before adding Shoutbox link in OG menu
* Added Shoutbox rules module (contributed by nmclain)
* Fixed javascript issues revealed by Ajax load; the auto-update timer should
  only be activated when an unprocessed shout form is discovered
* Removed $op == 'query' from hook_shoutbox
  - hook_db_rewrite_sql() will now be used with $op == 'context' (see API doc)
* Added Shoutbox domain
* Minor performance and coding tweaks

05 JAN 2011:
-------------
* Added Shoutbox tags module
* Added Shoutbox user module
* Added Shoutbox points module
* Javascript uses mode (page|block) to determine shout amount
* Use theme_username() to output the shout's author
* Restored the 'no shouts' message
* Added raw return of shouts in shoutbox_display_posts()
* Admin setting to specify if the shout form widget is a textarea or textfield
* Fixed javascript detection on shout submit handler which was causing the entire page
to be returned on AJAX submits
* Returned shout data via AJAX in JSON format
* Fixed image HTML syntax

08 SEPT 2010:
--------------
* Fixed SQL query for non-restricted shouts
* Fixed show_amount for block view
* Removed depreciated block view function
* Added the admin option to select the shout time format
* Removed page refresh on AJAX error
* Inline error div used for AJAX errors

27 AUG 2010:
--------------
* Moved shoutbox output into a table
* Retrieve all shout updates upon addition
* Expanded the API (see API.txt)
* Pause/reset the auto-update timer on shout addition
* Fixed shout deletion on cron
* Complete rewrite of javascript
* Hover to show shout admin links
* Cleaned form handlers, theme functions, much more
* Added shoutbox_points module (userpoints integration)
* Shouts maxlength now unlimited
* Shoutbox can differentiate between submodule shouts (module column added to shoutbox table)
* Improved the shout form
* Added better javascript detection and degrading
* Change timestamp to "ago" format
* Prevent auto-update when paging shouts
* Disallow shouts when paging to avoid ajax updates
* Moved error alert popups to inline divs
* Changed shout operation pages from shoutbox/%shout to shout/%shout
* Fixed redirect query on shoutbox admin link urls after an ajax update
* Removed t()'s from .install files


15 JULY 2010:
--------------
* Fixed #853540: Shouts redirecting to homepage: jQuery convention from 
5.x that was ported into the 6.1.x branch was missed in 6.2.x. 
This was causing certain themes to prevent AJAX functionality which
resulted in page redirects.
* Prevented editing a shout to make it empty
* Added trim() on shout submission


2 JULY 2010:
-------------
* Revamped for a 2.x release
* Contains many bug fixes, efficiency fixes, and patched security holes
* Much improved theme and theming support
* Removed unnecessary fields and options when shouting
* Introduced a number of helpful admin settings
* Introduction of the Shoutbox Group module which integrates with Organic Groups
* And much more..


15 JULY 2008:
-------------
* Updated to Drupal 6.x
* Added input filter support
* Added history/archive support
* Removed voting
* Improved moderation support. 


07 May 2007:
--------------
* Added auto refresh of shouts. 
* Added support for db prefix.


08 April 2007:
--------------
* Updating changelog for Drupal 5.x
* Misc bug fixes and features

31 Jan 2006:
------------
* Updated for Drupal 4.7
* Remove all non-essential features for sake of simplicity.  This 
  includes the archived shouts listing and display of the shoutbox outside 
  of an iframe.  If anyone needs these features, please help port them over 
  from the 4.6 version.


12 Oct 2005:
------------
* Added translation template (shoutbox.pot)


9 Sep 2005:
-----------
* Moved the links array (for the edit/delete/promote/demote icons) to the
  theme_shoutbox_links() function so that a user can override them with a theme.


5 July 2005:
------------

* Added PostgreSQL support


7 June 2005:
------------

* Misc bug fixes and one database change.
* The 'vote' colunn of the 'shoutbox_moderation' table should not be unsigned like it was:
  ALTER TABLE `drupal_shoutbox_moderation` CHANGE `vote` `vote` TINYINT(3)  DEFAULT "0"


6 June 2005:
------------

* Auto refresh option when viewing shoutbox in an iframe
* Archived shouts listing (access permission required)
* Fixed shout modified/change date display
* Fixed some shout moderation bugs
* Code tidy up


13 Sep 2004:
------------

Initial release.

File

CHANGELOG.txt
View source
  1. Dev:
  2. -------------
  3. 15 AUG 2011:
  4. -------------
  5. * Fixed broken "new shouts on top" option
  6. * Fixed warning message by initializing context variable to an empty array
  7. * Added permission check before adding Shoutbox link in OG menu
  8. * Added Shoutbox rules module (contributed by nmclain)
  9. * Fixed javascript issues revealed by Ajax load; the auto-update timer should
  10. only be activated when an unprocessed shout form is discovered
  11. * Removed $op == 'query' from hook_shoutbox
  12. - hook_db_rewrite_sql() will now be used with $op == 'context' (see API doc)
  13. * Added Shoutbox domain
  14. * Minor performance and coding tweaks
  15. 05 JAN 2011:
  16. -------------
  17. * Added Shoutbox tags module
  18. * Added Shoutbox user module
  19. * Added Shoutbox points module
  20. * Javascript uses mode (page|block) to determine shout amount
  21. * Use theme_username() to output the shout's author
  22. * Restored the 'no shouts' message
  23. * Added raw return of shouts in shoutbox_display_posts()
  24. * Admin setting to specify if the shout form widget is a textarea or textfield
  25. * Fixed javascript detection on shout submit handler which was causing the entire page
  26. to be returned on AJAX submits
  27. * Returned shout data via AJAX in JSON format
  28. * Fixed image HTML syntax
  29. 08 SEPT 2010:
  30. --------------
  31. * Fixed SQL query for non-restricted shouts
  32. * Fixed show_amount for block view
  33. * Removed depreciated block view function
  34. * Added the admin option to select the shout time format
  35. * Removed page refresh on AJAX error
  36. * Inline error div used for AJAX errors
  37. 27 AUG 2010:
  38. --------------
  39. * Moved shoutbox output into a table
  40. * Retrieve all shout updates upon addition
  41. * Expanded the API (see API.txt)
  42. * Pause/reset the auto-update timer on shout addition
  43. * Fixed shout deletion on cron
  44. * Complete rewrite of javascript
  45. * Hover to show shout admin links
  46. * Cleaned form handlers, theme functions, much more
  47. * Added shoutbox_points module (userpoints integration)
  48. * Shouts maxlength now unlimited
  49. * Shoutbox can differentiate between submodule shouts (module column added to shoutbox table)
  50. * Improved the shout form
  51. * Added better javascript detection and degrading
  52. * Change timestamp to "ago" format
  53. * Prevent auto-update when paging shouts
  54. * Disallow shouts when paging to avoid ajax updates
  55. * Moved error alert popups to inline divs
  56. * Changed shout operation pages from shoutbox/%shout to shout/%shout
  57. * Fixed redirect query on shoutbox admin link urls after an ajax update
  58. * Removed t()'s from .install files
  59. 15 JULY 2010:
  60. --------------
  61. * Fixed #853540: Shouts redirecting to homepage: jQuery convention from
  62. 5.x that was ported into the 6.1.x branch was missed in 6.2.x.
  63. This was causing certain themes to prevent AJAX functionality which
  64. resulted in page redirects.
  65. * Prevented editing a shout to make it empty
  66. * Added trim() on shout submission
  67. 2 JULY 2010:
  68. -------------
  69. * Revamped for a 2.x release
  70. * Contains many bug fixes, efficiency fixes, and patched security holes
  71. * Much improved theme and theming support
  72. * Removed unnecessary fields and options when shouting
  73. * Introduced a number of helpful admin settings
  74. * Introduction of the Shoutbox Group module which integrates with Organic Groups
  75. * And much more..
  76. 15 JULY 2008:
  77. -------------
  78. * Updated to Drupal 6.x
  79. * Added input filter support
  80. * Added history/archive support
  81. * Removed voting
  82. * Improved moderation support.
  83. 07 May 2007:
  84. --------------
  85. * Added auto refresh of shouts.
  86. * Added support for db prefix.
  87. 08 April 2007:
  88. --------------
  89. * Updating changelog for Drupal 5.x
  90. * Misc bug fixes and features
  91. 31 Jan 2006:
  92. ------------
  93. * Updated for Drupal 4.7
  94. * Remove all non-essential features for sake of simplicity. This
  95. includes the archived shouts listing and display of the shoutbox outside
  96. of an iframe. If anyone needs these features, please help port them over
  97. from the 4.6 version.
  98. 12 Oct 2005:
  99. ------------
  100. * Added translation template (shoutbox.pot)
  101. 9 Sep 2005:
  102. -----------
  103. * Moved the links array (for the edit/delete/promote/demote icons) to the
  104. theme_shoutbox_links() function so that a user can override them with a theme.
  105. 5 July 2005:
  106. ------------
  107. * Added PostgreSQL support
  108. 7 June 2005:
  109. ------------
  110. * Misc bug fixes and one database change.
  111. * The 'vote' colunn of the 'shoutbox_moderation' table should not be unsigned like it was:
  112. ALTER TABLE `drupal_shoutbox_moderation` CHANGE `vote` `vote` TINYINT(3) DEFAULT "0"
  113. 6 June 2005:
  114. ------------
  115. * Auto refresh option when viewing shoutbox in an iframe
  116. * Archived shouts listing (access permission required)
  117. * Fixed shout modified/change date display
  118. * Fixed some shout moderation bugs
  119. * Code tidy up
  120. 13 Sep 2004:
  121. ------------
  122. Initial release.