Loading CHANGES.md +20 −0 Original line number Diff line number Diff line Loading @@ -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 Loading Loading @@ -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 ------------- Loading cli/inbox/view.tsx +4 −4 Original line number Diff line number Diff line Loading @@ -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, { Loading Loading
CHANGES.md +20 −0 Original line number Diff line number Diff line Loading @@ -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 Loading Loading @@ -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 ------------- Loading
cli/inbox/view.tsx +4 −4 Original line number Diff line number Diff line Loading @@ -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, { Loading