Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit c8f512a

Browse files
committed
v3.8.5
1 parent 8485d0c commit c8f512a

File tree

14 files changed

+324
-321
lines changed

14 files changed

+324
-321
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
- [install dependencies](https://github.com/ctf0/Laravel-Media-Manager/wiki/Packages-In-Use)
4343

4444
```bash
45-
yarn add vue vue-ls vue-infinite-loading vue-image-compare2 vue-tippy@v2 vue2-filters vue-input-autowidth vue-notif vue-clipboard2 vue-awesome@v2 vue-touch@next vue-focuspoint-component axios dropzone cropperjs keycode lottie-web plyr fuse.js music-metadata-browser idb-keyval annyang
45+
yarn add vue vue-ls vue-infinite-loading vue-image-compare2 vue-tippy@v2 vue2-filters vue-input-autowidth vue-notif vue-clipboard2 vue-awesome vue-touch@next vue-focuspoint-component axios dropzone cropperjs keycode lottie-web plyr fuse.js music-metadata-browser idb-keyval annyang
4646
yarn add buffer process --dev
4747
```
4848

logs/v3.8.0.txt

Lines changed: 0 additions & 6 deletions
This file was deleted.

logs/v3.8.5.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- update vue-awesome to v4, make sure to update it in your package.json

src/resources/assets/js/components/globalSearch/button.vue

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
@click.stop="done ? showSearchPanel() : init()">
77
<span class="icon">
88
<icon :spin="loading"
9-
name="globe"/>
9+
name="globe-americas"/>
1010
</span>
1111
</button>
1212
</template>
@@ -16,8 +16,8 @@ export default {
1616
props: ['route', 'isLoading', 'trans', 'showNotif'],
1717
data() {
1818
return {
19-
loading: false,
20-
done: false
19+
loading : false,
20+
done : false
2121
}
2222
},
2323
mounted() {
@@ -30,15 +30,15 @@ export default {
3030
this.loading = true
3131
3232
axios.get(this.route)
33-
.then(({data}) => {
34-
this.loading = false
35-
this.done = true
36-
EventHub.fire('global-search-index', data)
37-
this.showNotif(this.trans('glbl_search_avail'))
33+
.then(({data}) => {
34+
this.loading = false
35+
this.done = true
36+
EventHub.fire('global-search-index', data)
37+
this.showNotif(this.trans('glbl_search_avail'))
3838
39-
}).catch((err) => {
40-
console.error(err)
41-
})
39+
}).catch((err) => {
40+
console.error(err)
41+
})
4242
},
4343
showSearchPanel() {
4444
EventHub.fire('toggle-global-search', true)

src/resources/assets/js/components/globalSearch/panel.vue

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
:title="trans('go_to_folder')">{{ item.dir_path }}</span>
7373
</p>
7474
<time>
75-
<span class="icon"><icon name="clock-o"/></span>
75+
<span class="icon"><icon name="regular/clock"/></span>
7676
<span>{{ item.last_modified_formated }}</span>
7777
</time>
7878
<p class="subtitle is-marginless link"
@@ -107,9 +107,9 @@
107107
<style scoped lang="scss" src="../../../sass/modules/global-search.scss"></style>
108108

109109
<script>
110-
import debounce from 'lodash/debounce'
110+
import debounce from 'lodash/debounce'
111111
import VueInputAutowidth from 'vue-input-autowidth'
112-
import panels from '../../mixins/panels'
112+
import panels from '../../mixins/panels'
113113
114114
export default {
115115
components: {
@@ -118,8 +118,8 @@ export default {
118118
directives: {
119119
VueInputAutowidth
120120
},
121-
mixins: [panels],
122-
props: [
121+
mixins : [panels],
122+
props : [
123123
'trans',
124124
'fileTypeIs',
125125
'noScroll',
@@ -129,20 +129,20 @@ export default {
129129
],
130130
data() {
131131
return {
132-
filesIndex: [],
133-
filterdFilesList: [],
134-
search: '',
135-
noData: false,
136-
linkCopied: false,
137-
firstRun: false,
138-
showPanel: false
132+
filesIndex : [],
133+
filterdFilesList : [],
134+
search : '',
135+
noData : false,
136+
linkCopied : false,
137+
firstRun : false,
138+
showPanel : false
139139
}
140140
},
141141
computed: {
142142
fuseLib() {
143143
return new Fuse(this.filesIndex, {
144-
keys: ['name'],
145-
threshold: 0.4
144+
keys : ['name'],
145+
threshold : 0.4
146146
})
147147
},
148148
listCount() {
@@ -181,19 +181,19 @@ export default {
181181
EventHub.fire('global-search-delete-item', item)
182182
},
183183
closePanel() {
184-
this.search = ''
184+
this.search = ''
185185
this.showPanel = false
186186
EventHub.fire('toggle-global-search', false)
187187
},
188188
goToFolder(dir, name) {
189189
EventHub.fire('global-search-go-to-folder', {
190-
dir: dir,
191-
name: name
190+
dir : dir,
191+
name : name
192192
})
193193
194194
this.closePanel()
195195
},
196-
getList: debounce(function () {
196+
getList: debounce(function() {
197197
let search = this.search
198198
199199
if (search) {
@@ -205,7 +205,7 @@ export default {
205205
this.filterdFilesList = []
206206
}, 500),
207207
ontransitionend() {
208-
this.noData = this.search && !this.listCount ? true : false
208+
this.noData = this.search && !this.listCount ? true : false
209209
this.firstRun = true
210210
}
211211
},
@@ -217,7 +217,7 @@ export default {
217217
this.$nextTick(() => this.$refs.search.focus())
218218
} else {
219219
this.$nextTick(() => {
220-
this.noData = false
220+
this.noData = false
221221
this.firstRun = false
222222
})
223223
}

src/resources/assets/js/components/image/editor/controls.vue

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -28,52 +28,52 @@ export default {
2828
return {
2929
controlsList: [
3030
{
31-
trans: 'move',
32-
op : 'move',
33-
mode : 'move',
34-
icon : 'arrows'
31+
trans : 'move',
32+
op : 'move',
33+
mode : 'move',
34+
icon : 'arrows-alt'
3535
},
3636
{
37-
trans: 'crop',
38-
op : 'crop',
39-
mode : 'crop',
40-
icon : 'crop'
37+
trans : 'crop',
38+
op : 'crop',
39+
mode : 'crop',
40+
icon : 'crop'
4141
},
4242
{
43-
trans: 'crop_zoom_in',
44-
op : 'zoom-in',
45-
mode : null,
46-
icon : 'search-plus'
43+
trans : 'crop_zoom_in',
44+
op : 'zoom-in',
45+
mode : null,
46+
icon : 'search-plus'
4747
},
4848
{
49-
trans: 'crop_zoom_out',
50-
op : 'zoom-out',
51-
mode : null,
52-
icon : 'search-minus'
49+
trans : 'crop_zoom_out',
50+
op : 'zoom-out',
51+
mode : null,
52+
icon : 'search-minus'
5353
},
5454
{
55-
trans: 'crop_rotate_left',
56-
op : 'rotate-left',
57-
mode : null,
58-
icon : 'rotate-left'
55+
trans : 'crop_rotate_left',
56+
op : 'undo',
57+
mode : null,
58+
icon : 'undo'
5959
},
6060
{
61-
trans: 'crop_rotate_right',
62-
op : 'rotate-right',
63-
mode : null,
64-
icon : 'rotate-right'
61+
trans : 'crop_rotate_right',
62+
op : 'redo',
63+
mode : null,
64+
icon : 'redo'
6565
},
6666
{
67-
trans: 'crop_flip_horizontal',
68-
op : 'flip-horizontal',
69-
mode : null,
70-
icon : 'arrows-h'
67+
trans : 'crop_flip_horizontal',
68+
op : 'flip-horizontal',
69+
mode : null,
70+
icon : 'arrows-alt-h'
7171
},
7272
{
73-
trans: 'crop_flip_vertical',
74-
op : 'flip-vertical',
75-
mode : null,
76-
icon : 'arrows-v'
73+
trans : 'crop_flip_vertical',
74+
op : 'flip-vertical',
75+
mode : null,
76+
icon : 'arrows-alt-v'
7777
}
7878
]
7979
}

0 commit comments

Comments
 (0)