Skip to content

Releases: longbridgeapp/feishu-pages

v0.7.4

28 Oct 06:13
Compare
Choose a tag to compare

What's Changed

  • Improved cache use to avoid download images if the content was not changed. by @huacnlee in #22

Full Changelog: v0.7.3...v0.7.4

v0.7.3

28 Oct 05:39
Compare
Choose a tag to compare

What's Changed

  • Fix to disable Artboard image download cache to makesure it will update when the source is updated. by @huacnlee in #21

Full Changelog: v0.7.2...v0.7.3

v0.7.2

28 Oct 03:34
906d2d3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.1...v0.7.2

v0.7.1

28 Oct 02:53
Compare
Choose a tag to compare

What's Changed

  • Add -board suffix to whiteboard image filename. by @huacnlee in #19

Full Changelog: v0.7.0...v0.7.1

v0.7.0

24 Oct 13:59
Compare
Choose a tag to compare

What's Changed

NOTE: 请注意调整飞书开发中账号,新增 board:whiteboard:node:read 权限才可以正确下载画板图片。

New Contributors

Full Changelog: v0.6.11...v0.7.0

v0.6.11

04 Jun 10:37
Compare
Choose a tag to compare
  • Use HTML tag for text mark style. Fix #10
  • Fix to ensure to remove heading prefix newline. #11
  • Fix special indent level list render in a paragraph. #12

v0.6.10

04 Jun 10:37
Compare
Choose a tag to compare
  • Optimize imageDownload check, if cache file is 0 size, download again.

v0.6.9

11 Mar 08:14
Compare
Choose a tag to compare
  • 修复某些情况下图片附件下载可能会是 0 字节的问题,修正 streaming download 的细节。

v0.6.8

02 Feb 07:56
Compare
Choose a tag to compare

What's Changed

  • 修复 Markdown 的某些 HTML 输出没有按照父节点保持相同缩进的问题(避免 VitePress 这类严格检查的工具编译不过)。

    例如:

    Before

    - 这里是一个 List Item
        这里是 List 下的段落
        <div class="callout">
    <p>这里是 Callout 内容</p>
    </div>
    - 这里是 List Item 2

    After

    - 这里是一个 List Item
        这里是 List 下的段落
        <div class="callout">
        <p>这里是 Callout 内容</p>
        </div>
    - 这里是 List Item 2
  • 改进 Callout 组件的 HTML 生成结构,将 Emoji 放到外面,避免内容的 Markdown 渲染可能会被 Emoji 打乱的问题。

    新的 Callout 结构:

    <div class="callout callout-bg-1 callout-border-1">
    <div class="callout-emoji">😀</div>
    <p>这里是 Callout 的主题文字</p>
    </div>

v0.6.6

31 Jan 10:50
Compare
Choose a tag to compare

What's Changed

  • 改成 Inline Style 的导出细节,合并连续的加粗、倾斜等文字格式,避免 Markdown 渲染无法完全还原的问题。

    • Before: **He****llo** Markdown 渲染后会变成 He****llo
    • After: 将生成 **Hello**, 渲染后会是这样 Hello