From f37a21f79230f81495416b14baa702a272db8ae7 Mon Sep 17 00:00:00 2001 From: RomainFT Date: Sun, 1 Jan 2023 01:04:55 +0100 Subject: [PATCH] copyright 2023 --- data/com.github.maoschanz.drawing.appdata.xml.in | 2 +- help/C/index.page | 2 +- po/fr.po | 2 +- src/drawing.in | 2 +- src/image.py | 2 +- src/main.py | 5 +++-- src/message_dialog.py | 2 +- src/new_image_dialog.py | 2 +- src/options_manager.py | 2 +- src/optionsbars/abstract_optionsbar.py | 2 +- src/optionsbars/classic/optionsbar_classic.py | 2 +- src/optionsbars/classic/optionsbar_color_popover.py | 2 +- src/optionsbars/selection/optionsbar_selection.py | 2 +- src/optionsbars/transform/optionsbar_crop.py | 2 +- src/optionsbars/transform/optionsbar_filters.py | 2 +- src/optionsbars/transform/optionsbar_rotate.py | 2 +- src/optionsbars/transform/optionsbar_scale.py | 2 +- src/optionsbars/transform/optionsbar_skew.py | 2 +- src/preferences.py | 2 +- src/printing_manager.py | 2 +- src/properties.py | 2 +- src/saving_manager.py | 2 +- src/selection_manager.py | 2 +- src/tools/abstract_tool.py | 2 +- src/tools/classic_tools/abstract_classic_tool.py | 2 +- src/tools/classic_tools/tool_arc.py | 2 +- src/tools/classic_tools/tool_brush.py | 2 +- src/tools/classic_tools/tool_eraser.py | 2 +- src/tools/classic_tools/tool_highlight.py | 2 +- src/tools/classic_tools/tool_line.py | 2 +- src/tools/classic_tools/tool_paint.py | 2 +- src/tools/classic_tools/tool_pencil.py | 2 +- src/tools/classic_tools/tool_picker.py | 2 +- src/tools/classic_tools/tool_points.py | 2 +- src/tools/classic_tools/tool_shape.py | 2 +- src/tools/classic_tools/tool_text.py | 2 +- src/tools/selection_tools/abstract_select.py | 2 +- src/tools/selection_tools/select_color.py | 2 +- src/tools/selection_tools/select_free.py | 2 +- src/tools/selection_tools/select_rect.py | 2 +- src/tools/transform_tools/abstract_transform_tool.py | 2 +- src/tools/transform_tools/tool_crop.py | 2 +- src/tools/transform_tools/tool_filters.py | 2 +- src/tools/transform_tools/tool_rotate.py | 2 +- src/tools/transform_tools/tool_scale.py | 2 +- src/tools/transform_tools/tool_skew.py | 2 +- src/window.py | 2 +- 47 files changed, 49 insertions(+), 48 deletions(-) diff --git a/data/com.github.maoschanz.drawing.appdata.xml.in b/data/com.github.maoschanz.drawing.appdata.xml.in index 37213264..37016578 100644 --- a/data/com.github.maoschanz.drawing.appdata.xml.in +++ b/data/com.github.maoschanz.drawing.appdata.xml.in @@ -1,5 +1,5 @@ - + com.github.maoschanz.drawing CC0-1.0 diff --git a/help/C/index.page b/help/C/index.page index 08d5c5cd..8541d2dc 100644 --- a/help/C/index.page +++ b/help/C/index.page @@ -7,7 +7,7 @@ Romain F. T. - 2018-2022 + 2018-2023 diff --git a/po/fr.po b/po/fr.po index 62e8aeb0..2ed2bdca 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,6 +1,6 @@ # French translation of com.github.maoschanz.drawing # This file is under the same GPLv3. -# Romain F. T. , 2018-2022. +# Romain F. T. , 2018-2023. # msgid "" msgstr "" diff --git a/src/drawing.in b/src/drawing.in index 96552730..1f180bcb 100755 --- a/src/drawing.in +++ b/src/drawing.in @@ -2,7 +2,7 @@ # drawing.in # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/image.py b/src/image.py index 9f4d81ce..6f4ff6b5 100644 --- a/src/image.py +++ b/src/image.py @@ -1,6 +1,6 @@ # image.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/main.py b/src/main.py index 5de9472d..a4cbb837 100644 --- a/src/main.py +++ b/src/main.py @@ -1,6 +1,6 @@ # main.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -102,6 +102,7 @@ def _build_actions(self): self.add_action_simple('help_whats_new', self.on_help_whats_new) self.add_action_simple('report-issue', self.on_report) + # we don't need an action for the shortcuts because #563 self.add_action_simple('about', self.on_about, ['F1']) self.add_action_simple('quit', self.on_quit, ['q']) @@ -281,7 +282,7 @@ def on_help_whats_new(self, *args): def on_about(self, *args): """Action callback, showing the "about" dialog.""" about_dialog = Gtk.AboutDialog(transient_for=self.props.active_window, - copyright="© 2018-2022 Romain F. T.", + copyright="© 2018-2023 Romain F. T.", authors=["Romain F. T.", "Fábio Colacio", "Alexis Lozano"], # To tranlators: "translate" this by a list of your names (one name # per line), they will be displayed in the "about" dialog diff --git a/src/message_dialog.py b/src/message_dialog.py index 8daff6ea..167f7b50 100644 --- a/src/message_dialog.py +++ b/src/message_dialog.py @@ -1,6 +1,6 @@ # message_dialog.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/new_image_dialog.py b/src/new_image_dialog.py index b3be001c..e15c2025 100644 --- a/src/new_image_dialog.py +++ b/src/new_image_dialog.py @@ -1,6 +1,6 @@ # new_image_dialog.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/options_manager.py b/src/options_manager.py index b65f0284..134acbe0 100644 --- a/src/options_manager.py +++ b/src/options_manager.py @@ -1,6 +1,6 @@ # options_manager.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/optionsbars/abstract_optionsbar.py b/src/optionsbars/abstract_optionsbar.py index 82d5fc60..03e30195 100644 --- a/src/optionsbars/abstract_optionsbar.py +++ b/src/optionsbars/abstract_optionsbar.py @@ -1,6 +1,6 @@ # abstract_optionsbar.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/optionsbars/classic/optionsbar_classic.py b/src/optionsbars/classic/optionsbar_classic.py index 8ee9cfe7..d415d039 100644 --- a/src/optionsbars/classic/optionsbar_classic.py +++ b/src/optionsbars/classic/optionsbar_classic.py @@ -1,6 +1,6 @@ # optionsbar_classic.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/optionsbars/classic/optionsbar_color_popover.py b/src/optionsbars/classic/optionsbar_color_popover.py index 9d2bf36e..25e62412 100644 --- a/src/optionsbars/classic/optionsbar_color_popover.py +++ b/src/optionsbars/classic/optionsbar_color_popover.py @@ -1,6 +1,6 @@ # optionsbar_color_popover.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/optionsbars/selection/optionsbar_selection.py b/src/optionsbars/selection/optionsbar_selection.py index e40db046..04e96804 100644 --- a/src/optionsbars/selection/optionsbar_selection.py +++ b/src/optionsbars/selection/optionsbar_selection.py @@ -1,6 +1,6 @@ # optionsbar_selection.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/optionsbars/transform/optionsbar_crop.py b/src/optionsbars/transform/optionsbar_crop.py index f497de1a..6369001e 100644 --- a/src/optionsbars/transform/optionsbar_crop.py +++ b/src/optionsbars/transform/optionsbar_crop.py @@ -1,6 +1,6 @@ # optionsbar_crop.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/optionsbars/transform/optionsbar_filters.py b/src/optionsbars/transform/optionsbar_filters.py index be485107..4b32cec8 100644 --- a/src/optionsbars/transform/optionsbar_filters.py +++ b/src/optionsbars/transform/optionsbar_filters.py @@ -1,6 +1,6 @@ # optionsbar_filters.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/optionsbars/transform/optionsbar_rotate.py b/src/optionsbars/transform/optionsbar_rotate.py index 3774f9b3..0bde6946 100644 --- a/src/optionsbars/transform/optionsbar_rotate.py +++ b/src/optionsbars/transform/optionsbar_rotate.py @@ -1,6 +1,6 @@ # optionsbar_rotate.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/optionsbars/transform/optionsbar_scale.py b/src/optionsbars/transform/optionsbar_scale.py index 94ac7d92..f719a1e0 100644 --- a/src/optionsbars/transform/optionsbar_scale.py +++ b/src/optionsbars/transform/optionsbar_scale.py @@ -1,6 +1,6 @@ # optionsbar_scale.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/optionsbars/transform/optionsbar_skew.py b/src/optionsbars/transform/optionsbar_skew.py index f4946c01..9513bc6b 100644 --- a/src/optionsbars/transform/optionsbar_skew.py +++ b/src/optionsbars/transform/optionsbar_skew.py @@ -1,6 +1,6 @@ # optionsbar_skew.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/preferences.py b/src/preferences.py index f3cfd456..50571ed8 100644 --- a/src/preferences.py +++ b/src/preferences.py @@ -1,6 +1,6 @@ # preferences.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/printing_manager.py b/src/printing_manager.py index 95605d5e..a501a854 100644 --- a/src/printing_manager.py +++ b/src/printing_manager.py @@ -1,6 +1,6 @@ # printing_manager.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/properties.py b/src/properties.py index b8ec7d14..1e129d7a 100644 --- a/src/properties.py +++ b/src/properties.py @@ -1,6 +1,6 @@ # properties.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/saving_manager.py b/src/saving_manager.py index ef1bdcd1..ef918434 100644 --- a/src/saving_manager.py +++ b/src/saving_manager.py @@ -1,6 +1,6 @@ # saving_manager.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/selection_manager.py b/src/selection_manager.py index 310814f6..d0d4e0d7 100644 --- a/src/selection_manager.py +++ b/src/selection_manager.py @@ -1,6 +1,6 @@ # selection_manager.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/abstract_tool.py b/src/tools/abstract_tool.py index dd6491c6..779237a1 100644 --- a/src/tools/abstract_tool.py +++ b/src/tools/abstract_tool.py @@ -1,6 +1,6 @@ # abstract_tool.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/abstract_classic_tool.py b/src/tools/classic_tools/abstract_classic_tool.py index c5be96b6..a582a685 100644 --- a/src/tools/classic_tools/abstract_classic_tool.py +++ b/src/tools/classic_tools/abstract_classic_tool.py @@ -1,6 +1,6 @@ # abstract_classic_tool.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/tool_arc.py b/src/tools/classic_tools/tool_arc.py index fb711b0f..ed298d94 100644 --- a/src/tools/classic_tools/tool_arc.py +++ b/src/tools/classic_tools/tool_arc.py @@ -1,6 +1,6 @@ # tool_arc.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/tool_brush.py b/src/tools/classic_tools/tool_brush.py index 196cfd56..67678b6c 100644 --- a/src/tools/classic_tools/tool_brush.py +++ b/src/tools/classic_tools/tool_brush.py @@ -1,6 +1,6 @@ # tool_brush.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/tool_eraser.py b/src/tools/classic_tools/tool_eraser.py index 85f5af21..17c4bde0 100644 --- a/src/tools/classic_tools/tool_eraser.py +++ b/src/tools/classic_tools/tool_eraser.py @@ -1,6 +1,6 @@ # tool_eraser.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/tool_highlight.py b/src/tools/classic_tools/tool_highlight.py index 09b7d9bd..f5733090 100644 --- a/src/tools/classic_tools/tool_highlight.py +++ b/src/tools/classic_tools/tool_highlight.py @@ -1,6 +1,6 @@ # tool_highlight.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/tool_line.py b/src/tools/classic_tools/tool_line.py index 8bfb3f95..b1f6a6f0 100644 --- a/src/tools/classic_tools/tool_line.py +++ b/src/tools/classic_tools/tool_line.py @@ -1,6 +1,6 @@ # tool_line.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/tool_paint.py b/src/tools/classic_tools/tool_paint.py index 0834df44..de75257a 100644 --- a/src/tools/classic_tools/tool_paint.py +++ b/src/tools/classic_tools/tool_paint.py @@ -1,6 +1,6 @@ # tool_paint.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/tool_pencil.py b/src/tools/classic_tools/tool_pencil.py index b2d0fc0b..d0100fe0 100644 --- a/src/tools/classic_tools/tool_pencil.py +++ b/src/tools/classic_tools/tool_pencil.py @@ -1,6 +1,6 @@ # tool_pencil.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/tool_picker.py b/src/tools/classic_tools/tool_picker.py index 52340fc0..99830507 100644 --- a/src/tools/classic_tools/tool_picker.py +++ b/src/tools/classic_tools/tool_picker.py @@ -1,6 +1,6 @@ # tool_picker.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/tool_points.py b/src/tools/classic_tools/tool_points.py index dc7cd843..d6bc18d7 100644 --- a/src/tools/classic_tools/tool_points.py +++ b/src/tools/classic_tools/tool_points.py @@ -1,6 +1,6 @@ # tool_points.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/tool_shape.py b/src/tools/classic_tools/tool_shape.py index 83648d8d..48d7c388 100644 --- a/src/tools/classic_tools/tool_shape.py +++ b/src/tools/classic_tools/tool_shape.py @@ -1,6 +1,6 @@ # tool_shape.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/classic_tools/tool_text.py b/src/tools/classic_tools/tool_text.py index 3acaa132..81a1acda 100644 --- a/src/tools/classic_tools/tool_text.py +++ b/src/tools/classic_tools/tool_text.py @@ -1,6 +1,6 @@ # tool_text.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/selection_tools/abstract_select.py b/src/tools/selection_tools/abstract_select.py index 1b13cbd7..e80badd0 100644 --- a/src/tools/selection_tools/abstract_select.py +++ b/src/tools/selection_tools/abstract_select.py @@ -1,6 +1,6 @@ # abstract_select.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/selection_tools/select_color.py b/src/tools/selection_tools/select_color.py index 234c1c76..234a0d9f 100644 --- a/src/tools/selection_tools/select_color.py +++ b/src/tools/selection_tools/select_color.py @@ -1,6 +1,6 @@ # select_color.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/selection_tools/select_free.py b/src/tools/selection_tools/select_free.py index cbef6f29..0ec44515 100644 --- a/src/tools/selection_tools/select_free.py +++ b/src/tools/selection_tools/select_free.py @@ -1,6 +1,6 @@ # select_free.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/selection_tools/select_rect.py b/src/tools/selection_tools/select_rect.py index 04190b29..d6c8c4f6 100644 --- a/src/tools/selection_tools/select_rect.py +++ b/src/tools/selection_tools/select_rect.py @@ -1,6 +1,6 @@ # select_rect.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/transform_tools/abstract_transform_tool.py b/src/tools/transform_tools/abstract_transform_tool.py index eb44b64d..32f32a46 100644 --- a/src/tools/transform_tools/abstract_transform_tool.py +++ b/src/tools/transform_tools/abstract_transform_tool.py @@ -1,6 +1,6 @@ # abstract_transform_tool.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/transform_tools/tool_crop.py b/src/tools/transform_tools/tool_crop.py index 86676d27..4c220857 100644 --- a/src/tools/transform_tools/tool_crop.py +++ b/src/tools/transform_tools/tool_crop.py @@ -1,6 +1,6 @@ # tool_crop.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/transform_tools/tool_filters.py b/src/tools/transform_tools/tool_filters.py index 9ff475d6..af46d1c7 100644 --- a/src/tools/transform_tools/tool_filters.py +++ b/src/tools/transform_tools/tool_filters.py @@ -1,6 +1,6 @@ # tool_filters.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/transform_tools/tool_rotate.py b/src/tools/transform_tools/tool_rotate.py index 57b8e200..49e5b63c 100644 --- a/src/tools/transform_tools/tool_rotate.py +++ b/src/tools/transform_tools/tool_rotate.py @@ -1,6 +1,6 @@ # tool_rotate.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/transform_tools/tool_scale.py b/src/tools/transform_tools/tool_scale.py index f80c8c29..196225b0 100644 --- a/src/tools/transform_tools/tool_scale.py +++ b/src/tools/transform_tools/tool_scale.py @@ -1,6 +1,6 @@ # tool_scale.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/tools/transform_tools/tool_skew.py b/src/tools/transform_tools/tool_skew.py index 2160be9b..cb089ee6 100644 --- a/src/tools/transform_tools/tool_skew.py +++ b/src/tools/transform_tools/tool_skew.py @@ -1,6 +1,6 @@ # tool_skew.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/window.py b/src/window.py index 0409a9af..ac7d36d8 100644 --- a/src/window.py +++ b/src/window.py @@ -1,6 +1,6 @@ # window.py # -# Copyright 2018-2022 Romain F. T. +# Copyright 2018-2023 Romain F. T. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by