Welcome Guest, Not a member yet? Register   Sign In
DBlog v1.8: Out now! - Demo and Documentation included!
#30

[eluser]davidbehler[/eluser]
Another day ,another update: Version 1.6 out now!!

New features:
- Sidebar management: Managing the content of the sidebar is now much easier than before and you don't have to manually add new elements to a list. Instead DBlog offers a comfortable table that allows you to sort and de-/activate items in the sidebar on the fly!
- Module options: Modules can now create their own pages in the administration and add them to navigation in the admin panel (e.g. the new database backup module) using multiple new hooks.

Changelog:
Improved display of tabs in admin panel
- application/views/_admin/system_css.php
Moved search to sidebar in ablaze design
- application/views/ablaze/sidebar.php
- application/views/ablaze/index.php
- application/views/ablaze/index_system.php
Reworked the way the sidebar is handled
- CREATE TABLE IF NOT EXISTS `sidebar_item` (
`sidebar_item_id` bigint(20) NOT NULL auto_increment,
`sidebar_item_title` varchar(100) NOT NULL,
`sidebar_item_name` varchar(100) NOT NULL,
`sidebar_item_description` text NOT NULL,
`sidebar_item_is_active` tinyint(1) NOT NULL,
`sidebar_item_order_by` bigint(20) NOT NULL,
PRIMARY KEY (`sidebar_item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=14 ;
- INSERT INTO `sidebar_item` (`sidebar_item_id`, `sidebar_item_title`, `sidebar_item_name`, `sidebar_item_description`, `sidebar_item_is_active`, `sidebar_item_order_by`) VALUES
(1, 'Pages', 'pages', 'A list of all pages', 1, 2),
(2, 'Archives', 'archives', 'Post archive', 1, 3),
(3, 'Categories', 'categories', 'A list of all used categories', 1, 4),
(4, 'Links', 'links', 'A list of all links', 1, 6),
(5, 'Blogs', 'blogs', 'A list of all links to blogs', 1, 7),
(6, 'Tags', 'tag_cloud', 'A cloud of all used tags', 1, 5),
(7, 'Search terms', 'search_cloud', 'A list of recently used search terms', 1, 8),
(8, 'Newest files', 'newest_files', 'A list of the 5 newest files available for download', 1, 9),
(9, 'Top file', 'top_files', 'A list of the 5 top files', 1, 10),
(10, 'Newest galleries', 'newest_galleries', 'A list of the newest galleries', 1, 11),
(11, 'Search', 'search', 'Search form', 1, 0),
(12, 'Meta', 'meta', 'Meta links', 1, 12),
(13, 'Post overview', 'post_overview', 'Link to post overview', 1, 1);
- ALTER TABLE `config`
DROP `config_navigation_items`,
DROP `config_navigation_show_search`,
DROP `config_navigation_show_meta`,
DROP `config_navigation_show_post_overview`;
- application/models/common_model.php
- application/libraries/MY_Controller.php
- application/views/*/sidebar.php
- application/language/*/dblog_lang.php
- application/views/_admin/config_edit.php
- application/config/form_validation.php
- application/models/admin/config_model.php
- application/views/_admin/navigation.php
- application/controllers/admin/sidebar.php
- application/models/admin/sidebar.php
- application/views/_admin/sidebar_overview.php
Rearragend some items in the admin navigation
- application/_admin/navigation.php
- application/_admin/system_css.php
Enhanced design selection
- application/views/_admin/config_edit.php
- images/styles/*/example.png
Enhanced comment management
- application/views/_admin/comment_overview.php
- application/views/_admin/system_css.php
- application/config/form_validation.php
- application/controllers/admin/comment.php
- application/models/admin/comment_model.php
Fixed a bug in Akismet module (Thanks to China-cier and iqbal_kidd for pointing this one out)
- application/modules/Akismet.php
Moved Google Analytics support from config to own module
- application/modules/Google_Analytics.php
- application/modules/config/Google_Analytics.php
- application/views/*/index.php
- application/views/*/google_tracker.php (deleted)
- application/views/_admin/config_edit.php
- application/config/Form_validation.php
- application/models/admin/config_model.php
- ALTER TABLE `config` DROP `config_google_tracker_id`
Moved social bookmarking from config to own module
- application/modules/Social_Bookmarking.php
- application/modules/config/Social_Bookmarking.php
- images/modules/*
- application/views/*/post_view.php
- application/views/*/page_view.php
- application/views/_admin/config_edit.php
- application/config/Form_validation.php
- application/models/admin/config_model.php
- application/libraries/View.php
- ALTER TABLE `config` DROP `config_show_social_bookmarking_links`
Fixed a bug that allowed you to delete a page even though it was set as start page
- application/views/_admin/page_overview.php
Enabled modules to add their own options page to the administration and call custom hooks
- application/libraries/Modules.php
- application/views/_admin/navigation.php
- application/controllers/admin/modules.php
- application/models/admin/module_model.php
- application/views/_admin/module_options.php
Added a module that allows you to create backups of your dblog database
- application/modules/DB_Backup.php
Added a function to module library that removes modules from the database that are no longer present in the modules folder
- application/libraries/Modules.php
Duplicate ID in right table (Thanks to sigork for this)
- UPDATE `right` SET right_id = 19 WHERE right_id = 18 and `right_name` like 'can_manage_galleries';
Increase version number
- application/config/dblog_version.php

In fact I was aiming to release this version in about a week and use the additional time to add some more modules and write some documentation to make it easier for you to develop your own modules, custom designs and translations but as there were 2 bugs pointed out to me I decided to release this version earlier to fix them as soon as possible!

Download from my website: click here


Messages In This Thread
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 02:25 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 06:11 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 06:51 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 07:42 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 08:44 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 08:59 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-10-2009, 01:03 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-11-2009, 04:46 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 04-15-2009, 04:09 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-09-2009, 05:20 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-11-2009, 11:41 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-13-2009, 11:00 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-14-2009, 01:29 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-14-2009, 04:32 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-14-2009, 04:40 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-14-2009, 05:01 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-14-2009, 06:12 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-15-2009, 01:18 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-15-2009, 01:44 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-15-2009, 05:03 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-24-2009, 04:46 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-25-2009, 04:16 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-26-2009, 08:09 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-26-2009, 10:09 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-26-2009, 06:56 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 12:29 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 01:10 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 01:58 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 04:17 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 06:50 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 05-29-2009, 04:30 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-08-2009, 05:19 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-28-2009, 05:22 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 09-02-2009, 02:54 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 09-13-2009, 10:24 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 09-29-2009, 02:18 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 09-29-2009, 04:31 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 10-01-2009, 01:31 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 10-01-2009, 01:38 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 10-01-2009, 01:50 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 10-01-2009, 02:01 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 10-01-2009, 02:05 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 11-05-2009, 08:16 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 11-08-2009, 09:05 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 01-24-2010, 08:41 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 01-24-2010, 09:55 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 01-24-2010, 11:36 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-21-2010, 08:53 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-21-2010, 08:56 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-21-2010, 07:00 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-15-2010, 02:36 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-15-2010, 02:47 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-15-2010, 04:41 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-15-2010, 04:46 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-28-2011, 09:52 PM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-29-2011, 01:33 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 06-29-2011, 02:08 AM
DBlog v1.8: Out now! - Demo and Documentation included! - by El Forum - 07-15-2013, 11:20 AM



Theme © iAndrew 2016 - Forum software by © MyBB