diff --git a/dist/options/options.html b/dist/options/options.html
index 1eba2b9..a51781e 100644
--- a/dist/options/options.html
+++ b/dist/options/options.html
@@ -109,7 +109,7 @@
[What's
+ href="https://github.com/Bill13579/tabby/wiki/3.2-The-Uwa!!-So-QoL%E2%99%AB-Update">What's
new?]
[Bug Report
with Github]
diff --git a/dist/popup/popup.css b/dist/popup/popup.css
index 4d3afd9..bba6dba 100644
--- a/dist/popup/popup.css
+++ b/dist/popup/popup.css
@@ -212,6 +212,10 @@ input[type="text"]:focus {
flex: 1 1 auto;
position: fixed;
z-index: 99999;
+
+ /* For safety, since anything this large might make it impossible to close the menu */
+ max-height: 80vh;
+ overflow-y: auto;
}
.-tui-menu.-tui-list-dropdown-menu {
box-shadow: 0.4px 0.4px 2px 0.2px var(--menu-shadow);
@@ -600,7 +604,7 @@ html, body {
.-tui-list-manual-filter-indicator[data-inactive] {
display: none;
}
-@keyframes pop {
+@keyframes pop-highlight-1 {
0% { box-shadow: 0 0 0 4px var(--highlight-1); }
3% { box-shadow: 0 0 0 5px var(--highlight-1); }
10% { box-shadow: 0 0 0 6px var(--highlight-1); }
@@ -608,6 +612,7 @@ html, body {
}
.-tui-list-manual-filter-indicator--manual-filter {
+ animation-name: pop-highlight-1;
box-shadow: 0 0 0 4px var(--highlight-1);
background: var(--highlight-1-translucent);
}
diff --git a/ext-info.js b/ext-info.js
index aad9b5f..35455e3 100644
--- a/ext-info.js
+++ b/ext-info.js
@@ -1,3 +1,3 @@
module.exports = {
- EXT_VERSION: "3.1.1"
+ EXT_VERSION: "3.2"
};
diff --git a/package-lock.json b/package-lock.json
index 96a041b..1e51139 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "tabby",
- "version": "3.1.1",
+ "version": "3.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "tabby",
- "version": "3.1.1",
+ "version": "3.2",
"license": "MPL-2.0",
"dependencies": {
"dompurify": "^3.0.1",
diff --git a/package.json b/package.json
index ece110b..ff43e77 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "tabby",
- "version": "3.1.1",
+ "version": "3.2",
"description": "Tabby is an open-source window & tab manager that can manage great amounts of windows and tabs at ease.",
"private": true,
"scripts": {
diff --git a/src/background/background.js b/src/background/background.js
index eedac3c..7234a48 100644
--- a/src/background/background.js
+++ b/src/background/background.js
@@ -16,7 +16,7 @@ browser.runtime.onInstalled.addListener(({ reason }) => {
if (reason !== "browser_update" && reason !== "chrome_update" && reason !== "shared_module_update") {
browser.tabs.create({
active: true,
- url: "https://github.com/Bill13579/tabby/wiki/3.1---The-Manifest-v3-and-Layout-Update"
+ url: "https://github.com/Bill13579/tabby/wiki/3.2-The-Uwa!!-So-QoL%E2%99%AB-Update"
});
}
});