Update of /cvsroot/phpwebsite-comm/modules/rolodex/boost
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32013/boost
Modified Files:
boost.php update.php
Log Message:
0.9.0 updates
Index: boost.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/boost.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** boost.php 11 Jun 2008 17:43:28 -0000 1.2
--- boost.php 24 Jun 2008 11:23:25 -0000 1.3
***************
*** 24,28 ****
$proper_name = 'Rolodex';
! $version = '0.7.0';
$image_dir = true;
$import_sql = true;
--- 24,28 ----
$proper_name = 'Rolodex';
! $version = '0.8.0';
$image_dir = true;
$import_sql = true;
Index: update.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/update.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** update.php 17 Jun 2008 13:27:27 -0000 1.5
--- update.php 24 Jun 2008 11:23:25 -0000 1.6
***************
*** 57,64 ****
$content[] = '0.7.0 changes
----------------
! + Added support for locations and features
</pre>';
}
--- 57,112 ----
$content[] = '0.7.0 changes
----------------
! + Add support for Location(s) and Feature(s)
! + Added a bunch of new views to support those
! + Improved Category views
! + Improved image handling
! + Removed avatar support (its in My Page > Comments anyways)
! + Improved CSV export
! + A few security tweaks
! + Added en_US language file
! + Added inc/remove_user.php for new user mod features
! + Added a couple date format examples to config.php
! + Consolidated various nav links arrays into one function
</pre>';
}
+ case version_compare($currentVersion, '0.8.0', '<'):
+ $content[] = '<pre>';
+
+ $files = array('templates/message_member.tpl',
+ 'templates/edit_settings.tpl'
+ );
+ rolodexUpdateFiles($files, $content);
+
+ $content[] = '0.8.0 changes
+ ----------------
+ + Added new setting to use link or form for contact
+ + Added memnber contact form
+ + Added setting for CAPTCHA on contact form
+ </pre>';
+
+
+ case version_compare($currentVersion, '0.9.0', '<'):
+ $content[] = '<pre>';
+
+ $files = array('templates/adv_search_form.tpl',
+ 'templates/list_member.tpl',
+ 'templates/view_location.tpl',
+ 'templates/view_feature.tpl',
+ 'templates/view_member.tpl',
+ 'templates/view_category.tpl',
+ 'templates/message_member.tpl',
+ 'templates/edit_settings.tpl'
+ );
+ rolodexUpdateFiles($files, $content);
+
+ $content[] = '0.9.0 changes
+ ----------------
+ + Various text improvements throughout
+ + Added more details to list views
+ + Added new settings for customizing list views
+ + Added options for including custom fields in lists
+ </pre>';
+
|