Compare commits

...

7 Commits

Author SHA1 Message Date
Julius Härtl
3bd32e6c0d Update appstore building excludes
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2017-10-08 11:51:37 +02:00
Julius Härtl
1633be74ca Bump release to 0.2.4
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2017-10-08 11:47:09 +02:00
Julius Härtl
1ede06fe45 Fix create card issue on NC12
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2017-10-08 11:45:17 +02:00
Julius Härtl
4e4d412717 Fix card action menu
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2017-10-03 15:26:30 +02:00
Julius Härtl
d590e9972b Bump version to 0.2.3
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2017-09-23 16:42:52 +02:00
Julius Härtl
91fb1533e6 Fix card positioning when draging them around
fixes #293

Signed-off-by: Julius Härtl <jus@bitgrid.net>
2017-09-19 14:24:14 +02:00
Julius Härtl
04f17aad68 Acl: Fix wrong permission type being set
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2017-09-19 14:23:53 +02:00
6 changed files with 53 additions and 16 deletions

5
.gitignore vendored
View File

@@ -1,7 +1,10 @@
js/node_modules/*
js/vendor/
build/
js/public/
js/package-lock.json
build/
css/style.css
tests/integration/vendor/
tests/integration/composer.lock
vendor/
*.lock

View File

@@ -1,9 +1,20 @@
# Changelog
All notable changes to this project will be documented in this file.
## 0.2.4 - 2017-10-08
### Fixed
- Fix card action menu not being accessible
## 0.2.3 - 2017-09-23
### Fixed
- Fix delete stack button being not available
- Fix acl issues with PostgreSQL
## 0.2.2 - 2017-09-07
## Fixed
### Fixed
- Various frontend fixes
- Fix sidebar drag issues
- Improvements for IE11

View File

@@ -51,6 +51,7 @@ appstore: clean-build build
--exclude="../$(app_name)/js/tests" \
--exclude="../$(app_name)/js/test" \
--exclude="../$(app_name)/js/*.log" \
--exclude="../$(app_name)/js/package-lock.json" \
--exclude="../$(app_name)/js/package.json" \
--exclude="../$(app_name)/js/bower.json" \
--exclude="../$(app_name)/js/karma.*" \
@@ -60,7 +61,9 @@ appstore: clean-build build
--exclude="../$(app_name)/karma.*" \
--exclude="../$(app_name)/protractor\.*" \
--exclude="../$(app_name)/.*" \
--exclude="../$(app_name)/*.lock" \
--exclude="../$(app_name)/js/.*" \
--exclude="../$(app_name)/vendor" \
--exclude-vcs \
../$(app_name)

View File

@@ -16,7 +16,7 @@
💥 This is still alpha software: it may not be stable enough for production!
</description>
<version>0.2.2</version>
<version>0.2.4</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<namespace>Deck</namespace>

View File

@@ -85,11 +85,16 @@ input.input-inline {
.app-navigation-entry-edit {
height: auto;
.colorselect div{
height: 32px;
}
form {
display: flex;
flex-wrap: wrap;
}
.colorselect {
width: 100%;
div{
height: 32px;
}
}
}
@@ -139,6 +144,12 @@ input.input-inline {
width: 100%;
bottom: 0px;
top: 44px;
&.as-sortable-un-selectable {
.card-list {
min-height: 96px;
}
}
}
#innerBoard {
@@ -309,13 +320,18 @@ input.input-inline {
width: 100%;
}
.card-list {
padding-bottom: 100px;
padding-top: 40px;
margin-top:-40px;
.as-sortable-placeholder {
margin: 10px 10px 20px 10px;
border: 1px dashed $color-darkgrey;
&:last-child {
margin: 10px;
}
}
}
.card {
background-color: $color-main-background;
margin: 10px 10px 20px 10px;
@@ -324,6 +340,10 @@ input.input-inline {
opacity: 1.0;
-webkit-box-shadow: 0 0 5px $color-darkgrey;
&:last-child {
margin: 10px;
}
&.archived .card-upper {
opacity: 0.5;
}
@@ -408,7 +428,6 @@ input.input-inline {
text-align: center;
padding: 10px;
margin: 10px;
margin-top: -90px;
border: none;
overflow: hidden;
-webkit-box-shadow: none;
@@ -462,11 +481,6 @@ input.input-inline {
}
}
.as-sortable-placeholder {
margin: 10px 10px 20px 10px;
border: 1px dashed $color-darkgrey;
}
.info {
padding-left: 5px;
padding-right: 5px;
@@ -1093,6 +1107,9 @@ input.input-inline {
h2 button {
display: none;
}
h2:hover button {
display: inline-flex;
}
}
}

View File

@@ -82,6 +82,9 @@ class Acl extends RelationalEntity implements \JsonSerializable {
}
public function setType($type) {
if(is_numeric($type)) {
return parent::setType($type);
}
// FIXME: Remove when all javascript uses numeric types
if ($type === 'group' || $type === '1') {
$typeInt = Acl::PERMISSION_TYPE_GROUP;