Merge pull request 'release v3.0.1' (#139) from develop into master
Some checks failed
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline failed

Reviewed-on: #139
This commit is contained in:
Simon Vieille 2022-10-18 22:33:36 +02:00
commit 1ec9a3f2ff
7 changed files with 21 additions and 27 deletions

View file

@ -1,5 +1,9 @@
## [Unreleased]
## 3.0.1
### Fixed
* Remove the gap between the window's top and menu categories (large menu)
## 3.0.0
### Added
* Add compatibility with NC25 (#136/#135)

View file

@ -26,7 +26,7 @@ If you like this application and if you want to support the development:
* [Donate with liberapay](https://liberapay.com/deblan)
* [Leave a comment](https://apps.nextcloud.com/apps/side_menu#comments)
]]></description>
<version>3.0.0</version>
<version>3.0.1</version>
<licence>agpl</licence>
<author mail="contact@deblan.fr" homepage="https://www.deblan.io/">Simon Vieille</author>
<namespace>SideMenu</namespace>
@ -45,6 +45,8 @@ If you like this application and if you want to support the development:
<screenshot>https://gitnet.fr/deblan/side_menu/raw/branch/master/screenshots/nc18_menu_always_displayed.png</screenshot>
<screenshot>https://gitnet.fr/deblan/side_menu/raw/branch/master/screenshots/nc20_big_menu_responsive.png</screenshot>
<screenshot>https://gitnet.fr/deblan/side_menu/raw/branch/master/screenshots/personal_settings.png</screenshot>
<screenshot>https://gitnet.fr/deblan/side_menu/raw/branch/master/screenshots/nc25_big_menu.png</screenshot>
<screenshot>https://gitnet.fr/deblan/side_menu/raw/branch/master/screenshots/nc25_default_menu.png</screenshot>
<dependencies>
<nextcloud min-version="25" max-version="25"/>
<php min-version="7.4"/>

View file

@ -197,10 +197,10 @@
}
.side-menu-categories {
max-height: calc(100vh - 50px);
max-height: calc(100vh - 5px);
overflow: auto;
position: relative;
top: 50px;
top: 5px;
display: flex;
flex-wrap: wrap;
justify-content: center;

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 KiB

View file

@ -81,17 +81,13 @@ export default {
},
methods: {
retrieveApps() {
this.apps = []
let that = this
axios
.get(OC.generateUrl('/apps/side_menu/nav/items'))
.then(function(response) {
that.items = response.data.items
.then((response) => {
this.items = response.data.items
let apps = []
for (let category of that.items) {
for (let category of this.items) {
for (let a in category.apps) {
apps.push(category.apps[a])
}
@ -109,15 +105,13 @@ export default {
},
retrieveConfig() {
let that = this
axios
.get(OC.generateUrl('/apps/side_menu/js/config'))
.then(function(response) {
.then((response) => {
const config = response.data
that.targetBlankApps = config['target-blank-apps']
that.settings = config['settings']
this.targetBlankApps = config['target-blank-apps']
this.settings = config['settings']
})
},
},

View file

@ -79,17 +79,13 @@ export default {
},
methods: {
retrieveApps() {
this.apps = []
let that = this
axios
.get(OC.generateUrl('/apps/side_menu/nav/items'))
.then(function(response) {
that.items = response.data.items
.then((response) => {
this.items = response.data.items
let apps = []
for (let category of that.items) {
for (let category of this.items) {
for (let a in category.apps) {
apps.push(category.apps[a])
}
@ -107,15 +103,13 @@ export default {
},
retrieveConfig() {
let that = this
axios
.get(OC.generateUrl('/apps/side_menu/js/config'))
.then(function(response) {
.then((response) => {
const config = response.data
that.targetBlankApps = config['target-blank-apps']
that.settings = config['settings']
this.targetBlankApps = config['target-blank-apps']
this.settings = config['settings']
})
},
},