mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-06-29 22:16:13 +02:00
Update copyright notices for 2023 (#1660)
* update copyright notice for 2023 * standardize whitespace after copyright notice
This commit is contained in:
parent
9274ab16ed
commit
8da6029624
110 changed files with 122 additions and 111 deletions
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import contextlib
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import datetime
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import codecs
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import datetime
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
try:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import sys
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import argparse
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import re
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
"""
|
||||
|
@ -14,6 +14,7 @@ run.
|
|||
Also, please note that all (non-builtin) imports should be scoped to each function to
|
||||
avoid any possible overhead for these standalone commands.
|
||||
"""
|
||||
|
||||
import argparse
|
||||
import logging
|
||||
import platform
|
||||
|
@ -47,7 +48,7 @@ def preconfig_version(_):
|
|||
output = f"""
|
||||
{__title__} {__version__}
|
||||
|
||||
Copyright © 2012-2022 jrnl contributors
|
||||
Copyright © 2012-2023 jrnl contributors
|
||||
|
||||
This is free software, and you are welcome to redistribute it under certain
|
||||
conditions; for details, see: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import argparse
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import logging
|
||||
from abc import ABC
|
||||
from abc import abstractmethod
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from .BaseEncryption import BaseEncryption
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import logging
|
||||
|
||||
from jrnl.encryption.BaseEncryption import BaseEncryption
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import hashlib
|
||||
import logging
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import base64
|
||||
import logging
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import logging
|
||||
|
||||
from jrnl.encryption.BaseEncryption import BaseEncryption
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from enum import Enum
|
||||
from importlib import import_module
|
||||
from typing import TYPE_CHECKING
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import contextlib
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import logging
|
||||
import sys
|
||||
from typing import TYPE_CHECKING
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import keyring
|
||||
|
||||
from jrnl.messages import Message
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from enum import Enum
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from enum import Enum
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from jrnl.messages import Message
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import shlex
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import textwrap
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
from jrnl.config import make_yaml_valid_dict
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import os.path
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from typing import Type
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from collections import Counter
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import sys
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import json
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import os
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import errno
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import os
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
from jrnl.messages import Message
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import datetime
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright © 2012-2022 jrnl contributors
|
||||
# Copyright © 2012-2023 jrnl contributors
|
||||
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
import logging
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue