Skip to content

Commit

Permalink
LICENSE Update + 1.2 A40+ release
Browse files Browse the repository at this point in the history
  • Loading branch information
bitrate16 committed Nov 5, 2023
1 parent c52b15a commit 507b397
Show file tree
Hide file tree
Showing 6 changed files with 710 additions and 45 deletions.
695 changes: 674 additions & 21 deletions LICENSE

Large diffs are not rendered by default.

13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,17 +236,8 @@ View this [python notebook](https://github.com/bitrate16/peripage-python/blob/ma
* [Elias Weingärtner](https://github.com/eliasweingaertner) for initial work in reverse-engineering bluetooth protocol
* [bitrate16](https://github.com/bitrate16) for additional research and python module
* [henryleonard](https://github.com/henryleonard) for specs of A40 printer

## Disclaimer

**THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.**
* [anthony-foulfoin](https://github.com/anthony-foulfoin) for specs of A40+ printer

## License

[MIT License](https://github.com/bitrate16/peripage-python/blob/main/LICENSE)
[GPLv3 License](https://github.com/bitrate16/peripage-python/blob/main/LICENSE)
Binary file added dist/peripage-1.2.tar.gz
Binary file not shown.
25 changes: 18 additions & 7 deletions peripage/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
#!/usr/bin/env python3

# MIT License
# peripage-python - python library for peripage thermal printers
# Copyright (C) 2020-2023 bitrate16 (pegasko)
#
# 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
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Copyright (c) 2021-2023 bitrate16
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.


__title__ = 'Peripage buetooth printing utility'
__version__ = '1.1'
__version__ = '1.2'
__author__ = 'bitrate16'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) MIT 2021-2023 bitrate16'
__license__ = 'GPLv3'
__copyright__ = 'Copyright (c) GPLv3 2021-2023 bitrate16 (pegasko)'


import time
Expand Down
19 changes: 15 additions & 4 deletions peripage/__main__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
#!/usr/bin/env python3

# MIT License
# peripage-python - python library for peripage thermal printers
# Copyright (C) 2020-2023 bitrate16 (pegasko)
#
# 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
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Copyright (c) 2021 bitrate16
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.


def main():
import argparse
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
setup(
name = 'peripage',
packages = ['peripage'],
version = '1.1',
version = '1.2',
license='MIT',
description = 'Utility for printing on Peripage printers via bluetooth',
author = 'bitrate16',
author_email = 'bitrate16@gmail.com',
url = 'https://github.com/bitrate16/peripage-python',
download_url = 'https://github.com/bitrate16/peripage-python/archive/v1.1.tar.gz',
keywords = ['PERIPAGE', 'BLUETOOTH', 'THERMAL PRINTER', 'PRINTER'],
install_requires=[
'PyBluez>=0.23',
Expand Down

0 comments on commit 507b397

Please sign in to comment.