Skip to content

Commit

Permalink
Merge pull request #5 from lottie/review-announce
Browse files Browse the repository at this point in the history
First draft of specification review period announcment
  • Loading branch information
b-wils authored Aug 6, 2024
2 parents f580810 + c8498d9 commit 04249b3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions content/news/lottie-1.0-draft-review/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: Lottie Animation Community announces public review draft of Lottie v1.0 specification
date: "2024-08-06T12:01:01.284Z"
description: "The Lottie Animation Community (LAC), a Joint Development Foundation project, is pleased to announce the public review draft of the v1.0 Lottie JSON specification."
featuredImage: draft_proposal.png
---

### Lottie Animation Community announces public review draft of Lottie v1.0 specification

The Lottie Animation Community (LAC), a Joint Development Foundation project, is pleased to announce the public review draft of the v1.0 Lottie JSON specification. v1.0 will be the first major step in securing the [Lottie File Format](https://lottie.github.io/) as an open standard for efficient, scalable and cross-platform animated vector graphics.

The public review period for the Lottie v1.0 draft will be from August 6 to September 3, 2024. We request all significant changes be proposed by August 26 to allow for final review and publishing. Review the documentation [here](https://lottie.github.io/lottie-spec/) and validate your existing Lotties [here](https://lottie.github.io/lottie-spec/validator). Participate in the review by opening github issues for the spec [here](https://github.com/lottie/lottie-spec/issues).

#### About Lottie v1.0

Version 1.0 of the Lottie Animation Format is the result of the collaborative work of many Lottie stakeholders, since the forming of the Lottie Animation Community and working group. The goal of v1.0 is to include all well known, commonly implemented, documentable features, to establish a baseline for the format and pave the way for future iterations. Features that are not widely supported will not be in the 1.0 specification but may be added in a later revision. We envision implementers may want to declare a profile referencing the spec version, to allow for some variance in feature support while driving API consistency and schema reliability.

Partner with us on this significant milestone for Lottie!
9 changes: 2 additions & 7 deletions src/components/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { ROUTES } from "../constants/index.js"
import { Link, useStaticQuery, graphql } from "gatsby"

export const Header = () => {
const { site, allMarkdownRemark } = useStaticQuery(
const { site } = useStaticQuery(
graphql`
query {
site {
Expand All @@ -30,11 +30,6 @@ export const Header = () => {
`
)

const newsRoutePrefix = `/${ROUTES.news.route}`
const newsRoute =
(allMarkdownRemark.nodes || []).length === 1
? allMarkdownRemark.nodes[0].fields?.slug
: newsRoutePrefix
const { siteMetadata } = site
const { urls } = siteMetadata

Expand Down Expand Up @@ -76,7 +71,7 @@ export const Header = () => {
<Nav.Link
as={Link}
className="text-capitalize"
to={newsRoute || ""}
to={ROUTES.news.route}
>
{ROUTES.news.text}
</Nav.Link>
Expand Down

0 comments on commit 04249b3

Please sign in to comment.