Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ctf0 committed Oct 25, 2017
1 parent 21c8271 commit 694b1e4
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 17 deletions.
5 changes: 0 additions & 5 deletions logs/v1.3.6.txt

This file was deleted.

12 changes: 12 additions & 0 deletions logs/v2.0.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
- use manager from modal “check wiki”
- you can now download all selected files, thanx to https://github.com/PixelsCommander/Download-File-JS
- now the manager will have its own script file so you only load it when needed instead of merging it with your main script, better loading time for users.
- fix pattern for names with `()`
- fix file names cleanup not working properly
- change config sanitized text to `uniqid()` instead for better ux
- add new “folder restriction” feature “check wiki”
- changed js structure instead of the bazillion folders everywhere
- fix move btn not updating correctly on first load
- remove event listener on destroy
- update assets
- update read me
18 changes: 9 additions & 9 deletions src/resources/assets/sass/media-bulma.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ $orange: #ff470f;
&.is-success {
background-color: $green;
}
}

.is-danger,
.is-link,
.is-primary,
.is-success {
* {
color: white;
&.is-danger,
&.is-link,
&.is-primary,
&.is-success {
* {
color: white;
}
}
}

Expand All @@ -57,8 +57,8 @@ table,

td,
th {
border: none !important;
vertical-align: middle;
border: none !important;
}

tr:hover {
Expand All @@ -72,6 +72,6 @@ table,
}

.modal-card-foot {
background-color: white;
justify-content: flex-end;
background-color: white;
}
6 changes: 3 additions & 3 deletions src/resources/assets/sass/shared/animate.scss
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
.animated {
animation-duration: 600ms;
animation-fill-mode: both;
animation-timing-function: cubic-bezier(1, 0, 0, 1);
animation-fill-mode: both;
}

@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -100%, 0);
opacity: 0;
}

to {
opacity: 1;
transform: none;
opacity: 1;
}
}

Expand Down

0 comments on commit 694b1e4

Please sign in to comment.