Loading CHANGES.md +32 −0 Original line number Diff line number Diff line Loading @@ -68,6 +68,22 @@ To be released. [#162]: https://github.com/dahlia/fedify/issues/162 Version 1.2.8 ------------- Released on November 23, 2024. - 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 Version 1.2.7 ------------- Loading Loading @@ -258,6 +274,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 +6 −2 Original line number Diff line number Diff line Loading @@ -139,14 +139,18 @@ const Log: FC<LogProps> = ( return ( <li class={"list-group-item " + listClass}> <div class="d-flex w-100 justify-content-between"> <p class="mb-1" style="white-space: pre;"> <p class="mb-1" style="white-space: pre-wrap; word-break: break-word;"> {message.map((m, i) => i % 2 == 0 ? m : <code>{typeof m === "string" ? m : Deno.inspect(m)}</code> )} </p> <time class="text-body-secondary" datetime={time.toString()}> <time class="text-body-secondary" datetime={time.toString()} style="flex-shrink: 0;" > <small>{time.toLocaleString()}</small> </time> </div> Loading cli/log.ts +2 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,7 @@ import { type LogRecord, type Sink, } from "@logtape/logtape"; import { AsyncLocalStorage } from "node:async_hooks"; export interface RecordingSink extends Sink { startRecording(): void; Loading Loading @@ -45,5 +46,6 @@ await configure({ sinks: ["console"], }, ], contextLocalStorage: new AsyncLocalStorage(), reset: true, }); Loading
CHANGES.md +32 −0 Original line number Diff line number Diff line Loading @@ -68,6 +68,22 @@ To be released. [#162]: https://github.com/dahlia/fedify/issues/162 Version 1.2.8 ------------- Released on November 23, 2024. - 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 Version 1.2.7 ------------- Loading Loading @@ -258,6 +274,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 +6 −2 Original line number Diff line number Diff line Loading @@ -139,14 +139,18 @@ const Log: FC<LogProps> = ( return ( <li class={"list-group-item " + listClass}> <div class="d-flex w-100 justify-content-between"> <p class="mb-1" style="white-space: pre;"> <p class="mb-1" style="white-space: pre-wrap; word-break: break-word;"> {message.map((m, i) => i % 2 == 0 ? m : <code>{typeof m === "string" ? m : Deno.inspect(m)}</code> )} </p> <time class="text-body-secondary" datetime={time.toString()}> <time class="text-body-secondary" datetime={time.toString()} style="flex-shrink: 0;" > <small>{time.toLocaleString()}</small> </time> </div> Loading
cli/log.ts +2 −0 Original line number Diff line number Diff line Loading @@ -4,6 +4,7 @@ import { type LogRecord, type Sink, } from "@logtape/logtape"; import { AsyncLocalStorage } from "node:async_hooks"; export interface RecordingSink extends Sink { startRecording(): void; Loading Loading @@ -45,5 +46,6 @@ await configure({ sinks: ["console"], }, ], contextLocalStorage: new AsyncLocalStorage(), reset: true, });