Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MbetterLiveCD
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Mbetter
MbetterLiveCD
Commits
89916b99
Commit
89916b99
authored
Sep 05, 2025
by
Stefy Lanza (nextime / spora )
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update mbetterclient
parent
7875e818
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
62 deletions
+0
-62
MbetterClient
MbetterClient
+0
-0
MbetterClient
config/includes.chroot/usr/local/bin/MbetterClient
+0
-0
MBetterUSBCreator.exe
dist/MBetterUSBCreator.exe
+0
-0
usb_creator.spec
usb_creator.spec
+0
-62
No files found.
MbetterClient
View file @
89916b99
No preview for this file type
config/includes.chroot/usr/local/bin/MbetterClient
View file @
89916b99
No preview for this file type
dist/MBetterUSBCreator.exe
deleted
100644 → 0
View file @
7875e818
File deleted
usb_creator.spec
deleted
100644 → 0
View file @
7875e818
# -*- mode: python ; coding: utf-8 -*-
import
sys
import
os
block_cipher
=
None
# Determine if we're running on Windows
is_windows
=
sys
.
platform
.
startswith
(
'win'
)
a
=
Analysis
(
[
'usb_creator_gui.py'
],
pathex
=
[],
binaries
=
[],
datas
=
[
# Add any data files here if needed
],
hiddenimports
=
[
'PyQt6.QtCore'
,
'PyQt6.QtGui'
,
'PyQt6.QtWidgets'
,
],
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
,
a
.
binaries
,
a
.
zipfiles
,
a
.
datas
,
[],
name
=
'MBetterUSBCreator'
if
not
is_windows
else
'MBetterUSBCreator.exe'
,
debug
=
False
,
bootloader_ignore_signals
=
False
,
strip
=
False
,
upx
=
True
,
upx_exclude
=
[],
runtime_tmpdir
=
None
,
console
=
False
,
# No console window
disable_windowed_traceback
=
False
,
target_arch
=
None
,
codesign_identity
=
None
,
entitlements_file
=
None
,
icon
=
'icon.ico'
if
is_windows
and
os
.
path
.
exists
(
'icon.ico'
)
else
None
,
)
# Create app bundle on macOS
if
sys
.
platform
==
'darwin'
:
app
=
BUNDLE
(
exe
,
name
=
'MBetterUSBCreator.app'
,
icon
=
'icon.icns'
if
os
.
path
.
exists
(
'icon.icns'
)
else
None
,
bundle_identifier
=
'com.mbetter.usbcreator'
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment