Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: widen electron support #473

Merged
merged 3 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ The `Menubar` class is an event emitter:

| menubar | Electron | Notes |
| -------- | -------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
| 9.x.x | 9.x.x \| 10.x.x \| 11.x.x \| 12.x.x \| 13.x.x \| 14.x.x \| 15.x.x \| 16.x.x \| 17.x.x \| 18.x.x \| 19.x. \| 20.x. \| 21.x.x \| 22.x.x \| 23.x.x. \| 24.x.x. \| 25.x.x. \| 26.x.x. \| 27.x.x. | |
| 9.x.x | 9.x.x \| 10.x.x \| 11.x.x \| 12.x.x \| 13.x.x \| 14.x.x \| 15.x.x \| 16.x.x \| 17.x.x \| 18.x.x \| 19.x. \| 20.x. \| 21.x.x \| 22.x.x \| 23.x.x. \| 24.x.x. \| 25.x.x. \| 26.x.x. \| 27.x.x.| 28.x.x.| 29.x.x. | |
| 8.x.x | 8.x.x | |
| 7.x.x | 7.x.x | |
| 6.x.x | 4.x.x \| 5.x.x \| 6.x.x | Not recommended for [security reasons](https://electronjs.org/docs/tutorial/security#17-use-a-current-version-of-electron) |
Expand Down
123 changes: 62 additions & 61 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,63 +1,64 @@
{
"name": "menubar",
"version": "9.4.0",
"author": "Max Ogden",
"bugs": {
"url": "https://github.com/maxogden/menubar/issues"
},
"description": "high level way to create menubar desktop applications with electron",
"files": [
"/assets",
"/lib"
],
"homepage": "https://github.com/maxogden/menubar",
"keywords": [
"electron",
"shell",
"menubar",
"menu",
"taskbar",
"tray",
"traybar",
"mac",
"linux",
"windows",
"app"
],
"license": "BSD-2-Clause",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/maxogden/menubar.git"
},
"scripts": {
"build": "rimraf lib/ && tsc",
"deploy": "yarn build && standard-version",
"docs": "typedoc",
"lint": "tsc --noEmit && eslint . --ext js,ts",
"test": "jest"
},
"types": "lib/index.d.ts",
"dependencies": {
"electron-positioner": "^4.1.0"
},
"devDependencies": {
"@amaurym/config": "^1.3.5",
"@types/jest": "^25.2.3",
"electron": "^27.1.0",
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"standard-version": "^8.0.0",
"ts-jest": "^26.0.0",
"typedoc": "^0.17.7",
"typedoc-plugin-markdown": "^2.2.17",
"typedoc-plugin-no-inherit": "^1.1.10",
"typescript": "^4.6.2"
},
"peerDependencies": {
"electron": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0 || ^23.0.0 || ^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0"
}
"name": "menubar",
"version": "9.4.0",
"author": "Max Ogden",
"bugs": {
"url": "https://github.com/maxogden/menubar/issues"
},
"description": "high level way to create menubar desktop applications with electron",
"files": [
"/assets",
"/lib"
],
"homepage": "https://github.com/maxogden/menubar",
"keywords": [
"electron",
"shell",
"menubar",
"menu",
"taskbar",
"tray",
"traybar",
"mac",
"linux",
"windows",
"app"
],
"license": "BSD-2-Clause",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/maxogden/menubar.git"
},
"scripts": {
"build": "rimraf lib/ && tsc",
"deploy": "yarn build && standard-version",
"docs": "typedoc",
"lint": "tsc --noEmit && eslint . --ext js,ts",
"test": "jest"
},
"types": "lib/index.d.ts",
"dependencies": {
"electron-positioner": "^4.1.0"
},
"devDependencies": {
"@amaurym/config": "^1.3.5",
"@types/jest": "^25.2.3",
"electron": "^29.1.6",
setchy marked this conversation as resolved.
Show resolved Hide resolved
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"standard-version": "^8.0.0",
"ts-jest": "^26.0.0",
"typedoc": "^0.17.7",
"typedoc-plugin-markdown": "^2.2.17",
"typedoc-plugin-no-inherit": "^1.1.10",
"typescript": "^4.6.2"
},
"peerDependencies": {
"electron": "^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0 || ^21.0.0 || ^22.0.0 || ^23.0.0 || ^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0|| ^28.0.0|| ^29.0.0"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}
Loading