Commit ec879339 authored by Your Name's avatar Your Name

Bump version from 10.0.29/10.0r29 to 1.0.30/1.0r30

Updated version in:
- mbetterclient/__init__.py (__version__)
- mbetterclient/config/settings.py (user_agent and version)
- mbetterclient/web_dashboard/app.py (app_version template global)
- main.py (--version argument)
- build.py (BUILD_CONFIG app_version)
parent 6d3020e3
......@@ -14,7 +14,7 @@ from typing import List, Dict, Any
# Build configuration
BUILD_CONFIG = {
'app_name': 'MbetterClient',
'app_version': '10.0.29',
'app_version': '1.0.30',
'description': 'Cross-platform multimedia client application',
'author': 'MBetter Team',
'entry_point': 'main.py',
......
......@@ -217,7 +217,7 @@ Examples:
parser.add_argument(
'--version',
action='version',
version='MbetterClient 10.0.29'
version='MbetterClient 1.0.30'
)
# Timer options
......
......@@ -4,7 +4,7 @@ MbetterClient - Cross-platform multimedia client application
A multi-threaded application with video playback, web dashboard, and REST API integration.
"""
__version__ = "10.0.29"
__version__ = "1.0.30"
__author__ = "MBetter Project"
__email__ = "dev@mbetter.net"
__description__ = "Cross-platform multimedia client with video overlay and web dashboard"
......
......@@ -262,7 +262,7 @@ class ApiConfig:
# Request settings
verify_ssl: bool = True
user_agent: str = "MbetterClient/10.0r29"
user_agent: str = "MbetterClient/1.0r30"
max_response_size_mb: int = 100
# Additional API client settings
......@@ -403,7 +403,7 @@ class AppSettings:
timer: TimerConfig = field(default_factory=TimerConfig)
# Application settings
version: str = "10.0.29"
version: str = "1.0.30"
debug_mode: bool = False
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
......
This diff is collapsed.
This diff is collapsed.
......@@ -230,7 +230,7 @@ class WebDashboard(ThreadedComponent):
def inject_globals():
return {
'app_name': 'MbetterClient',
'app_version': '10.0.29',
'app_version': '1.0.30',
'current_time': time.time(),
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment