compiling info

This commit is contained in:
janis
2022-10-23 11:51:20 +02:00
parent 04509e4d9a
commit cfea0e2593
7 changed files with 67 additions and 1 deletions

7
.desktop Normal file
View File

@@ -0,0 +1,7 @@
[Desktop Entry]
Type=Application
Name=FSR Image & Video Upscaler
Comment=Upscale your videos and images with FSR
Path=/opt/fsrimageupscaler
Exec=/opt/fsrimageupscaler/fsrimagevideoupscaler
Icon=fsrimageupscaler

BIN
dev/logo.xcf Normal file

Binary file not shown.

View File

@@ -7,7 +7,6 @@
# #
########################################################### ###########################################################
import sys import sys
from gi.repository import Gtk
import gi import gi
import bin.handler import bin.handler
import multiprocessing import multiprocessing
@@ -18,6 +17,9 @@ arg = bin.arg_assembly.ArgAssembly()
checks = bin.checks.Checks() checks = bin.checks.Checks()
handler = bin.handler.Handler() handler = bin.handler.Handler()
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk
class ErrorDialogFileMissing(Gtk.Dialog): class ErrorDialogFileMissing(Gtk.Dialog):
def __init__(self, parent): def __init__(self, parent):
super().__init__(title="Error", transient_for=parent, flags=0) super().__init__(title="Error", transient_for=parent, flags=0)

View File

@@ -0,0 +1,50 @@
# -*- mode: python ; coding: utf-8 -*-
block_cipher = None
a = Analysis(
['fsrimagevideoupscaler.py'],
pathex=[],
binaries=[],
datas=[('config', 'config')],
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='FSR Image & Video Upscaler',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
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=True,
upx_exclude=[],
name='fsrimagevideoupscaler',
)

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -0,0 +1,7 @@
[Desktop Entry]
Type=Application
Name=FSR Image & Video Upscaler
Comment=Upscale your videos and images with FSR
Path=/opt/fsrimageupscaler
Exec=/opt/fsrimageupscaler/FSR\ Image\ \&\ Video\ Upscaler
Icon=fsrimageupscaler

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB