Compare commits

..

No commits in common. "e166f3156220ad82b3d83640b0e79e809e2008d3" and "51f6781142d0c9742d956ff59d4ad43b7b0f7bfc" have entirely different histories.

6 changed files with 8 additions and 48 deletions

View file

@ -4,13 +4,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## [Unreleased] ## [Unreleased]
## [0.2.0] - 2024-12-10
- Add support for Thunderbird 128
- Require Thunderbird 128 or higher
- Add dark theme for options page
- Use badge instead of custom icon (see [#1](https://git.mmk2410.org/mmk2410/SpaceApper/issues/1))
## [0.1.0] - 2024-07-28 ## [0.1.0] - 2024-07-28
- Initial commit - Initial commit

View file

@ -6,7 +6,7 @@
"browser_specific_settings": { "browser_specific_settings": {
"gecko": { "gecko": {
"id": "tb.spaceapper@mmk2410.org", "id": "tb.spaceapper@mmk2410.org",
"strict_min_version": "128.0" "strict_min_version": "115.0"
} }
}, },
"description": "Add webpages to the spaces toolbar.", "description": "Add webpages to the spaces toolbar.",
@ -26,5 +26,5 @@
"browser_style": false "browser_style": false
}, },
"permissions": ["storage", "webRequest", "webRequestBlocking"], "permissions": ["storage", "webRequest", "webRequestBlocking"],
"version": "0.2" "version": "0.1.0"
} }

View file

@ -1,38 +1,9 @@
:root {
--c-text: #000;
--c-background: #fff;
--c-btn-background: #e7e7e7;
@media (prefers-color-scheme: dark) {
--c-text: #fff;
--c-background: #27272a;
--c-btn-background: #555;
}
}
html { html {
background-color: var(--c-background);
font-family: sans-serif; font-family: sans-serif;
box-sizing: content-box;
margin: 0;
height: 100%;
}
body {
box-sizing: content-box;
margin: 0;
height: 100%;
}
form {
box-sizing: content-box;
height: 100%;
margin: 0;
} }
button { button {
color: var(--c-text); background-color: #e7e7e7;
background-color: var(--c-btn-background);
border-radius: 5px; border-radius: 5px;
border: none; border: none;
padding: 5px 10px; padding: 5px 10px;
@ -45,7 +16,6 @@ button {
} }
#spaces { #spaces {
color: var(--c-text);
width: 100%; width: 100%;
border-collapse: collapse; border-collapse: collapse;
} }
@ -71,9 +41,7 @@ button {
} }
#spaces tbody input { #spaces tbody input {
background-color: var(--c-background);
border: none; border: none;
color: var(--c-text);
height: 100%; height: 100%;
width: 100%; width: 100%;
font-size: inherit; font-size: inherit;

View file

@ -13,7 +13,7 @@
<tr> <tr>
<td>Name</td> <td>Name</td>
<td>URL</td> <td>URL</td>
<td>Badge Color</td> <td>Icon URL</td>
<td></td> <td></td>
</tr> </tr>
</thead> </thead>

View file

@ -19,7 +19,7 @@ function buildSpaceElement(app) {
tr.appendChild(buildInputRow("title", app.title)); tr.appendChild(buildInputRow("title", app.title));
tr.appendChild(buildInputRow("url", app.url)); tr.appendChild(buildInputRow("url", app.url));
tr.appendChild(buildInputRow("badgeBackgroundColor", app.badgeBackgroundColor)); tr.appendChild(buildInputRow("icon", app.icon));
const removeTd = document.createElement("td"); const removeTd = document.createElement("td");
const removeButton = document.createElement("button"); const removeButton = document.createElement("button");
@ -46,7 +46,7 @@ function addSpace() {
const newApp = { const newApp = {
title: "", title: "",
url: "", url: "",
badgeBackgroundColor: "", icon: "",
}; };
spaces.appendChild(buildSpaceElement(newApp)); spaces.appendChild(buildSpaceElement(newApp));
} }
@ -66,7 +66,7 @@ async function saveChanges(e) {
name: hashSpaceName(space.querySelector("input[name='url']").value), name: hashSpaceName(space.querySelector("input[name='url']").value),
title: space.querySelector("input[name='title']").value, title: space.querySelector("input[name='title']").value,
url: space.querySelector("input[name='url']").value, url: space.querySelector("input[name='url']").value,
badgeBackgroundColor: space.querySelector("input[name='badgeBackgroundColor']").value, icon: space.querySelector("input[name='icon']").value,
}; };
apps.push(app); apps.push(app);
}); });

View file

@ -20,8 +20,7 @@ async function createSpaces() {
urls.push(app.url); urls.push(app.url);
await browser.spaces.create(app.name, app.url, { await browser.spaces.create(app.name, app.url, {
title: app.title, title: app.title,
badgeText: app.title.substring(0, 2), defaultIcons: app.icon,
badgeBackgroundColor: app.badgeBackgroundColor
}); });
}); });