You are here

CHANGELOG.txt in Shoutbox 7

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