diff --git a/CHANGELOG.md b/CHANGELOG.md index c8e1d3fc..79d710c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +# [1.20.0](https://github.com/VampireChicken12/youtube-enhancer/compare/v1.19.4...v1.20.0) (2024-01-05) + + +### Bug Fixes + +* **open settings on hoover:** fix settings hiding when it shouldn't ([1129f8e](https://github.com/VampireChicken12/youtube-enhancer/commit/1129f8ec208d8e877182be9547aa25cb02e76a06)) +* open yt settings on hover not staying open ([50957a0](https://github.com/VampireChicken12/youtube-enhancer/commit/50957a04d1a22f54f9a8ed291ef1b19ae1819e2c)) + + +### Features + +* custom css ([268a75f](https://github.com/VampireChicken12/youtube-enhancer/commit/268a75f1540418644831f9928d3aa6a53f3e73f3)), closes [#227](https://github.com/VampireChicken12/youtube-enhancer/issues/227) + + + + + +## Release Artifacts +| File Name | SHA-256 Hash | +| :--- | :---: | +| youtube-enhancer-v1.20.0-Chrome.zip | a298dbd191879f07a69cf16a099899e0c18448974154fed7bd0835bb7455e279 | +| youtube-enhancer-v1.20.0-Chromium.zip | a298dbd191879f07a69cf16a099899e0c18448974154fed7bd0835bb7455e279 | +| youtube-enhancer-v1.20.0-Edge.zip | a298dbd191879f07a69cf16a099899e0c18448974154fed7bd0835bb7455e279 | +| youtube-enhancer-v1.20.0-Firefox.zip | ed644ae2fedda8976dfaad38a4aa15a24460ae5f067f444fef308c54e3eb3c4f | + ## [1.19.4](https://github.com/VampireChicken12/youtube-enhancer/compare/v1.19.3...v1.19.4) (2023-12-31) diff --git a/package.json b/package.json index f72b3bf5..88e12034 100644 --- a/package.json +++ b/package.json @@ -1,79 +1,79 @@ { - "name": "youtube-enhancer", - "author": { - "name": "VampireChicken12" - }, - "displayName": "YouTube Enhancer", - "version": "1.19.4", - "description": "YouTube Enhancer is a simple extension that adds some useful features to YouTube.", - "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/VampireChicken12/youtube-enhancer.git" - }, - "scripts": { - "build": "vite build", - "dev": "nodemon", - "format": "prettier --write .", - "lint": "eslint .", - "lint:fix": "eslint . --fix" - }, - "type": "module", - "dependencies": { - "@formkit/auto-animate": "^0.8.1", - "dotenv": "^16.3.1", - "i18next": "^23.7.3", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "vite-plugin-css-injected-by-js": "^3.3.0", - "@monaco-editor/react": "^4.6.0", - "monaco-editor": "^0.45.0", - "webextension-polyfill": "^0.10.0" - }, - "devDependencies": { - "@semantic-release/changelog": "^6.0.3", - "@semantic-release/exec": "^6.0.3", - "@semantic-release/git": "^10.0.1", - "@thedutchcoder/postcss-rem-to-px": "^0.0.2", - "@total-typescript/ts-reset": "^0.5.1", - "@types/archiver": "^6.0.1", - "@types/chrome": "^0.0.254", - "@types/node": "^20.9.0", - "@types/react": "^18.2.37", - "@types/react-dom": "^18.2.15", - "@types/webextension-polyfill": "^0.10.6", - "@types/youtube-player": "^5.5.10", - "@typescript-eslint/eslint-plugin": "^6.10.0", - "@typescript-eslint/parser": "^6.10.0", - "@vitejs/plugin-react-swc": "^3.4.1", - "archiver": "^6.0.1", - "autoprefixer": "^10.4.16", - "clsx": "^2.0.0", - "concurrently": "^8.2.2", - "eslint": "^8.53.0", - "eslint-config-prettier": "^9.0.0", - "eslint-plugin-import": "^2.29.0", - "eslint-plugin-jsx-a11y": "^6.8.0", - "eslint-plugin-no-secrets": "^0.8.9", - "eslint-plugin-perfectionist": "^2.3.0", - "eslint-plugin-prettier": "^5.0.1", - "eslint-plugin-promise": "^6.1.1", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.6.0", - "eslint-plugin-tailwindcss": "^3.13.0", - "fs-extra": "^11.1.1", - "get-installed-browsers": "^0.1.7", - "nodemon": "^3.0.1", - "postcss": "^8.4.31", - "prettier": "^3.0.3", - "semantic-release": "^22.0.7", - "tailwind-merge": "^2.0.0", - "tailwindcss": "^3.3.5", - "ts-json-as-const": "^1.0.7", - "ts-node": "^10.9.1", - "typescript": "^5.2.2", - "vite": "^4.5.1", - "zod": "^3.22.4", - "zod-error": "^1.5.0" - } -} + "name": "youtube-enhancer", + "author": { + "name": "VampireChicken12" + }, + "displayName": "YouTube Enhancer", + "version": "1.20.0", + "description": "YouTube Enhancer is a simple extension that adds some useful features to YouTube.", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/VampireChicken12/youtube-enhancer.git" + }, + "scripts": { + "build": "vite build", + "dev": "nodemon", + "format": "prettier --write .", + "lint": "eslint .", + "lint:fix": "eslint . --fix" + }, + "type": "module", + "dependencies": { + "@formkit/auto-animate": "^0.8.1", + "dotenv": "^16.3.1", + "i18next": "^23.7.3", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "vite-plugin-css-injected-by-js": "^3.3.0", + "@monaco-editor/react": "^4.6.0", + "monaco-editor": "^0.45.0", + "webextension-polyfill": "^0.10.0" + }, + "devDependencies": { + "@semantic-release/changelog": "^6.0.3", + "@semantic-release/exec": "^6.0.3", + "@semantic-release/git": "^10.0.1", + "@thedutchcoder/postcss-rem-to-px": "^0.0.2", + "@total-typescript/ts-reset": "^0.5.1", + "@types/archiver": "^6.0.1", + "@types/chrome": "^0.0.254", + "@types/node": "^20.9.0", + "@types/react": "^18.2.37", + "@types/react-dom": "^18.2.15", + "@types/webextension-polyfill": "^0.10.6", + "@types/youtube-player": "^5.5.10", + "@typescript-eslint/eslint-plugin": "^6.10.0", + "@typescript-eslint/parser": "^6.10.0", + "@vitejs/plugin-react-swc": "^3.4.1", + "archiver": "^6.0.1", + "autoprefixer": "^10.4.16", + "clsx": "^2.0.0", + "concurrently": "^8.2.2", + "eslint": "^8.53.0", + "eslint-config-prettier": "^9.0.0", + "eslint-plugin-import": "^2.29.0", + "eslint-plugin-jsx-a11y": "^6.8.0", + "eslint-plugin-no-secrets": "^0.8.9", + "eslint-plugin-perfectionist": "^2.3.0", + "eslint-plugin-prettier": "^5.0.1", + "eslint-plugin-promise": "^6.1.1", + "eslint-plugin-react": "^7.33.2", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-tailwindcss": "^3.13.0", + "fs-extra": "^11.1.1", + "get-installed-browsers": "^0.1.7", + "nodemon": "^3.0.1", + "postcss": "^8.4.31", + "prettier": "^3.0.3", + "semantic-release": "^22.0.7", + "tailwind-merge": "^2.0.0", + "tailwindcss": "^3.3.5", + "ts-json-as-const": "^1.0.7", + "ts-node": "^10.9.1", + "typescript": "^5.2.2", + "vite": "^4.5.1", + "zod": "^3.22.4", + "zod-error": "^1.5.0" + } +} \ No newline at end of file