mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-07-02 19:52:47 +03:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ccf5e5f363 | |||
| 2b7171805c | |||
| 7158e0cbad | |||
| ff96b3de99 | |||
| 54844c54d5 | |||
| 46f613f295 | |||
| 01340f6aef | |||
| b4a454f463 |
@@ -15,7 +15,7 @@ body:
|
|||||||
attributes:
|
attributes:
|
||||||
label: Description
|
label: Description
|
||||||
description: A clear and concise description of what the bug is.
|
description: A clear and concise description of what the bug is.
|
||||||
placeholder: e.g. Sometimes when generating a password not all character sets are included
|
placeholder: e.g. Sometimes clicking on the extension icon doesn't open the side panel
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
@@ -105,3 +105,5 @@ body:
|
|||||||
required: true
|
required: true
|
||||||
- label: The provided reproduction is a minimal reproducible example of the bug.
|
- label: The provided reproduction is a minimal reproducible example of the bug.
|
||||||
required: true
|
required: true
|
||||||
|
- label: This issue was written in English.
|
||||||
|
required: true
|
||||||
|
|||||||
@@ -60,3 +60,5 @@ body:
|
|||||||
options:
|
options:
|
||||||
- label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
|
- label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
|
||||||
required: true
|
required: true
|
||||||
|
- label: This issue was written in English.
|
||||||
|
required: true
|
||||||
|
|||||||
@@ -117,7 +117,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: chrome
|
name: chrome
|
||||||
|
|
||||||
- uses: wdzeng/chrome-extension@v1.3.0
|
- uses: wdzeng/chrome-extension@v2.0.1
|
||||||
with:
|
with:
|
||||||
extension-id: ${{ secrets.CHROME_EXT_ID }}
|
extension-id: ${{ secrets.CHROME_EXT_ID }}
|
||||||
zip-path: tabs-aside-*-chrome.zip
|
zip-path: tabs-aside-*-chrome.zip
|
||||||
@@ -135,7 +135,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: chrome
|
name: chrome
|
||||||
|
|
||||||
- uses: wdzeng/edge-addon@v2.1.0
|
- uses: wdzeng/edge-addon@v2.1.1
|
||||||
with:
|
with:
|
||||||
product-id: ${{ secrets.EDGE_PRODUCT_ID }}
|
product-id: ${{ secrets.EDGE_PRODUCT_ID }}
|
||||||
zip-path: tabs-aside-*-chrome.zip
|
zip-path: tabs-aside-*-chrome.zip
|
||||||
@@ -152,7 +152,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: firefox
|
name: firefox
|
||||||
|
|
||||||
- uses: wdzeng/firefox-addon@v1.2.0
|
- uses: wdzeng/firefox-addon@v1.2.1
|
||||||
with:
|
with:
|
||||||
addon-guid: ${{ secrets.FIREFOX_EXT_UUID }}
|
addon-guid: ${{ secrets.FIREFOX_EXT_UUID }}
|
||||||
xpi-path: tabs-aside-*-firefox.zip
|
xpi-path: tabs-aside-*-firefox.zip
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ jobs:
|
|||||||
extver=`jq -r ".version" package.json`
|
extver=`jq -r ".version" package.json`
|
||||||
echo "version=$extver" >> "$GITHUB_OUTPUT"
|
echo "version=$extver" >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- uses: dev-build-deploy/release-me@v0.18.2
|
- uses: dev-build-deploy/release-me@v1.0.0
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
prefix: v
|
prefix: v
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ export default function useSettingsReviewDialog(dialog: DialogContextType): Prom
|
|||||||
if (needsReview.length > 0)
|
if (needsReview.length > 0)
|
||||||
dialog.pushCustom(
|
dialog.pushCustom(
|
||||||
<SettingsReviewDialog />,
|
<SettingsReviewDialog />,
|
||||||
undefined,
|
"alert",
|
||||||
() =>
|
() =>
|
||||||
{
|
{
|
||||||
settingsForReview.removeValue();
|
settingsForReview.removeValue();
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ export default function useWelcomeDialog(dialog: DialogContextType): Promise<voi
|
|||||||
if (showWelcome || import.meta.env.DEV)
|
if (showWelcome || import.meta.env.DEV)
|
||||||
dialog.pushCustom(
|
dialog.pushCustom(
|
||||||
<WelcomeDialog />,
|
<WelcomeDialog />,
|
||||||
undefined,
|
"alert",
|
||||||
() =>
|
() =>
|
||||||
{
|
{
|
||||||
showWelcomeDialog.removeValue();
|
showWelcomeDialog.removeValue();
|
||||||
|
|||||||
Generated
+719
-707
File diff suppressed because it is too large
Load Diff
+22
-10
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "tabs-aside",
|
"name": "tabs-aside",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "3.3.1",
|
"version": "3.3.2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "wxt",
|
"dev": "wxt",
|
||||||
@@ -16,27 +16,39 @@
|
|||||||
"@dnd-kit/modifiers": "^9.0.0",
|
"@dnd-kit/modifiers": "^9.0.0",
|
||||||
"@dnd-kit/sortable": "^10.0.0",
|
"@dnd-kit/sortable": "^10.0.0",
|
||||||
"@dnd-kit/utilities": "^3.2.2",
|
"@dnd-kit/utilities": "^3.2.2",
|
||||||
"@fluentui/react-components": "^9.73.8",
|
"@fluentui/react-components": "^9.74.1",
|
||||||
"@fluentui/react-icons": "^2.0.326",
|
"@fluentui/react-icons": "^2.0.328",
|
||||||
"@webext-core/messaging": "^2.3.0",
|
"@webext-core/messaging": "^3.0.1",
|
||||||
"@wxt-dev/analytics": "^0.5.4",
|
"@wxt-dev/analytics": "^0.5.4",
|
||||||
"@wxt-dev/i18n": "^0.2.5",
|
"@wxt-dev/i18n": "^0.2.5",
|
||||||
"lzutf8": "^0.6.3",
|
"lzutf8": "^0.6.3",
|
||||||
"react": "^19.2.6",
|
"react": "^19.2.7",
|
||||||
"react-dom": "^19.2.6"
|
"react-dom": "^19.2.7"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/css": "^0.14.1",
|
"@eslint/css": "^1.3.0",
|
||||||
"@eslint/js": "^9.39.4",
|
"@eslint/js": "^9.39.4",
|
||||||
"@eslint/json": "^0.14.0",
|
"@eslint/json": "^2.0.0",
|
||||||
"@stylistic/eslint-plugin": "^5.10.0",
|
"@stylistic/eslint-plugin": "^5.10.0",
|
||||||
"@types/react": "^19.2.14",
|
"@types/react": "^19.2.16",
|
||||||
"@types/react-dom": "^19.2.3",
|
"@types/react-dom": "^19.2.3",
|
||||||
"@wxt-dev/module-react": "^1.2.2",
|
"@wxt-dev/module-react": "^1.2.2",
|
||||||
"eslint": "^9.39.4",
|
"eslint": "^9.39.4",
|
||||||
"eslint-plugin-react": "^7.37.5",
|
"eslint-plugin-react": "^7.37.5",
|
||||||
"typescript": "^6.0.3",
|
"typescript": "^6.0.3",
|
||||||
"typescript-eslint": "^8.59.3",
|
"typescript-eslint": "^8.60.0",
|
||||||
"wxt": "^0.20.26"
|
"wxt": "^0.20.26"
|
||||||
|
},
|
||||||
|
"overrides": {
|
||||||
|
"node-notifier": {
|
||||||
|
"uuid": "^11.1.1"
|
||||||
|
},
|
||||||
|
"web-ext-run": {
|
||||||
|
"tmp": "^0.2.6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"allowScripts": {
|
||||||
|
"esbuild": true,
|
||||||
|
"spawn-sync": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user