Skip to content

Commit

Permalink
Update guides frontmatter info
Browse files Browse the repository at this point in the history
  • Loading branch information
omckeon committed Oct 11, 2024
1 parent f5601bf commit 1adf02e
Show file tree
Hide file tree
Showing 16 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion src/content/docs/guides/Animations/0-using-animations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Using Animations in SplashKit
description: Animations allow you to switch between different images to make a more visually dynamic entity on the screen. SplashKit allows you to create animations and use these together with sprite sheets to create these animations.
category: Guides
author: Various Authors
lastupdated: July 2024
lastupdated: October 2024
---

import { Tabs, TabItem } from "@astrojs/starlight/components";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Get Started with SplashKit Audio
description: Adding sound effects and music can really help bring an application to life. In this article see how to get started with Audio in SplashKit.
author: Various Authors
lastupdated: september 2024
lastupdated: October 2024
category: Guides
---

Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/guides/Camera/0-using-splashkit-camera.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: SplashKit Camera
description: See how the camera works, and how to draw to the different coordinate systems in your program.
author: Andrew Cain
lastupdated: September 2024
author: Andrew Cain and others
lastupdated: October 2024
category: Guides
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Drawing using Procedures
description: This article provide a quick overview of getting started with SplashKit. It includes how to create a window and do some basic drawing in order to create a small animation. This is a great place to start with SplashKit.
category: Tutorials
author: Andrew Cain
lastupdated: May 10 2024
author: Andrew Cain and others
lastupdated: October 2024
---

import { Tabs, TabItem } from "@astrojs/starlight/components";
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/guides/Input/0-reading-text.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Reading Text
description: See how to read text from the user, both from command line and graphical applications.
category: Tutorials
author: Andrew Cain and others
lastupdated: Sep 20, 2024
lastupdated: October 2024
---

import { Tabs, TabItem } from "@astrojs/starlight/components";
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/guides/Input/1-mouse-button-inputs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Using Mouse Inputs
description: Introductory Mouse Input functionality guide
category: Guides
author: Various Authors
lastupdated: September 2024
lastupdated: October 2024
---

import { Tabs, TabItem } from "@astrojs/starlight/components";
Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/guides/Interface/00-interface.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Getting Started Creating User Interfaces
description: This article will help you get started creating interfaces in SplashKit. In this one we'll see how to create and use basic elements, like buttons and sliders. In later the next ones, we'll move on to advanced layouting, and finally we'll see how we can style the interface to match our project.
category: Tutorials
author: Sean Boettger
lastupdated: September 19 2024
author: Sean Boettger and others
lastupdated: October 2024
---

**{frontmatter.description}**
Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/guides/Interface/01-interface-layouting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Layouts in User Interfaces
description: This article will help you understand how to customize the layouts of your interfaces in SplashKit.
category: Tutorials
author: Sean Boettger
lastupdated: September 20 2024
author: Sean Boettger and others
lastupdated: October 2024
---

**{frontmatter.description}**
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/guides/Interface/02-interface-styling.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Styling User Interfaces
description: This article will explain how we can style our SplashKit interfaces to match our projects.
category: Tutorials
author: Sean Boettger
author: Sean Boettger and others
lastupdated: October 2024
---

Expand Down
6 changes: 3 additions & 3 deletions src/content/docs/guides/JSON/0-json_intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Introduction to JSON in SplashKit
description: JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write, and for machines to parse and generate.
category: Guides
author: Jonathan Tynan
lastupdated: September 2024
author: Jonathan Tynan and others
lastupdated: October 2024
sidebar:
label: "Introduction to JSON"
---
Expand Down Expand Up @@ -183,7 +183,7 @@ skm python3 program.py
</TabItem>
</Tabs>

When we run this program, it should display the following output in the console:
When we run this program, it should display the following output in the console:

```plaintext
Game Title: My New Game
Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/guides/JSON/1-json_reading.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Reading JSON Data in SplashKit
description: After understanding the basics of JSON in SplashKit, this part of the tutorial focuses on how to read and parse JSON data. Reading JSON data is essential for game development tasks such as loading game settings, level configurations, or player data.
category: Guides
author: Jonathan Tynan and Yuyang Yang
lastupdated: Sep 14 2024
author: Jonathan Tynan and others
lastupdated: October 2024
sidebar:
label: "Reading JSON Data"
---
Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/guides/JSON/2-json_writing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Writing JSON Data in SplashKit
description: Having covered how to read JSON data in SplashKit, this part of the tutorial focuses on creating and writing data to JSON files. This functionality is crucial for features like saving game settings or player progress and information.
category: Guides
author: Jonathan Tynan and Yuyang Yang
lastupdated: Sep 20 2024
author: Jonathan Tynan and others
lastupdated: October 2024
sidebar:
label: "Writing JSON Data"
---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Getting Started With Servers
description: This guide is an introduction to using web servers
category: Guides
author: Andrew Cain and Isaac Wallis
lastupdated: Oct 1 2024
author: Andrew Cain, Isaac Wallis and others
lastupdated: October 2024
---

import { Tabs, TabItem } from "@astrojs/starlight/components";
Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/guides/Networking/1-routing-with-servers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Routing With Servers
description: This guide is an intruduction to delivering different content based on route requested
category: Guides
author: Isaac Wallis
lastupdated: Oct 1 2024
author: Isaac Wallis and others
lastupdated: October 2024
---

import { Tabs, TabItem } from "@astrojs/starlight/components";
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/guides/Networking/2-restful-api-call.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: How to make a RESTful API call using SplashKit
description: In the world of web services and microservices, many companies make their data available through a REST API in this document we want to use SplashKit to make a RESTful API call.
category: Guides
author: Cyrill Illi and Brianna Laird
author: Cyrill Illi and others
lastupdated: October 2024
---

Expand Down
4 changes: 2 additions & 2 deletions src/content/docs/guides/Utilities/0-useful-utilities.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
title: Useful Utilities
description: In this article, we discuss useful utilities that you can use to convert, check and manipulate common data types in SplashKit programs.
category: Guides
author: Richard Denton
lastupdated: 09 September 2024
author: Richard Denton and others
lastupdated: October 2024
---

import { Tabs, TabItem } from "@astrojs/starlight/components";
Expand Down

0 comments on commit 1adf02e

Please sign in to comment.