remove hyphen from name
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -93,7 +93,7 @@ jobs:
|
||||
run: |
|
||||
make build-macos
|
||||
brew install create-dmg
|
||||
create-dmg --volname "Gotify Tray" --app-drop-link 0 0 --no-internet-enable "gotify-tray.dmg" "./dist/Gotify-Tray.app"
|
||||
create-dmg --volname "Gotify Tray" --app-drop-link 0 0 --no-internet-enable "gotify-tray.dmg" "./dist/Gotify Tray.app"
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
||||
2
.github/workflows/develop.yml
vendored
2
.github/workflows/develop.yml
vendored
@@ -74,7 +74,7 @@ jobs:
|
||||
run: |
|
||||
make build-macos
|
||||
brew install create-dmg
|
||||
create-dmg --volname "Gotify Tray" --app-drop-link 0 0 --no-internet-enable "gotify-tray.dmg" "./dist/Gotify-Tray.app"
|
||||
create-dmg --volname "Gotify Tray" --app-drop-link 0 0 --no-internet-enable "gotify-tray.dmg" "./dist/Gotify Tray.app"
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
||||
2
Makefile
2
Makefile
@@ -11,7 +11,7 @@ build-macos: clean
|
||||
pip install -r requirements.txt
|
||||
pip install pyinstaller
|
||||
pip install Pillow
|
||||
pyinstaller gotify-tray-macos.spec
|
||||
pyinstaller gotify-tray.spec
|
||||
|
||||
install: build
|
||||
sudo dpkg -i dist/gotify-tray_amd64.deb
|
||||
|
||||
@@ -70,7 +70,7 @@ An executable is created at `dist/gotify-tray/`.
|
||||
|
||||
```
|
||||
$ pip install pyinstaller Pillow
|
||||
$ pyinstaller gotify-tray-macos.spec
|
||||
$ pyinstaller gotify-tray.spec
|
||||
```
|
||||
|
||||
### Inno setup (Windows)
|
||||
|
||||
2
debian/DEBIAN/control
vendored
2
debian/DEBIAN/control
vendored
@@ -2,5 +2,5 @@ Package: gotify-tray
|
||||
Version: 0.1.14
|
||||
Architecture: amd64
|
||||
Maintainer: k.dries@protonmail.com
|
||||
Description: gotify-tray
|
||||
Description: Gotify Tray
|
||||
A tray notification application for receiving messages from a Gotify server.
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[Desktop Entry]
|
||||
Name=gotify-tray
|
||||
Name=Gotify Tray
|
||||
Comment=A tray notification application for receiving messages from a Gotify server.
|
||||
Path=/usr/lib/gotify-tray
|
||||
Exec=/usr/lib/gotify-tray/gotify-tray
|
||||
|
||||
@@ -1,41 +0,0 @@
|
||||
# -*- mode: python -*-
|
||||
|
||||
block_cipher = None
|
||||
|
||||
a = Analysis(['gotify_tray/__main__.py'],
|
||||
pathex=[os.getcwd()],
|
||||
binaries=[],
|
||||
datas=[('gotify_tray/gui/images', 'gotify_tray/gui/images')],
|
||||
hiddenimports=[],
|
||||
hookspath=[],
|
||||
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='gotify-tray',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
console=False,
|
||||
version='version.py',
|
||||
icon='logo.ico')
|
||||
coll = COLLECT(exe,
|
||||
a.binaries,
|
||||
a.zipfiles,
|
||||
a.datas,
|
||||
strip=False,
|
||||
upx=True,
|
||||
name='gotify-tray')
|
||||
app = BUNDLE(coll,
|
||||
name='Gotify-Tray.app',
|
||||
icon='logo.ico',
|
||||
bundle_identifier=None)
|
||||
@@ -1,5 +1,7 @@
|
||||
# -*- mode: python -*-
|
||||
|
||||
import platform
|
||||
|
||||
block_cipher = None
|
||||
|
||||
a = Analysis(['gotify_tray/__main__.py'],
|
||||
@@ -35,3 +37,9 @@ coll = COLLECT(exe,
|
||||
strip=False,
|
||||
upx=True,
|
||||
name='gotify-tray')
|
||||
|
||||
if platform.system() == "Darwin":
|
||||
app = BUNDLE(coll,
|
||||
name='Gotify Tray.app',
|
||||
icon='logo.ico',
|
||||
bundle_identifier=None)
|
||||
|
||||
Reference in New Issue
Block a user