Skip to content

Commit 30e226c

Browse files
authored
feat: rename Roadmap to Changelog & add lottie-spec project (#28)
1 parent 1d97afe commit 30e226c

File tree

6 files changed

+27
-27
lines changed

6 files changed

+27
-27
lines changed

content/news/announcing-lottie-specification-1.0/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This marks a significant milestone in our efforts to establish the [Lottie File
1212

1313
The v1.0 specification lays the foundation for future advancements, with a clear roadmap guiding the ongoing development of the format. We invite creators, implementers, and the wider community to explore the specification, contribute to its evolution, and help shape the future of animation technology.
1414

15-
For more details on the v1.0 specification and what lies ahead, visit https://lottie.github.io/roadmap/.
15+
For more details on the v1.0 specification and what lies ahead, visit https://lottie.github.io/changelog/.
1616

1717
#### About Lottie v1.0
1818

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
---
2-
title: Roadmap
2+
title: Changelog
33
date: "2024-01-4T12:01:05.284Z"
4-
description: "Summary of released and upcoming feautres covered by the Lottie specification"
4+
description: "Summary of released features covered by the Lottie specification."
55
image: null
66
---
77

8+
For detailed information on the roadmap and development progress, please visit <a href="https://github.com/orgs/lottie/projects/4/views/1" target="_blank">github/projects/lottie-spec</a>
9+
10+
<hr>
11+
12+
### v1.0.1 (April 2025)
13+
14+
- adds definitions for pucker/bloat modifiers
15+
- clarifies usage of gradient and stroke-dashes
16+
- improves the definition of gradient properties
17+
18+
<hr>
19+
820
### v1.0 (September 2024)
921

1022
The v1.0 specification contains features that are commonly used by current players and that behave in a consistent way. Not all features are currently covered and missing features may be added in future releases.
@@ -20,17 +32,3 @@ Features in 1.0 release:
2032
- **Time Remap and Stretch**
2133
- **Masks and Mattes**
2234
- **Slots**
23-
24-
### v1.1 (H1 2025)
25-
26-
- Contents TBD
27-
28-
### Future Releases
29-
30-
- Player Profiles
31-
- Text Layers
32-
- Layer effects
33-
- Metadata
34-
- Blend modes
35-
- Expressions
36-
- Additional modifiers

src/components/footer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export const Footer = () => {
5252
</Nav.Link>
5353
</Nav.Item>
5454
<Nav.Item>
55-
<Nav.Link as={Link} to={ROUTES.roadmap.route} target="_blank">
56-
{ROUTES.roadmap.text}
55+
<Nav.Link as={Link} to={ROUTES.changelog.route} target="_blank">
56+
{ROUTES.changelog.text}
5757
</Nav.Link>
5858
</Nav.Item>
5959
<Nav.Item>

src/components/header.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ export const Header = () => {
6868
<Nav.Link
6969
as={Link}
7070
className="text-capitalize"
71-
to={ROUTES.roadmap.route}
71+
to={ROUTES.changelog.route}
7272
>
73-
{ROUTES.roadmap.text}
73+
{ROUTES.changelog.text}
7474
</Nav.Link>
7575
</Nav.Item>
7676
<Nav.Item>

src/constants/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ export const ROUTES = {
1616
route: "/news",
1717
text: "News",
1818
},
19-
roadmap: {
20-
route: "/roadmap",
21-
text: "Roadmap",
19+
changelog: {
20+
route: "/changelog",
21+
text: "Changelog",
2222
},
2323
contribute: {
2424
route: "/contribute",
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Col from "react-bootstrap/Col"
99
import Layout from "../components/layout"
1010
import Seo from "../components/seo"
1111

12-
const Roadmap = ({ data }) => {
12+
const Changelog = ({ data }) => {
1313
const { page } = data
1414
const { html, frontmatter } = page
1515

@@ -40,14 +40,16 @@ const Roadmap = ({ data }) => {
4040
)
4141
}
4242

43-
export default Roadmap
43+
export default Changelog
4444

4545
/**
4646
* Head export to define metadata for the page
4747
*
4848
* See: https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-head/
4949
*/
50-
export const Head = () => <Seo title="Roadmap" description="Lottie Roadmap" />
50+
export const Head = () => (
51+
<Seo title="changelog" description="Lottie changelog" />
52+
)
5153

5254
export const pageQuery = graphql`
5355
query ImplementationsPage($id: String!) {

0 commit comments

Comments
 (0)