/***********************************************************
* $Id: releasenotes.txt,v 1.2 2007/10/24 05:47:09 Phoenix Exp $
* $Revision: 1.2 $
* $Author: Phoenix $
* $Date: 2007/10/24 05:47:09 $
***********************************************************/
Version 2.0.5.4

- Secured access permissions on event additon/deletion/modification.
- Further XHJTML comp;liance work.

Version 2.0.5.3

- Fixed installer for MySQL5 and changes to DragonflyCMS sql functions.
- Added an RSS events feed.
- XHTML non-compliances fixed and validated to XHTML 1.0.
- Incorporated Chael's fixes in DragonflyCMS downloads comments.

Version 2.0.5.2

- Modified functions.inc to include some global variables that were missed in 2.0.5.
- Fixed the monthlyByDay input value.  Monthly repeating events would not save correctly.
- Fixed display of multiple repeating events on the same day.  Repeating events without times would display multiple times on the same day.
- Reordered the first few lines of code in the blocks so that the first thing that gets called is the require and then the global.

Version 2.0.5.1

- Modified to unstall properly.

Version 2.0.5

- Fixed week and day calendars.  If a date in a repeating event range is deleted, the week and day calendars would still show the event.
- Fixed weekly recurring events.  If user did not select a day of the week to repeat, the event would not repeat on the calendar.  
	Modified this so that if the user did not select a day to repeat, it would automatically select the start day for the event.
- Fixed recurring event descriptions.  If a recurring event was created and then the user tried to modify a description other than
	the description on the starting date, it would kill the reurrence for that event totally.
- Removed _SUN, _MON... _SAT from language file and replaced with _ABR_SUNDAY, _ABR_MONDAY... _ABR_SATURDAY from the main.php file.
	Didn't realize that they were in there.
- Changed name of getFolderContent function to avoid conflict with coppermine function of the same name.
- Fixed Workday Start in admin console.  User could not enter 0 (12:00am), the program would default back to 8.  Removed the use of 
	empty(...) ? 8 : ...  because using empty on a variable that evaluates to 0 will return true.
- Limited Workday End to 23
- Not allow Workday Start to be greater than Workday End.
- Removed $module_name declaration from index.php as it is already set in the CPG-Nuke index.php file.
- Added link to Pending Events admin console to actually view the event as the users would see it.  Click on the event name to view the event.
- Fixed the event Delete link on the Pending Events admin console to send the "eid" instead of "id"
- Modified the View Event screen to make it easier to read.  Also modified it to only display useful information to the user.  The creator or admins
	will see aditional information on this screen.
- Added the Pending Calendar Events count to the Waiting Content block so that the admin can see how many events are waiting to be approved
	without going into the CPGNuCalendar admin console.
- Added "Jump to view" to the bottom of all 4 calendar types so that a user can jump directly to a date.

Version 2.0.4

- block-CPGNuCalendar is now obsolete and has been replaced by block-CPGNuCalendar_Small_Month
- NEW block-CPGNuCalendar_Coming_Events to display upcoming events.
- NEW Block Settings admin console allows the admin to congifure certain block settings.
	Settings Include:
		Small Month Block - Highlight days that have events
		Coming Events Block - Number of days to dispaly
		Coming Events Block - Enable event scrolling
		Coming Events Block - Adjust the speed of the scrolling
- Date format on the Day calendar and the Coming Events Block is controlled by the user's date format as set in My Account->My Preferences
- Fixed errors on edit_event and view_event caused by not including the includes/nbbcode.php file. 


Version 2.0.3.1

- Added missing $db variable to the global statement in functions.inc on line 24.


Version 2.0.3

- Fixed conversion of non-repeating events to repeating events.  When a non-repeating event was converted to a repeating event
	the repeating information was not being saved.  This has been fixed.
- When an event was set to recur, there was no way to turn it off.  Added a checkbox that the user can toggle to turn on/off
	the recurrence for an event.
- Changed the recurrence area to totally disappear unless the recurring event checkbox is checked.
- Modified the event description to be a bbcode area like the submit news page so that the description can contain bbcode.
- Fixed the display of the small month block calendar so it would format correctly when placed as a center block.
- In the range of recurrence area of the add/edit event screen, I modified the popup calendar link to read it's initial value
	from the values that are selected in the dropdowns.
- Added trap for invalid dates being submitted via the url and display an error page.
- Added a default case so that if a view is requested that does not exist, it defaults to the month view.
- Added $pagetitle code to append to the title tag in the head of the html


Version 2.0.2

- Modified small month calendars to highlight days that have events assigned to them.  This only works in the module,
	currently, not in the block.
- Modified small month calendars and block to circle the current day.
- In Pending Events manager, for non repeating events, display Non Repeating Event in the Recurrence Pattern column.
- Fixed security issue where all users who could add events can also edit anyone else's events.  Modified to verify that 
	the user is either the creator or a calendar administrator.
- Fixed redirection issues with LEO.  Was using header() function instead of url_redirect() function.
- Fixed group issue where members of a specific group as specified in the admin configuration could not see the add event button.


Version 2.0.1

- Fixed images not changing when the Default Category Image drop down is changed.  
	Was sending the wrong variable into the javascript.
- Fixed links on small month calendars to work with LEO
	call to getlink() had closing paren in wrong place on line 467 in index.php.
- Fixed $prefix undefined error in Pending Events manager on line 136 in index.inc.  
	Had to add $prefix to global declaration.
- View event screen was displaying Denied Approval for Approved events.
	Modified line 1264 to check $approved > 0 instead of $approved == 1