Skip to content

Commit

Permalink
Bump to version 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
linuz90 committed Oct 23, 2023
1 parent ae1d7ec commit da697ea
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bundle-extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ let manifest = {
name: "Minimal Theme for Twitter / X",
short_name: "Minimal Twitter",
description: "Refine and declutter the 𝕏/Twitter web experience.",
version: "5.1.5",
version: "6.0.0",
icons: {
16: "images/MinimalTwitterIcon16.png",
32: "images/MinimalTwitterIcon32.png",
Expand Down
Binary file modified bundle/chrome.zip
Binary file not shown.
Binary file modified bundle/firefox.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@
"@executable_path/../../../../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 5.1.5;
MARKETING_VERSION = 6.0.0;
OTHER_LDFLAGS = (
"-framework",
SafariServices,
Expand Down Expand Up @@ -545,7 +545,7 @@
"@executable_path/../../../../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 5.1.5;
MARKETING_VERSION = 6.0.0;
OTHER_LDFLAGS = (
"-framework",
SafariServices,
Expand Down Expand Up @@ -582,7 +582,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 5.1.5;
MARKETING_VERSION = 6.0.0;
OTHER_LDFLAGS = (
"-framework",
SafariServices,
Expand Down Expand Up @@ -620,7 +620,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.14;
MARKETING_VERSION = 5.1.5;
MARKETING_VERSION = 6.0.0;
OTHER_LDFLAGS = (
"-framework",
SafariServices,
Expand Down
4 changes: 2 additions & 2 deletions content-scripts/src/modules/initialize.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export const addStylesheets = async () => {
head.appendChild(typefullyStylesheet);
head.insertBefore(externalStylesheet, typefullyStylesheet.nextSibling);

const mainStylesheetFromCDN = await fetch(`https://cdn.jsdelivr.net/gh/typefully/minimal-twitter@5.1/css/main.css?t=${Date.now()}`);
const typefullyStylesheetFromCDN = await fetch(`https://cdn.jsdelivr.net/gh/typefully/minimal-twitter@5.1/css/typefully.css?t=${Date.now()}`);
const mainStylesheetFromCDN = await fetch(`https://cdn.jsdelivr.net/gh/typefully/minimal-twitter@6.0/css/main.css?t=${Date.now()}`);
const typefullyStylesheetFromCDN = await fetch(`https://cdn.jsdelivr.net/gh/typefully/minimal-twitter@6.0/css/typefully.css?t=${Date.now()}`);
const mainText = (await mainStylesheetFromCDN.text()).trim();
const typefullyText = (await typefullyStylesheetFromCDN.text()).trim();
const styleSheetText = document.createTextNode(mainText.concat("\n\n").concat(typefullyText));
Expand Down
2 changes: 1 addition & 1 deletion popup/components/sections/TimelineSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const TimelineSection = () => {
<ControlsWrapper className="animate-pulse h-[115.5px]" />
)}
<p className="pt-1 pb-2 text-xs text-center font-medium leading-5 dark:text-x-accentDark text-x-accent1">
View more Twitter display settings{" "}
View more 𝕏 display settings{" "}
<a href="https://twitter.com/i/display" target="_blank" rel="noreferrer" className="text-x-premium hover:underline">
here
</a>
Expand Down

0 comments on commit da697ea

Please sign in to comment.