diff --git a/plugins/msg-logging/LICENSE b/plugins/msg-logging/LICENSE new file mode 100644 index 0000000..5a3aae8 --- /dev/null +++ b/plugins/msg-logging/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 xfgryujk + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. \ No newline at end of file diff --git a/plugins/msg-logging/msg-logging.spec b/plugins/msg-logging/msg-logging.spec new file mode 100644 index 0000000..9243747 --- /dev/null +++ b/plugins/msg-logging/msg-logging.spec @@ -0,0 +1,84 @@ +# -*- mode: python ; coding: utf-8 -*- +import typing +import subprocess +import sys +if typing.TYPE_CHECKING: + import os + + from PyInstaller.building.api import COLLECT, EXE, PYZ + from PyInstaller.building.build_main import Analysis + + SPECPATH = '' + DISTPATH = '' + + +# exe文件名、打包目录名 +NAME = 'msg-logging' +# 模块搜索路径 +PYTHONPATH = [ + os.path.join(SPECPATH, '..', '..'), # 为了找到blcsdk +] +# 数据 +DATAS = [ + ('plugin.json', '.'), + ('LICENSE', '.'), + ('log/.gitkeep', 'log'), +] + +block_cipher = None + + +a = Analysis( + ['main.py'], + pathex=PYTHONPATH, + binaries=[], + datas=DATAS, + hiddenimports=[], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False, +) + +pyz = PYZ( + a.pure, + a.zipped_data, + cipher=block_cipher, +) + +exe = EXE( + pyz, + a.scripts, + [], + exclude_binaries=True, + name=NAME, + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=False, + console=True, + disable_windowed_traceback=False, + argv_emulation=False, + target_arch=None, + codesign_identity=None, + entitlements_file=None, +) + +coll = COLLECT( + exe, + a.binaries, + a.zipfiles, + a.datas, + strip=False, + upx=False, + upx_exclude=[], + name=NAME, +) + +# 打包 +print('Start to package') +subprocess.run([sys.executable, '-m', 'zipfile', '-c', NAME + '.zip', NAME], cwd=DISTPATH) diff --git a/plugins/msg-logging/plugin.json b/plugins/msg-logging/plugin.json new file mode 100644 index 0000000..9705ccb --- /dev/null +++ b/plugins/msg-logging/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "消息日志", + "version": "1.0.0", + "author": "xfgryujk", + "description": "把收到的消息记录到文件中", + "run": "msg-logging.exe", + "enabled": true +} diff --git a/plugins/text-to-speech/LICENSE b/plugins/text-to-speech/LICENSE new file mode 100644 index 0000000..5a3aae8 --- /dev/null +++ b/plugins/text-to-speech/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 xfgryujk + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. \ No newline at end of file diff --git a/plugins/text-to-speech/plugin.json b/plugins/text-to-speech/plugin.json new file mode 100644 index 0000000..943b3ce --- /dev/null +++ b/plugins/text-to-speech/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "文字转语音", + "version": "1.0.0", + "author": "xfgryujk", + "description": "用语音读出收到的消息", + "run": "text-to-speech.exe", + "enabled": true +} diff --git a/plugins/text-to-speech/text-to-speech.spec b/plugins/text-to-speech/text-to-speech.spec new file mode 100644 index 0000000..bd32c78 --- /dev/null +++ b/plugins/text-to-speech/text-to-speech.spec @@ -0,0 +1,85 @@ +# -*- mode: python ; coding: utf-8 -*- +import typing +import subprocess +import sys +if typing.TYPE_CHECKING: + import os + + from PyInstaller.building.api import COLLECT, EXE, PYZ + from PyInstaller.building.build_main import Analysis + + SPECPATH = '' + DISTPATH = '' + + +# exe文件名、打包目录名 +NAME = 'text-to-speech' +# 模块搜索路径 +PYTHONPATH = [ + os.path.join(SPECPATH, '..', '..'), # 为了找到blcsdk +] +# 数据 +DATAS = [ + ('plugin.json', '.'), + ('LICENSE', '.'), + ('data/config.example.ini', 'data'), + ('log/.gitkeep', 'log'), +] + +block_cipher = None + + +a = Analysis( + ['main.py'], + pathex=PYTHONPATH, + binaries=[], + datas=DATAS, + hiddenimports=[], + hookspath=[], + hooksconfig={}, + runtime_hooks=[], + excludes=[], + win_no_prefer_redirects=False, + win_private_assemblies=False, + cipher=block_cipher, + noarchive=False, +) + +pyz = PYZ( + a.pure, + a.zipped_data, + cipher=block_cipher, +) + +exe = EXE( + pyz, + a.scripts, + [], + exclude_binaries=True, + name=NAME, + debug=False, + bootloader_ignore_signals=False, + strip=False, + upx=False, + console=True, + disable_windowed_traceback=False, + argv_emulation=False, + target_arch=None, + codesign_identity=None, + entitlements_file=None, +) + +coll = COLLECT( + exe, + a.binaries, + a.zipfiles, + a.datas, + strip=False, + upx=False, + upx_exclude=[], + name=NAME, +) + +# 打包 +print('Start to package') +subprocess.run([sys.executable, '-m', 'zipfile', '-c', NAME + '.zip', NAME], cwd=DISTPATH)