Skip to content

Add missing author entry for introduction to JavaFX animations #108

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions app/data/authors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,14 @@
Marit is a Software Developer, a Java Champion and works as a Developer Advocate at JetBrains.
She speaks at international conferences (including JavaZone, Devoxx, Voxxed Days, JSpring, JFall, JFokus and GOTO), local JUGs, podcasts and webinars,
and has contributed to the book “97 Things Every Java Programmer Should Know” (O’Reilly Media).

- name: Connor Schweighöfer
email: squidxtv@gmail.com
photo_url: https://squidxtv.me/img/Connor.png
github: SquidXTV
twitter: SquidXTV
website: https://squidxtv.me/
description: |
Connor is a Java Developer and high school student from Germany with four years of programming experience.
He is a top helper and community lead in Together Java, one of the largest Java communities on Discord, with over 30,000 users.
Connor has worked on various Java projects, including Discord bots, Minecraft plugins and JavaFX applications.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ layout: learn/tutorial.html
subheader_select: tutorials
main_css_id: learn
description: "Learn to create advanced JavaFX animations"
last_update: 2024-05-22
last_update: 2024-05-31
author: ["ConnorSchweighöfer"]
---
<br>

The [javafx.animation](javafxdoc:AnimationPackageSummary) package offers a simple framework for creating animations and transitions in a JavaFX application.
It operates on the principle of [`WritableValue<T>`](javafxdoc:WritableValue), which is used across JavaFX. `WritableValue<T>` is an interface that wraps a value that can be read and set.
Expand Down