diff --git a/logs/v1.3.6.txt b/logs/v1.3.6.txt deleted file mode 100644 index d2f1b5b..0000000 --- a/logs/v1.3.6.txt +++ /dev/null @@ -1,5 +0,0 @@ -- fix refresh button when no files are avail -- fix refresh shortcut button not working when there are no files -- add events for file/folder “upload/delete/rename” which will give you the full path to the file/folder so you can hook into them easily. -- fixed error when adding new folder & not triggering refresh after -- update readme \ No newline at end of file diff --git a/logs/v2.0.0.txt b/logs/v2.0.0.txt new file mode 100644 index 0000000..2d71047 --- /dev/null +++ b/logs/v2.0.0.txt @@ -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 \ No newline at end of file diff --git a/src/resources/assets/sass/media-bulma.scss b/src/resources/assets/sass/media-bulma.scss index d805f03..daf3dbc 100644 --- a/src/resources/assets/sass/media-bulma.scss +++ b/src/resources/assets/sass/media-bulma.scss @@ -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; + } } } @@ -57,8 +57,8 @@ table, td, th { - border: none !important; vertical-align: middle; + border: none !important; } tr:hover { @@ -72,6 +72,6 @@ table, } .modal-card-foot { - background-color: white; justify-content: flex-end; + background-color: white; } diff --git a/src/resources/assets/sass/shared/animate.scss b/src/resources/assets/sass/shared/animate.scss index 5df77ca..b56b9f7 100644 --- a/src/resources/assets/sass/shared/animate.scss +++ b/src/resources/assets/sass/shared/animate.scss @@ -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; } }