Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
matterhorn103 authored Sep 26, 2023
1 parent 38ad62d commit c265e79
Show file tree
Hide file tree
Showing 10 changed files with 1,898 additions and 0 deletions.
674 changes: 674 additions & 0 deletions LICENSE.md

Large diffs are not rendered by default.

357 changes: 357 additions & 0 deletions checknmr.py

Large diffs are not rendered by default.

Binary file added explorer.ico
Binary file not shown.
20 changes: 20 additions & 0 deletions groups.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"fer": "fernandez",
"gar": "garcia",
"gil": "gilmour",
"glo": "glorius",
"nae": "naesborg",
"rav": "ravoo",
"stu": "studer",
"other": {
"ac": "ac",
"biochemie": "biochemie",
"extern": "extern",
"ipc": "ipc",
"kb": "kb",
"meet": "meet",
"nmr": "nmr",
"nuk": "nuk",
"pharmazie": "pharmazie"
}
}
3 changes: 3 additions & 0 deletions mora_path.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
//mora/nmr
/Volumes/nmr
overwrite this line with the mount point on Linux
773 changes: 773 additions & 0 deletions mora_the_explorer.py

Large diffs are not rendered by default.

57 changes: 57 additions & 0 deletions mora_the_explorer.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# -*- mode: python ; coding: utf-8 -*-


block_cipher = None


a = Analysis(
['mora_the_explorer.py'],
pathex=[],
binaries=[],
datas=[('LICENSE.md', '.'), ('README.md', '.'), ('explorer.ico', '.'), ('requirements.txt', '.'), ('update_path.txt', '.'), ('mora_path.txt', '.'), ('version.txt', '.'), ('groups.json', '.')],
hiddenimports=['plyer.platforms.win.notification', 'plyer.platforms.macosx.notification', 'plyer.platforms.linux.notification'],
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='mora_the_explorer',
icon='explorer.ico',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
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='mora_the_explorer',
)
app = BUNDLE(
coll,
name='mora_the_explorer.app',
icon='explorer.ico',
bundle_identifier=None,
)
8 changes: 8 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
darkdetect>=0.8.0
platformdirs>=3.2.0
plyer>=2.1.0
Pillow>=9.2.0
PySide6>=6.4.2
PySide6-Addons>=6.4.2
PySide6-Essentials>=6.4.2
shiboken6>=6.4.2
1 change: 1 addition & 0 deletions update_path.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//mora/nmr/mnova/mora_the_explorer
5 changes: 5 additions & 0 deletions version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Mora the Explorer
Matt Milner
v1.5.3
License: GPLv3
Please report any bugs to [email protected]!

0 comments on commit c265e79

Please sign in to comment.