From 7132e0ea2d017bed2550e9a3e01a0ba7826b8cd4 Mon Sep 17 00:00:00 2001 From: chewiebug Date: Sun, 10 Jan 2021 14:34:39 +0100 Subject: [PATCH] add Nikolay Khramchenkov to list of contributors --- LICENSE.txt | 2 +- pom.xml | 4 ++++ .../java/com/tagtraum/perf/gcviewer/view/AboutDialog.java | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 2685a952..1367045d 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,7 +1,7 @@ GCViewer helps you to analyse java garbage collection log files. Copyright (c) 2002-2008 tagtraum industries incorporated. -Copyright (c) 2011-2020 Joerg Wuethrich and contributors +Copyright (c) 2011-2021 Joerg Wuethrich and contributors LGPL ==== diff --git a/pom.xml b/pom.xml index 82ca0cc7..64dc9112 100644 --- a/pom.xml +++ b/pom.xml @@ -75,6 +75,10 @@ Johan Kaving https://github.com/jkaving/ + + Nikolay Khramchenkov + https://github.com/xnike + Maciej Kwiecien https://github.com/xylu diff --git a/src/main/java/com/tagtraum/perf/gcviewer/view/AboutDialog.java b/src/main/java/com/tagtraum/perf/gcviewer/view/AboutDialog.java index 55b6c55d..621a8db2 100644 --- a/src/main/java/com/tagtraum/perf/gcviewer/view/AboutDialog.java +++ b/src/main/java/com/tagtraum/perf/gcviewer/view/AboutDialog.java @@ -51,6 +51,7 @@ public class AboutDialog extends ScreenCenteredDialog implements ActionListener "Roland Illig", "Mary Sunitha Joseph", "Johan Kaving", + "Nikolay Khramchenkov", "Maciej Kwiecien", "Dennis Lawler", "Yanqi Li", @@ -92,7 +93,7 @@ public AboutDialog(Frame f) { versionPanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10)); versionPanel.setLayout(new GridBagLayout()); - JLabel copyright = new JLabel("\u00A9" + " 2011-2020: Joerg Wuethrich and contributors", JLabel.CENTER); + JLabel copyright = new JLabel("\u00A9" + " 2011-2021: Joerg Wuethrich and contributors", JLabel.CENTER); JLabel contributorsLabel = new JLabel("contributors (alphabetically ordered):", JLabel.CENTER); contributorsLabel.setForeground(Color.GRAY);