Skip to content

Commit

Permalink
v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBeckers committed Sep 10, 2020
1 parent 2c5b3f4 commit ca4c694
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
- Added validation [#11](https://github.com/dutchheight/craft-cookie-boss/issues/11).
- Changed consent group description to text columt [#9](https://github.com/dutchheight/craft-cookie-boss/issues/9).
- Spelling mistake [#10](https://github.com/dutchheight/craft-cookie-boss/issues/10).
- Spelling mistake [#10](https://github.com/dutchheight/craft-cookie-boss/issues/10).

## 1.3.2 - 2020-09-10
### Fixed
- Migration error [#15](https://github.com/dutchheight/craft-cookie-boss/issues/15)
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "dutchheight/craft-cookie-boss",
"description": "Allow your visitors to set their cookie preference.",
"type": "craft-plugin",
"version": "1.3.1",
"version": "1.3.2",
"keywords": [
"craft",
"cms",
Expand Down
2 changes: 1 addition & 1 deletion src/assetbundles/cookieboss/CookieBossAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @copyright Copyright (c) 2019 Dutch Height
*/

namespace dutchheight\cookieboss\assetbundles\cookieBoss;
namespace dutchheight\cookieboss\assetbundles\cookieboss;

use Craft;
use craft\web\AssetBundle;
Expand Down
3 changes: 0 additions & 3 deletions src/assetbundles/cookieboss/dist/css/CookieBoss.css
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,6 @@
}

@media (min-width: 768px) {
#cookie-boss {

}
#cookie-boss-modal {
z-index: 999;

Expand Down
3 changes: 2 additions & 1 deletion src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,15 @@ protected function createTables()
'{{%cookieboss_consentgroup}}',
[
'id' => $this->primaryKey(),
'order' => $this->integer()->null(),
'dateCreated' => $this->dateTime()->notNull(),
'dateUpdated' => $this->dateTime()->notNull(),
'uid' => $this->uid(),
// Custom columns in the table
'siteId' => $this->integer(),
'handle' => $this->string(255)->notNull()->defaultValue(''),
'name' => $this->string(255)->notNull()->defaultValue(''),
'desc' => $this->string(255)->notNull()->defaultValue(''),
'desc' => $this->text()->notNull()->defaultValue(''),
'enabled' => $this->boolean()->notNull()->defaultValue(1),
'required' => $this->boolean()->notNull()->defaultValue(0),
'defaultValue' => $this->boolean()->notNull()->defaultValue(0),
Expand Down

0 comments on commit ca4c694

Please sign in to comment.