diff --git a/.woodpecker.yml b/.woodpecker.yml index a598a0f..34f13eb 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -50,20 +50,20 @@ pipeline: when: event: [tag] - check-code-quality: - image: sonarsource/sonar-scanner-cli - secrets: [sonar_token, sonar_host, sonar_project] - commands: - - sonar-scanner - -Dsonar.projectKey=$SONAR_PROJECT - -Dsonar.sources=. - -Dsonar.host.url=$SONAR_HOST - -Dsonar.pullrequest.key=$CI_COMMIT_PULL_REQUEST - -Dsonar.pullrequest.branch=$CI_COMMIT_SOURCE_BRANCH - -Dsonar.pullrequest.base=$CI_COMMIT_TARGET_BRANCH - failure: ignore - when: - event: [pull_request] + # check-code-quality: + # image: sonarsource/sonar-scanner-cli + # secrets: [sonar_token, sonar_host, sonar_project] + # commands: + # - sonar-scanner + # -Dsonar.projectKey=$SONAR_PROJECT + # -Dsonar.sources=. + # -Dsonar.host.url=$SONAR_HOST + # -Dsonar.pullrequest.key=$CI_COMMIT_PULL_REQUEST + # -Dsonar.pullrequest.branch=$CI_COMMIT_SOURCE_BRANCH + # -Dsonar.pullrequest.base=$CI_COMMIT_TARGET_BRANCH + # failure: ignore + # when: + # event: [pull_request] create-package: image: deblan/php:8.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index c9a1b79..78324bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## [Unreleased] +## 3.8.0 +### Added +* add option to show hovered label only on top menu (fix #253) + ## 3.7.4 ### Fixed * fix Integrity failed (#247) diff --git a/appinfo/info.xml b/appinfo/info.xml index f9933b4..34af52c 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -32,7 +32,7 @@ Notice Because I believe in a free and decentralized Internet, [Gitnet](https://gitnet.fr) is **self-hosted at home**. In case of downtime, you can download **Custom Menu** from [here](https://kim.deblan.fr/~side_menu/). ]]> - 3.7.4 + 3.8.0 agpl Simon Vieille SideMenu diff --git a/lib/Controller/JsController.php b/lib/Controller/JsController.php index 3abcdba..13d803e 100644 --- a/lib/Controller/JsController.php +++ b/lib/Controller/JsController.php @@ -171,7 +171,7 @@ class JsController extends Controller 'avatar' => $avatar, 'top-menu-apps' => $topMenuApps, 'top-side-menu-apps' => $topSideMenuApps, - 'top-menu-mouse-over-hidden-label' => $this->config->getAppValueBool( + 'top-menu-mouse-over-hidden-label' => $this->config->getAppValueInt( 'top-menu-mouse-over-hidden-label', '0' ), diff --git a/src/AppMenu.vue b/src/AppMenu.vue index 0e550d7..52a9810 100644 --- a/src/AppMenu.vue +++ b/src/AppMenu.vue @@ -24,14 +24,14 @@