CHANGES
Use the following command for the commits in-between two releases:
git log 'v2.0.0'..'v2.0.1' --oneline
# changes between v2.0.0-v2.0.1
git log 'v2.0.0'..master --oneline
# changes between v2.0.0-master
Changes that have landed in master but are not yet released. Click to see more.
- Nothing for now :)
- Fix: Migration for the
attachments
table is fixed prior tov1.1.1
- Major Change: Controllers' and Models' Namespaces are changed
- Directory changed for Controllers and Models
Find whether you used these:
Shongjukti\App\Controllers
Shongjukti\App\Models
If used, replace them with
Shongjukti\Controllers
Shongjukti\Models
- Config: Maximum upload size limit is now described in binary bytes
- Feature: Bootstrap-4 specific javascript validation
- Add fields:
created_at
andupdated_at
data to db - Fix: PHPCS ignore linelength warning
- License changed from GPL-3 to MIT
- Feature: Support added for Shape files (
.shp
,.shx
) - Refactor: Return the ID of the attachment on successful upload instead of boolean
- Fix: Maximum Upload Size check, in PHP
- Fix: Attachment Type label not showing in Bengali mode (@props Mowshana Farhana)
- Fix: Prioritize
$_POST
value over database values in the form return values - Changelog added
- General Fixes in Readme file
- Documentation: Update code documentation
views/attachment-types/index.blade.php
views/attachment-types/form.blade.php
views/layouts/attachments.blade.php
assets/css/shongjukti.css
- Fix: Attachment Type Choice was lost in Edit mode due to Cookie storage
- Refactor: Remove 'optional' label from attachments when in view mode
- New API for
deleteAttachment()
andremoveAttachment()
- Fix: CSS declaration was like SCSS nested
- Fix:
storeAttachments()
is preventing storing parent form (Issue#5) - Fix:
$attachments
causing 'undefined index' error while loading edit view (Issue#6) - Documentation: Need more specific code snippet on how to override routes (Issue#7)
- Refactor: Added PHPCS Ruleset to PSR-2 Standard
- Refactor: Fixed .editorconfig for a better PHPCS Standard configuration
- Refactor: Fixed PHPCS Errors and Warnings
- Fixed a blocker bug in the
composer.json
- Packagist-compatible changes
- Fixed
composer.json
file for the Packagist parsing - Minor fixes in Attachment Type model
- Blocker bug fixed in Attachment Type Controller
- Documentation is completely moved to Github Wiki
- Fixed Translation Strings
- Initial Pre-Release
- Functional Laravel Package