Unverified Commit f01e9633 authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge tag '1.1.8' into 1.2-maintenance

Fedify 1.1.8
parents b218dee0 5e89fcab
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -10,6 +10,10 @@ To be released.

 -  Fixed warnings from the `fedify inbox` command.
    [[#177], [#181] by WinterHana]
 -  Fixed `ShikiError` on the `fedify inbox` command rendering web interface.
    [[#178], [#185] by Heesun Jung]
 -  Fixed text overflow of the `fedify inbox` command's web log view.
    [[#180], [#188] by Lim Kyunghee]

[#177]: https://github.com/dahlia/fedify/issues/177
[#181]: https://github.com/dahlia/fedify/pull/181
@@ -205,6 +209,22 @@ Released on October 31, 2024.
[#118]: https://github.com/dahlia/fedify/issues/118


Version 1.1.8
-------------

Released on November 23, 2024.

 -  Fixed `ShikiError` on the `fedify inbox` command rendering web interface.
    [[#178], [#185] by Heesun Jung]
 -  Fixed text overflow of the `fedify inbox` command's web log view.
    [[#180], [#188] by Lim Kyunghee]

[#178]: https://github.com/dahlia/fedify/issues/178
[#180]: https://github.com/dahlia/fedify/issues/180
[#185]: https://github.com/dahlia/fedify/pull/185
[#188]: https://github.com/dahlia/fedify/pull/188


Version 1.1.7
-------------

+4 −4
Original line number Diff line number Diff line
@@ -108,10 +108,10 @@ interface CodeBlockProps {
  code: string;
}

const highlighter = await getSingletonHighlighter({
  themes: ["github-light"],
  langs: ["http", "json"],
});
const highlighter = await getSingletonHighlighter();
await highlighter.loadTheme("github-light");
await highlighter.loadLanguage("http");
await highlighter.loadLanguage("json");

const CodeBlock: FC<CodeBlockProps> = ({ language, code }: CodeBlockProps) => {
  const result = highlighter.codeToHtml(code, {