Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MBetterc
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
MBetterc
Commits
2fd8202f
Commit
2fd8202f
authored
May 14, 2026
by
Your Name
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump runtime version to 1.0.32
parent
f3f20822
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
778 additions
and
10 deletions
+778
-10
MbetterClient.spec
MbetterClient.spec
+45
-0
build.py
build.py
+2
-2
2026-05-09-audit-remediation.md
docs/superpowers/plans/2026-05-09-audit-remediation.md
+621
-0
main.py
main.py
+1
-1
__init__.py
mbetterclient/__init__.py
+2
-2
settings.py
mbetterclient/config/settings.py
+3
-3
app.py
mbetterclient/web_dashboard/app.py
+2
-2
MbetterClient-1.0.31-linux-x86_64-README.txt
packages/MbetterClient-1.0.31-linux-x86_64-README.txt
+43
-0
test_version_bump_1031.py
test_version_bump_1031.py
+59
-0
No files found.
MbetterClient.spec
0 → 100644
View file @
2fd8202f
This diff is collapsed.
Click to expand it.
build.py
View file @
2fd8202f
...
@@ -14,7 +14,7 @@ from typing import List, Dict, Any
...
@@ -14,7 +14,7 @@ from typing import List, Dict, Any
# Build configuration
# Build configuration
BUILD_CONFIG
=
{
BUILD_CONFIG
=
{
'app_name'
:
'MbetterClient'
,
'app_name'
:
'MbetterClient'
,
'app_version'
:
'1.0.3
0
'
,
'app_version'
:
'1.0.3
2
'
,
'description'
:
'Cross-platform multimedia client application'
,
'description'
:
'Cross-platform multimedia client application'
,
'author'
:
'MBetter Team'
,
'author'
:
'MBetter Team'
,
'entry_point'
:
'main.py'
,
'entry_point'
:
'main.py'
,
...
@@ -797,4 +797,4 @@ def main():
...
@@ -797,4 +797,4 @@ def main():
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
main
()
main
()
\ No newline at end of file
docs/superpowers/plans/2026-05-09-audit-remediation.md
0 → 100644
View file @
2fd8202f
This diff is collapsed.
Click to expand it.
main.py
View file @
2fd8202f
...
@@ -217,7 +217,7 @@ Examples:
...
@@ -217,7 +217,7 @@ Examples:
parser
.
add_argument
(
parser
.
add_argument
(
'--version'
,
'--version'
,
action
=
'version'
,
action
=
'version'
,
version
=
'MbetterClient 1.0.3
0
'
version
=
'MbetterClient 1.0.3
2
'
)
)
# Timer options
# Timer options
...
...
mbetterclient/__init__.py
View file @
2fd8202f
...
@@ -4,7 +4,7 @@ MbetterClient - Cross-platform multimedia client application
...
@@ -4,7 +4,7 @@ MbetterClient - Cross-platform multimedia client application
A multi-threaded application with video playback, web dashboard, and REST API integration.
A multi-threaded application with video playback, web dashboard, and REST API integration.
"""
"""
__version__
=
"1.0.3
0
"
__version__
=
"1.0.3
2
"
__author__
=
"MBetter Project"
__author__
=
"MBetter Project"
__email__
=
"dev@mbetter.net"
__email__
=
"dev@mbetter.net"
__description__
=
"Cross-platform multimedia client with video overlay and web dashboard"
__description__
=
"Cross-platform multimedia client with video overlay and web dashboard"
...
@@ -19,4 +19,4 @@ __all__ = [
...
@@ -19,4 +19,4 @@ __all__ = [
'__author__'
,
'__author__'
,
'__email__'
,
'__email__'
,
'__description__'
'__description__'
]
]
\ No newline at end of file
mbetterclient/config/settings.py
View file @
2fd8202f
...
@@ -262,7 +262,7 @@ class ApiConfig:
...
@@ -262,7 +262,7 @@ class ApiConfig:
# Request settings
# Request settings
verify_ssl
:
bool
=
True
verify_ssl
:
bool
=
True
user_agent
:
str
=
"MbetterClient/1.0r3
0
"
user_agent
:
str
=
"MbetterClient/1.0r3
2
"
max_response_size_mb
:
int
=
100
max_response_size_mb
:
int
=
100
# Additional API client settings
# Additional API client settings
...
@@ -403,7 +403,7 @@ class AppSettings:
...
@@ -403,7 +403,7 @@ class AppSettings:
timer
:
TimerConfig
=
field
(
default_factory
=
TimerConfig
)
timer
:
TimerConfig
=
field
(
default_factory
=
TimerConfig
)
# Application settings
# Application settings
version
:
str
=
"1.0.3
0
"
version
:
str
=
"1.0.3
2
"
debug_mode
:
bool
=
False
debug_mode
:
bool
=
False
dev_message
:
bool
=
False
# Enable debug mode showing only message bus messages
dev_message
:
bool
=
False
# Enable debug mode showing only message bus messages
debug_messages
:
bool
=
False
# Show all messages passing through the message bus on screen
debug_messages
:
bool
=
False
# Show all messages passing through the message bus on screen
...
@@ -605,4 +605,4 @@ class AppSettings:
...
@@ -605,4 +605,4 @@ class AppSettings:
(
project_root
/
"assets"
)
.
mkdir
(
exist_ok
=
True
)
(
project_root
/
"assets"
)
.
mkdir
(
exist_ok
=
True
)
(
project_root
/
"templates"
)
.
mkdir
(
exist_ok
=
True
)
(
project_root
/
"templates"
)
.
mkdir
(
exist_ok
=
True
)
(
project_root
/
"data"
)
.
mkdir
(
exist_ok
=
True
)
(
project_root
/
"data"
)
.
mkdir
(
exist_ok
=
True
)
(
project_root
/
"logs"
)
.
mkdir
(
exist_ok
=
True
)
(
project_root
/
"logs"
)
.
mkdir
(
exist_ok
=
True
)
\ No newline at end of file
mbetterclient/web_dashboard/app.py
View file @
2fd8202f
...
@@ -230,7 +230,7 @@ class WebDashboard(ThreadedComponent):
...
@@ -230,7 +230,7 @@ class WebDashboard(ThreadedComponent):
def
inject_globals
():
def
inject_globals
():
return
{
return
{
'app_name'
:
'MbetterClient'
,
'app_name'
:
'MbetterClient'
,
'app_version'
:
'1.0.3
0
'
,
'app_version'
:
'1.0.3
2
'
,
'current_time'
:
time
.
time
(),
'current_time'
:
time
.
time
(),
}
}
...
@@ -880,4 +880,4 @@ def create_app(db_manager: DatabaseManager, config_manager: ConfigManager,
...
@@ -880,4 +880,4 @@ def create_app(db_manager: DatabaseManager, config_manager: ConfigManager,
"""Factory function to create Flask app (for testing)"""
"""Factory function to create Flask app (for testing)"""
dashboard
=
WebDashboard
(
None
,
db_manager
,
config_manager
,
settings
)
dashboard
=
WebDashboard
(
None
,
db_manager
,
config_manager
,
settings
)
dashboard
.
initialize
()
dashboard
.
initialize
()
return
dashboard
.
app
return
dashboard
.
app
\ No newline at end of file
packages/MbetterClient-1.0.31-linux-x86_64-README.txt
0 → 100644
View file @
2fd8202f
# MbetterClient v1.0.32
Cross-platform multimedia client application
## Installation
1. Extract this package to your desired location
2. Run the executable file
3. The application will create necessary configuration files on first run
## System Requirements
- **Operating System**: Linux 6.12.15-amd64
- **Architecture**: x86_64
- **Memory**: 512 MB RAM minimum, 1 GB recommended
- **Disk Space**: 100 MB free space
## Configuration
The application stores its configuration and database in:
- **Windows**: `%APPDATA%\MbetterClient`
- **macOS**: `~/Library/Application Support/MbetterClient`
- **Linux**: `~/.config/MbetterClient`
## Web Interface
By default, the web interface is available at: http://localhost:5001
Default login credentials:
- Username: admin
- Password: admin
**Please change the default password after first login.**
## Support
For support and documentation, please visit: https://git.nexlab.net/mbetter/mbetterc
## Version Information
- Version: 1.0.32
- Build Date: sissy
- Platform: Linux-6.12.15-amd64-x86_64-with-glibc2.42
test_version_bump_1031.py
0 → 100644
View file @
2fd8202f
import
os
import
re
import
sys
from
pathlib
import
Path
sys
.
path
.
insert
(
0
,
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)))
VERSION_FILES
=
[
Path
(
'build.py'
),
Path
(
'main.py'
),
Path
(
'mbetterclient/__init__.py'
),
Path
(
'mbetterclient/config/settings.py'
),
Path
(
'mbetterclient/web_dashboard/app.py'
),
]
def
test_all_runtime_version_strings_are_bumped_to_1_0_32
():
missing
=
[]
stale
=
[]
for
path
in
VERSION_FILES
:
content
=
path
.
read_text
()
if
'1.0.32'
not
in
content
and
'1.0r32'
not
in
content
:
missing
.
append
(
str
(
path
))
if
'1.0.31'
in
content
or
'1.0r31'
in
content
:
stale
.
append
(
str
(
path
))
assert
not
missing
,
f
"missing 1.0.32/r32 in: {missing}"
assert
not
stale
,
f
"stale 1.0.31/r31 in: {stale}"
def
test_repo_has_no_active_1_0_31_or_1_0r31_runtime_strings
():
allowed_paths
=
{
'README.md'
,
'CHANGELOG.md'
,
'HEADLESS_STREAMING_IMPLEMENTATION.md'
,
'DOCUMENTATION.md'
,
'test_version_bump_1031.py'
,
}
hits
=
[]
for
path
in
Path
(
'.'
)
.
rglob
(
'*'
):
if
not
path
.
is_file
():
continue
if
path
.
suffix
not
in
{
'.py'
,
'.md'
,
'.txt'
,
'.js'
,
'.html'
}:
continue
if
str
(
path
)
in
allowed_paths
or
path
.
name
in
allowed_paths
:
continue
try
:
content
=
path
.
read_text
()
except
Exception
:
continue
if
re
.
search
(
r'1\.0\.31|1\.0r31'
,
content
):
hits
.
append
(
str
(
path
))
assert
not
hits
,
f
"unexpected active 1.0.31/r31 references: {hits}"
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