Skip to content

Commit

Permalink
v2.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBaconCat authored Jun 30, 2024
2 parents 950b848 + 525d761 commit e1ee6d0
Show file tree
Hide file tree
Showing 9 changed files with 648 additions and 1,410 deletions.
10 changes: 8 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ updates:
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.)
directory: "/"
schedule:
# By default, this will be on a Monday.
interval: "weekly"
# Check for npm updates on Mondays
day: "monday"
# Check for npm updates at 4pm UTC
time: "16:00"
groups:
# Group updates together, so that they are all applied in a single PR.
# xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
Expand All @@ -23,8 +26,11 @@ updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
# By default, this will be on a Monday.
interval: "weekly"
# Check for npm updates on Mondays
day: "monday"
# Check for npm updates at 4pm UTC
time: "16:00"
groups:
# Group updates together, so that they are all applied in a single PR.
# xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
Expand Down
35 changes: 17 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "digiflag-f1mv",
"productName": "DigiFlag-F1MV",
"version": "2.6.8",
"version": "2.6.9",
"description": "DigiFlag for F1 MultiViewer",
"main": "./dist/main/main.js",
"license": "MIT",
Expand Down Expand Up @@ -43,14 +43,14 @@
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.1.8",
"address": "^2.0.3",
"electron-store": "8.2.0",
"electron-updater": "^6.2.1",
"express": "^4.19.2",
"i18next": "^23.11.4",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-fs-backend": "^2.3.1",
"i18next-http-backend": "^2.5.2",
"ip": "^2.0.1",
"jquery": "^3.7.1",
"jquery-i18next": "^1.2.1",
"npm_f1mv_api": "^1.4.8"
Expand All @@ -59,28 +59,27 @@
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/notarize": "^2.3.2",
"@types/express": "^4.17.21",
"@types/ip": "^1.1.3",
"@types/jquery": "^3.5.30",
"@types/node": "^20.12.12",
"@types/node": "^20.14.9",
"@types/request": "^2.48.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"electron": "^30.0.6",
"electron-builder": "25.0.0-alpha.6",
"electron-log": "^5.1.4",
"electron-vite": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"electron": "^31.1.0",
"electron-builder": "^24.13.3",
"electron-log": "^5.1.5",
"electron-vite": "^2.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.11"
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"vite": "^5.3.1"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
}
}
}
Loading

0 comments on commit e1ee6d0

Please sign in to comment.