This repository has been archived by the owner on Nov 24, 2019. It is now read-only.
Releases: Rundiz/fuel-start
Releases · Rundiz/fuel-start
v1.6.2
Changes
- Update SmartMenus to be mobile first
- Fix sidebar menu offset
- Fix sidebar sub menu is under admin page content
To update from previous version.
v1.6.1
Changes
- Fix some errors.
- Improve clear cache.
- Minor update theme.
- Add support for plugins. You can use module as plugin. Please read the wiki about plugin hooks index and how to access or write your hooks.
- Add support for plugin hook actions/filters.
- Update to use FuelPHP 1.7.3
To update from previous version.
v1.6
Changes
- Improve a little performance on bulk process. For example: check boxes and choose action from select box.
- Update and add new assets. (jQuery, jQuery UI, tw Bootstrap, Modernizr, Font Awesome)
- Move Font Awesome from [theme system]'s asset to public assets.
- Fix wrong translation text on user permission for modules
- Add breadcrumb to admin controller
- Add new theme name "Sys2". It is admin only theme that contain top and sidebar menu.
To update from previous version.
v1.5.9
Changes
- Minor UI improvement on admin
- Fix fs cli on generate module
- Better check valid timestamp
- Fix locale not reload on language changed by URI
- Use new timezone for select options in global configuration and account form.
- Update db structure to support new timezone value.
- Change theme file's naming to match controller/action. For example: admin/account page; change from
account/account_v.phpto account/index_v.php. - Minor fixes.
To update from previous version.
- Backup your work.
- Update your
ws_accounts
table (ws_ is default table prefix. Use your own prefix). Change size of varchar from30to 100 inaccount_timezone
field. - If you are updating from before v1.5.7, Please follow the update step on 1.5.7
- Compare changes file by file. On Windows, I recommend use Winmerge to compare files.
v1.5.8
Changes
- Minor bug fixes
- Add DB helper to generate ORM field properties
- Add Fs CLI to generate a whole module. Now, it is safe your time to manually generate module and create file by file.
To update from previous version.
- Backup your work.
- If you are updating from before v1.5.7, Please follow the update step on 1.5.7
- Compare changes file by file. On Windows, I recommend use Winmerge to compare files.
For DB helper and Fs CLI, the document are on Wiki page.
v1.5.7
Changes
- Minor UI improvement on admin.
- Fix noCSRF time span
- Fix upload class autoloader while works under module and get error.
- Update to use FuelPHP 1.7.2
To update from previous version.
- Backup your work.
- If you are updating from before v1.5.4, Please follow the update step on 1.5.4
- If you have something manually added or modified in these folder please compare files one by one, otherwise replace it with the new one.
- fuel/core
- fuel/packages
- fuel/vendor
- These are the files from Fuel Start. If you have ever changed the source code, please compare and replace the code line by line, otherwise replace it with the new files.
- fuel/app/classes/extension/nocsrf.php
- public/public/themes/system/admin/templates/account/account_form_v.php
- fuel/app/classes/extension/nocsrf.php
- fuel/app/classes/extension/upload.php
- fuel/app/classes/model/accounts.php
- fuel/app/classes/library/modules.php
v1.5.6
Changes
- Add missed folder.
- Filter no user's permission on Guest account.
- URL bug fix on generated in template.
- Fix noCSRF expiration.
- New sub layout system. (This improvement will not affect previous template system.)
Important!
To update to this version from before 1.5.4.
Please follow the update step on 1.5.4
v1.5.5
v1.5.4
Changes
- Fix some errors.
- Add Composer package.
- UI improvements such as table header floating, html5 auto focus.
- New SQL for clean install
- Permission system now have both for roles and users.
To update from previous version.
- Backup your work.
- Delete these files and folders or change it to new name.
- fuel/app/classes/controller/admin/accountpermission.php -> fuel/app/classes/controller/admin/accountlevelpermission.php
- public/public/templates/accountpermission/ -> public/public/templates/accountlevelpermission/
- public/public/templates/accountpermission/accountpermission_v.php -> public/public/templates/accoutnlevelpermission/index_v.php
- public/public/templates/accountpermission/accountpermission_module_v.php -> public/public/templates/accountlevelpermission/module_v.php
- public/public/templates/accountpermission/accoutnpermission_partial_v.php -> public/public/templates/accountlevelpermission/permission_table.php
- Please copy these files carefully. (Use compare software such as WinMerge if you was modified files.)
- fuel/app/classes
- fuel/app/lang
- fuel/app/views
- public/public
- Copy fuel/app/modules/fs to your installed folder.
- run /fs/update from your project's URL. Example: http://localhost/installed-fuelstart-dir/en/fs/update
- Click update now!
v1.5.3
Changes
- Change translation string from with group to without group. For example:
account.account_username
toaccount_username
- Clean up database for new installation.
- Enable profiler for check performance usage in development. You should disable profiler when publish in production stage.
- Add cache to improve performance. For get config, get site id, check site enable, check account, list sites for menu, and more. Make them use cache to reduce connection to database. This can help speed up the load time up to 70%.
- Fix multi-site management permission check.
- Change redirection for: permission denied, submit completed, others to redirect to referrer where it came from. This can be flexible when admin view the list with filter in querystring and click edit and save and then go back to page where they filtered.
- Fix some wrong redirection.