diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b84b22..ed1fbb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -65,7 +65,7 @@ ### 0.9.5 (2019-10-27) * updated dependencies; -* home page of the project is now: https://git.sr.ht/~cedric/Stegano +* home page of the project is now: https://github.com/cedricbonhomme/Stegano ### 0.9.4 (2019-06-05) diff --git a/README.md b/README.md index c56a37d..c764a10 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![builds.sr.ht status](https://builds.sr.ht/~cedric/stegano.svg)](https://builds.sr.ht/~cedric/stegano) [![Workflow](https://github.com/cedricbonhomme/Stegano/workflows/Python%20application/badge.svg?style=flat-square)](https://github.com/cedricbonhomme/Stegano/actions?query=workflow%3A%22Python+application%22) -[Stegano](https://sr.ht/~cedric/stegano), a pure Python Steganography +[Stegano](https://github.com/cedricbonhomme/Stegano), a pure Python Steganography module. Steganography is the art and science of writing hidden messages in such a way @@ -12,9 +12,6 @@ existence of the message, a form of security through obscurity. Consequently, functions provided by Stegano only hide messages, without encryption. Steganography is often used with cryptography. -For reporting issues, visit the tracker here: -https://todo.sr.ht/~cedric/stegano - ## Installation diff --git a/docs/index.rst b/docs/index.rst index 2d55c22..250bafa 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -53,7 +53,7 @@ Tutorial steganalysis You can have a look at the -`unit tests `_. +`unit tests `_. License @@ -77,7 +77,7 @@ Contact .. _Python: https://www.python.org -.. _Stegano: https://sr.ht/~cedric/stegano +.. _Stegano: https://github.com/cedricbonhomme/Stegano .. _`Pillow`: https://pypi.python.org/pypi/Pillow .. _`piexif`: https://pypi.python.org/pypi/piexif .. _steganography: http://en.wikipedia.org/wiki/Steganography diff --git a/docs/installation.rst b/docs/installation.rst index ae3a371..202ab79 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -12,7 +12,7 @@ If you want to retrieve the source code (with the unit tests): .. code-block:: bash - $ git clone https://git.sr.ht/~cedric/stegano + $ git clone https://github.com/cedricbonhomme/Stegano .. image:: https://builds.sr.ht/~cedric/stegano.svg :target: https://builds.sr.ht/~cedric/stegano diff --git a/docs/module.rst b/docs/module.rst index e7e9797..25ef9da 100644 --- a/docs/module.rst +++ b/docs/module.rst @@ -2,7 +2,7 @@ Using Stegano as a Python module ================================ You can find more examples in the -`unit tests directory `_. +`unit tests directory `_. LSB method ---------- diff --git a/pyproject.toml b/pyproject.toml index 3c15baa..94d9ae6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,8 +9,8 @@ license = "GPL-3.0-or-later" readme = "README.md" -homepage = "https://sr.ht/~cedric/stegano" -repository = "https://git.sr.ht/~cedric/stegano" +homepage = "https://github.com/cedricbonhomme/Stegano" +repository = "https://github.com/cedricbonhomme/Stegano" documentation = "https://stegano.readthedocs.io" keywords = ["steganography", "security", "stegano"] diff --git a/stegano/exifHeader/exifHeader.py b/stegano/exifHeader/exifHeader.py index 044e507..9e41c5b 100644 --- a/stegano/exifHeader/exifHeader.py +++ b/stegano/exifHeader/exifHeader.py @@ -2,7 +2,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/stegano/lsb/generators.py b/stegano/lsb/generators.py index 803066a..d3e23f6 100644 --- a/stegano/lsb/generators.py +++ b/stegano/lsb/generators.py @@ -2,7 +2,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/stegano/lsb/lsb.py b/stegano/lsb/lsb.py index a023575..74837e3 100644 --- a/stegano/lsb/lsb.py +++ b/stegano/lsb/lsb.py @@ -2,7 +2,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/stegano/red/red.py b/stegano/red/red.py index c4280d0..1c7a7ef 100755 --- a/stegano/red/red.py +++ b/stegano/red/red.py @@ -2,7 +2,7 @@ # Stegano - Stéganô is a basic Python Steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/stegano/steganalysis/parity.py b/stegano/steganalysis/parity.py index e48d854..adc93c6 100644 --- a/stegano/steganalysis/parity.py +++ b/stegano/steganalysis/parity.py @@ -2,7 +2,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/stegano/steganalysis/statistics.py b/stegano/steganalysis/statistics.py index b2a63d2..ebb44fd 100644 --- a/stegano/steganalysis/statistics.py +++ b/stegano/steganalysis/statistics.py @@ -2,7 +2,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/stegano/tools.py b/stegano/tools.py index 205115a..a881983 100755 --- a/stegano/tools.py +++ b/stegano/tools.py @@ -2,7 +2,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/tests/test_exifHeader.py b/tests/test_exifHeader.py index b2b6969..cd15cd6 100644 --- a/tests/test_exifHeader.py +++ b/tests/test_exifHeader.py @@ -2,7 +2,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/tests/test_generators.py b/tests/test_generators.py index c619196..b3cd355 100644 --- a/tests/test_generators.py +++ b/tests/test_generators.py @@ -2,7 +2,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/tests/test_lsb.py b/tests/test_lsb.py index f6a1c75..54004ab 100644 --- a/tests/test_lsb.py +++ b/tests/test_lsb.py @@ -2,7 +2,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/tests/test_red.py b/tests/test_red.py index 1f946b4..a1e3db3 100644 --- a/tests/test_red.py +++ b/tests/test_red.py @@ -2,7 +2,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/tests/test_steganalysis.py b/tests/test_steganalysis.py index cfef736..e017e10 100644 --- a/tests/test_steganalysis.py +++ b/tests/test_steganalysis.py @@ -3,7 +3,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2017 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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/tests/test_tools.py b/tests/test_tools.py index 6055e1a..1eba04b 100644 --- a/tests/test_tools.py +++ b/tests/test_tools.py @@ -2,7 +2,7 @@ # Stegano - Stegano is a pure Python steganography module. # Copyright (C) 2010-2024 Cédric Bonhomme - https://www.cedricbonhomme.org # -# For more information : https://git.sr.ht/~cedric/stegano +# For more information : https://github.com/cedricbonhomme/Stegano # # 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