Skip to content

Commit

Permalink
chg: Updated repository default URL.
Browse files Browse the repository at this point in the history
cedricbonhomme committed Mar 1, 2024
1 parent 0054c89 commit b592ce4
Showing 19 changed files with 21 additions and 24 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ Tutorial
steganalysis

You can have a look at the
`unit tests <https://git.sr.ht/~cedric/stegano/tree/master/tests>`_.
`unit tests <https://github.com/cedricbonhomme/Stegano/tree/master/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
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion docs/module.rst
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ Using Stegano as a Python module
================================

You can find more examples in the
`unit tests directory <https://git.sr.ht/~cedric/stegano/tree/master/tests>`_.
`unit tests directory <https://github.com/cedricbonhomme/Stegano/tree/master/tests>`_.

LSB method
----------
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"]
2 changes: 1 addition & 1 deletion stegano/exifHeader/exifHeader.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion stegano/lsb/generators.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion stegano/lsb/lsb.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion stegano/red/red.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion stegano/steganalysis/parity.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion stegano/steganalysis/statistics.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion stegano/tools.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion tests/test_exifHeader.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion tests/test_generators.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion tests/test_lsb.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion tests/test_red.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion tests/test_steganalysis.py
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion tests/test_tools.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b592ce4

Please sign in to comment.