Releases: avitorio/outstatic
v2.0.8
v2.0.7
v2.0.6
v2.0.5
v2.0.4
v2.0.3
v2.0.2
v2.0.1
What's Changed
- Fix broken link on fetching date doc by @hashimwarren in #278
New Contributors
- @hashimwarren made their first contribution in #278
Full Changelog: v2.0.0...v2.0.1
v2.0.0
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
'sbody
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