From bfbaeb28b4e467b3af9f632e7747eeaaeeac63b2 Mon Sep 17 00:00:00 2001 From: Connor Schweighoefer Date: Fri, 31 May 2024 19:41:49 +0200 Subject: [PATCH] Add missing author entry --- app/data/authors.yaml | 11 +++++++++++ .../02_introduction-javafx-animation.md | 4 +++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/app/data/authors.yaml b/app/data/authors.yaml index 7f4665e..28acb67 100644 --- a/app/data/authors.yaml +++ b/app/data/authors.yaml @@ -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. diff --git a/app/pages/learn/01_tutorial/07_rich_client_apps/02_introduction-javafx-animation.md b/app/pages/learn/01_tutorial/07_rich_client_apps/02_introduction-javafx-animation.md index 4d39cf2..b147235 100644 --- a/app/pages/learn/01_tutorial/07_rich_client_apps/02_introduction-javafx-animation.md +++ b/app/pages/learn/01_tutorial/07_rich_client_apps/02_introduction-javafx-animation.md @@ -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"] --- +
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`](javafxdoc:WritableValue), which is used across JavaFX. `WritableValue` is an interface that wraps a value that can be read and set.