From abd0e42c8494822a4d48ccdb6f3d69f73d973b57 Mon Sep 17 00:00:00 2001 From: Querz Date: Fri, 22 Jan 2021 12:54:25 +0100 Subject: [PATCH] update copyright for 2021 --- LICENSE | 2 +- src/main/java/net/querz/mcaselector/ui/dialog/AboutDialog.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index ef2e5caa..f3820642 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 - 2020 Querz +Copyright (c) 2018 - 2021 Querz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/main/java/net/querz/mcaselector/ui/dialog/AboutDialog.java b/src/main/java/net/querz/mcaselector/ui/dialog/AboutDialog.java index a8935793..95cb4dc2 100644 --- a/src/main/java/net/querz/mcaselector/ui/dialog/AboutDialog.java +++ b/src/main/java/net/querz/mcaselector/ui/dialog/AboutDialog.java @@ -63,7 +63,7 @@ public AboutDialog(Stage primaryStage) { grid.add(UIFactory.label(Translation.DIALOG_ABOUT_LICENSE), 0, 1); grid.add(new Label("MIT"), 1, 1); grid.add(UIFactory.label(Translation.DIALOG_ABOUT_COPYRIGHT), 0, 2); - grid.add(new Label("\u00A9 2018 - 2020 Querz"), 1, 2); + grid.add(new Label("\u00A9 2018 - 2021 Querz"), 1, 2); grid.add(UIFactory.label(Translation.DIALOG_ABOUT_SOURCE), 0, 3); ImageView imgView = new ImageView(githubMark); imgView.setScaleX(0.5);