diff --git a/.woodpecker.yml b/.woodpecker.yml index a8fb90f..61563c0 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,5 +1,5 @@ steps: - check-tag: + "Verify tag and app version": image: alpine commands: - TAG=${CI_COMMIT_TAG/v//} @@ -7,7 +7,7 @@ steps: when: event: [tag] - dependencies: + "Install dependencies": image: node:16 pull: true commands: @@ -16,13 +16,13 @@ steps: event: [tag, push, pull_request, manual] branch: [master, develop, feature/*, fix/*, bugfix/*, translations] - osv-detector: + "Check dependencies": image: gitnet.fr/deblan/osv-detector:v0.10 commands: - osv-detector package-lock.json failure: ignore - build-js: + "Build JS": image: node:16 commands: - npm run build @@ -30,7 +30,7 @@ steps: event: [tag, push, pull_request, manual] branch: [master, develop, feature/*, fix/*, bugfix/*, translations] - build-translations: + "Build translations": image: deblan/php:8.0 commands: - php bin/generate_l10n.php @@ -38,7 +38,7 @@ steps: event: [tag, push, pull_request, manual] branch: [master, develop, feature/*, fix/*, bugfix/*, translations] - create-signature: + "Create signature": image: nextcloud:25 secrets: [app_certificate, app_public_certificate] environment: @@ -73,7 +73,7 @@ steps: # when: # event: [pull_request] - create-package: + "Create package": image: deblan/php:8.0 volumes: - /var/www/html/artifacts:/var/www/html/artifacts @@ -89,7 +89,7 @@ steps: when: event: [tag] - push-release: + "Push release": image: plugins/gitea-release volumes: - /var/www/html/artifacts:/var/www/html/artifacts diff --git a/CHANGELOG.md b/CHANGELOG.md index 018f249..be801f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## [Unreleased] +## 3.11.6 +### Fixed +* add --background-invert-if-bright in top menu (fix #326) + ## 3.11.5 ### Fixed * add missing label on buttons for accessiblity (fix #311) diff --git a/appinfo/info.xml b/appinfo/info.xml index 86aa73e..6d049ae 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.11.5 + 3.11.6 agpl Simon Vieille SideMenu diff --git a/css/sideMenu.css b/css/sideMenu.css index b66e53a..8a63202 100644 --- a/css/sideMenu.css +++ b/css/sideMenu.css @@ -83,6 +83,12 @@ padding-left: 12px !important; margin-left: 5px !important; margin-left: 3px !important; + overflow: hidden; +} + +.side-menu-opener span { + position: relative; + left: 50px; } .side-menu-opener:active, .side-menu-opener:focus { diff --git a/package.json b/package.json index 05e2ef7..8609660 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "stylelint:fix": "./node_modules/.bin/stylelint src --fix" }, "dependencies": { - "axios": "^0.24.0", + "axios": "^1.6.7", "trim": "^1.0.1", "vue": "^2.6.11" }, diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..7190a60 --- /dev/null +++ b/renovate.json @@ -0,0 +1,3 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json" +} diff --git a/src/AppMenu.vue b/src/AppMenu.vue index c456370..4e31f12 100644 --- a/src/AppMenu.vue +++ b/src/AppMenu.vue @@ -21,7 +21,10 @@ -->