Skip to content

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
# we are now jQuery free 😱🤘💥💪👯

## image
- animate navigation
- clicking the preview will open the image in a new tab
- preview is now a card with basic info and main functionality “mostly for mobile users”

## new options
- added hide folder option
- add random names option for uploaded files “will also be saved in local-storage”
- save visited folder to local-storage so you can continue from where you left.
- auto select folder after creation
- set “max-height” to the manager if opened inside a modal

## fixs
- fix hide ext
- disallow folder creation with single character name
- disallow folder rename to single character
- fix list update after remove items with same name but diff type
- fix preview modal image align

## styling
- better responsive
- some styling & animation
- added some patterns for upload panel bg so image change on each toggle
- change lock/unlock notification msg
- add notification for single file download

- update assets
- update readme
- update wiki
  • Loading branch information
ctf0 committed Dec 4, 2017
1 parent 2338f66 commit 0c48a20
Show file tree
Hide file tree
Showing 17 changed files with 710 additions and 490 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<p align="center">
<img src="https://user-images.githubusercontent.com/7388088/33029294-e11b7f60-ce20-11e7-91a9-95fb652d3fcd.png">
<img src="https://user-images.githubusercontent.com/7388088/33564620-9e584826-d923-11e7-9ce3-8d4a306734f3.jpg">
<img src="https://user-images.githubusercontent.com/7388088/33564621-9e8837d4-d923-11e7-9117-f63db660c463.jpg">
</p>

# Media Manager
Expand Down Expand Up @@ -176,9 +177,9 @@ return [
- install dependencies

```bash
yarn add vue axios dropzone keycode vue-ls vue-tippy vue2-filters vuemit vue-notif vue-clipboard2 vue-touch@next babel-preset-es2015-node6 babel-preset-stage-2
yarn add vue axios dropzone keycode vue-ls vue-multi-ref vue-tippy vue2-filters vuemit vue-notif vue-clipboard2 vue-touch@next babel-preset-es2015-node6 babel-preset-stage-2
# or
npm install vue axios dropzone keycode vue-ls vue-tippy vue2-filters vuemit vue-notif vue-clipboard2 vue-touch@next babel-preset-es2015-node6 babel-preset-stage-2 --save
npm install vue axios dropzone keycode vue-ls vue-multi-ref vue-tippy vue2-filters vuemit vue-notif vue-clipboard2 vue-touch@next babel-preset-es2015-node6 babel-preset-stage-2 --save
```

- for styling we use ***bulma***
Expand Down
14 changes: 0 additions & 14 deletions logs/v2.2.1.txt

This file was deleted.

31 changes: 31 additions & 0 deletions logs/v2.3.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# we are now jQuery free :scream::metal::boom::muscle::dancers:

## image
- animate navigation
- clicking the preview will open the image in a new tab
- preview is now a card with basic info and main functionality “mostly for mobile users”

## new options
- added hide folder option
- add random names option for uploaded files “will also be saved in local-storage”
- save visited folder to local-storage so you can continue from where you left.
- auto select folder after creation
- set “max-height” to the manager if opened inside a modal

## fixs
- fix hide ext
- disallow folder creation with single character name
- disallow folder rename to single character
- fix list update after remove items with same name but diff type
- fix preview modal image align

## styling
- better responsive
- some styling & animation
- added some patterns for upload panel bg so image change on each toggle
- change lock/unlock notification msg
- add notification for single file download

- update assets “make sure to republish the assets”
- update readme
- update wiki
2 changes: 1 addition & 1 deletion src/MediaManagerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ protected function viewComp()
->url('/');

$patterns = collect(
app('files')->allFiles(public_path('assets/vendor/MediaManager/patterns'))
app('files')->allFiles(public_path('assets/vendor/MediaManager/patterns'))
)->map(function ($item) {
return "/assets/vendor/MediaManager/patterns/{$item->getFileName()}";
});
Expand Down
Loading

0 comments on commit 0c48a20

Please sign in to comment.