Update year in copyright notices --> to head
patch 3f2611ef2ec2a73f0327df45855e40f04ebb5955
Author: E. Bosch <presidev@AT@gmail.com>
Date: Tue Jul 7 23:15:14 CEST 2026
* Merge pull request #11 on github from Mirochill/fix-9-invalid-escape-warnings
Fix invalid escape warnings
patch 7827ddfc286acd03ba80f6dfef6efed92fc0457a
Author: E. Bosch <presidev@AT@gmail.com>
Date: Sun Jun 21 23:41:03 CEST 2026
* Update year in copyright notices
diff -rN -u old-irgramd/LICENSE new-irgramd/LICENSE
--- old-irgramd/LICENSE 2026-07-08 06:34:06.478709947 +0200
+++ new-irgramd/LICENSE 2026-07-08 06:34:06.486709939 +0200
@@ -1,7 +1,7 @@
MIT License
Copyright (c) 2019 Peter Bui <pbui@bx612.space>
-Copyright (c) 2020-2024 E. Bosch <presidev@AT@gmail.com>
+Copyright (c) 2020-2026 E. Bosch <presidev@AT@gmail.com>
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 -rN -u old-irgramd/README.md new-irgramd/README.md
--- old-irgramd/README.md 2026-07-08 06:34:06.482709943 +0200
+++ new-irgramd/README.md 2026-07-08 06:34:06.486709939 +0200
@@ -125,7 +125,7 @@
## License
Copyright (c) 2019 Peter Bui <pbui@bx612.space>
-Copyright (c) 2020-2024 E. Bosch <presidev@AT@gmail.com>
+Copyright (c) 2020-2026 E. Bosch <presidev@AT@gmail.com>
Use of this source code is governed by a MIT style license that
can be found in the LICENSE file included in this project.
diff -rN -u old-irgramd/emoji2emoticon.py new-irgramd/emoji2emoticon.py
--- old-irgramd/emoji2emoticon.py 2026-07-08 06:34:06.482709943 +0200
+++ new-irgramd/emoji2emoticon.py 2026-07-08 06:34:06.486709939 +0200
@@ -1,7 +1,7 @@
# irgramd: IRC-Telegram gateway
# emoji2emoticon.py: UTF-8 Emoji to ASCII emoticon replacement
#
-# (C) Copyright 2019,2023 E. Bosch <presidev@AT@gmail.com>
+# (C) Copyright 2019,2023,2025 E. Bosch <presidev@AT@gmail.com>
#
# Use of this source code is governed by a MIT style license that
# can be found in the LICENSE file included in this project.
@@ -14,7 +14,7 @@
'\U0001f44d': '"+1"',
'\U0001f44e': '"-1"',
'\U0001f44f': '"m_m"',
- '\U0001f525': '"\^^^/"',
+ '\U0001f525': r'"\^^^/"',
'\U0001f600': '":D"',
'\U0001f601': '"xD"',
'\U0001f602': '"x_D"',
diff -rN -u old-irgramd/exclam.py new-irgramd/exclam.py
--- old-irgramd/exclam.py 2026-07-08 06:34:06.482709943 +0200
+++ new-irgramd/exclam.py 2026-07-08 06:34:06.486709939 +0200
@@ -1,7 +1,7 @@
# irgramd: IRC-Telegram gateway
# exclam.py: IRC exclamation command handlers
#
-# Copyright (c) 2023, 2024 E. Bosch <presidev@AT@gmail.com>
+# Copyright (c) 2023-2025 E. Bosch <presidev@AT@gmail.com>
#
# Use of this source code is governed by a MIT style license that
# can be found in the LICENSE file included in this project.
diff -rN -u old-irgramd/include.py new-irgramd/include.py
--- old-irgramd/include.py 2026-07-08 06:34:06.482709943 +0200
+++ new-irgramd/include.py 2026-07-08 06:34:06.486709939 +0200
@@ -1,7 +1,7 @@
# irgramd: IRC-Telegram gateway
# include.py: Constants and other definitions to be included in other files
#
-# Copyright (c) 2020-2022 E. Bosch <presidev@AT@gmail.com>
+# Copyright (c) 2020-2024 E. Bosch <presidev@AT@gmail.com>
#
# Use of this source code is governed by a MIT style license that
# can be found in the LICENSE file included in this project.
diff -rN -u old-irgramd/irc.py new-irgramd/irc.py
--- old-irgramd/irc.py 2026-07-08 06:34:06.482709943 +0200
+++ new-irgramd/irc.py 2026-07-08 06:34:06.486709939 +0200
@@ -2,7 +2,7 @@
# irc.py: IRC server side implementation
#
# Copyright (c) 2019 Peter Bui <pbui@bx612.space>
-# Copyright (c) 2020-2023 E. Bosch <presidev@AT@gmail.com>
+# Copyright (c) 2020-2024 E. Bosch <presidev@AT@gmail.com>
#
# Use of this source code is governed by a MIT style license that
# can be found in the LICENSE file included in this project.
@@ -28,7 +28,7 @@
SRV = None
ALL_PARAMS = 16
-VALID_IRC_NICK_FIRST_CHARS = string.ascii_letters + '[]\`_^{|}'
+VALID_IRC_NICK_FIRST_CHARS = string.ascii_letters + r'[]\`_^{|}'
VALID_IRC_NICK_CHARS = VALID_IRC_NICK_FIRST_CHARS + string.digits + '-'
# IRC Regular Expressions
diff -rN -u old-irgramd/service.py new-irgramd/service.py
--- old-irgramd/service.py 2026-07-08 06:34:06.482709943 +0200
+++ new-irgramd/service.py 2026-07-08 06:34:06.490709935 +0200
@@ -1,7 +1,7 @@
# irgramd: IRC-Telegram gateway
# service.py: IRC service/control command handlers
#
-# Copyright (c) 2022,2023 E. Bosch <presidev@AT@gmail.com>
+# Copyright (c) 2022-2024 E. Bosch <presidev@AT@gmail.com>
#
# Use of this source code is governed by a MIT style license that
# can be found in the LICENSE file included in this project.
diff -rN -u old-irgramd/telegram.py new-irgramd/telegram.py
--- old-irgramd/telegram.py 2026-07-08 06:34:06.486709939 +0200
+++ new-irgramd/telegram.py 2026-07-08 06:34:06.490709935 +0200
@@ -2,7 +2,7 @@
# telegram.py: Interface to Telethon Telegram library
#
# Copyright (c) 2019 Peter Bui <pbui@bx612.space>
-# Copyright (c) 2020-2024 E. Bosch <presidev@AT@gmail.com>
+# Copyright (c) 2020-2026 E. Bosch <presidev@AT@gmail.com>
#
# Use of this source code is governed by a MIT style license that
# can be found in the LICENSE file included in this project.
diff -rN -u old-irgramd/utils.py new-irgramd/utils.py
--- old-irgramd/utils.py 2026-07-08 06:34:06.486709939 +0200
+++ new-irgramd/utils.py 2026-07-08 06:34:06.490709935 +0200
@@ -2,7 +2,7 @@
# utils.py: Helper functions
#
# Copyright (c) 2019 Peter Bui <pbui@bx612.space>
-# Copyright (c) 2020-2024 E. Bosch <presidev@AT@gmail.com>
+# Copyright (c) 2020-2026 E. Bosch <presidev@AT@gmail.com>
#
# Use of this source code is governed by a MIT style license that
# can be found in the LICENSE file included in this project.