8000 Releases · avitorio/outstatic · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: avitorio/outstatic

v2.0.8

16 Jun 19:44
83264d3
Compare
Choose a tag to compare
  • #303 - Improves and adds Math examples

v2.0.7

13 Jun 18:00
Compare
Choose a tag to compare

2.0.7

Patch Changes

v2.0.6

29 May 13:02
Compare
Choose a tag to compare

2.0.6

Patch Changes

v2.0.5

05 May 21:08
Compare
Choose a tag to compare

2.0.5

Patch Changes

  • 6310e2e: fix: save button disabled on change

v2.0.4

05 May 20:52
Compare
Choose a tag to compare

2.0.4

Patch Changes

  • 9797239: Add support for math expressions
  • 7c875d2: Fix Document Settings' Image component not triggering setHasChanges
  • 36f7b88: Fix weird shadcn dialog animation

v2.0.3

27 Mar 15:50
Compare
Choose a tag to compare

2.0.3

Patch Changes

  • c7a049e: Adds correct peer dependencies for v2.

v2.0.2

13 Mar 19:11
Compare
Choose a tag to compare

What's Changed

  • Fix broken img loading

Full Changelog: v2.0.1...v2.0.2

v2.0.1

12 Mar 19:35
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.0.0...v2.0.1

v2.0.0

12 Mar 18:28
Compare
Choose a tag to compare

2.0.0

Major Changes

  • 13c4309: Outstatic v2.0 offers support for Next.js 15. If you are using Next.js 14, please use v1.4.

    Styles

    We've added a few components which are styled using a outstatic css namespace (id).

    To make sure your dashboard works with the new styles, you should add the id to your app/(cms)/layout.tsx's body tag.

    /app/(cms)/layout.tsx

    export default function RootLayout({ children }) {
      return (
        <html lang="en">
          <body id="outstatic">{children}</body>
        </html>
      )
    }

    Media Files (No code changes needed)

    We are now using a Media Library page. You will have to define a Repo Media Path and a Public Media Path. You will be prompted to set up your paths either from the Media Library page or when trying to upload an image to a document.

    It should work the same as before, but with the Media Gallery you will be able to easily reuse images you've already uploaded to your repository.

  • f13ba35: 2.0.0 start

v1.4.9

25 Jun 16:49
Compare
Choose a tag to compare

What’s Changed

0