Bump version to 1.0.15 (1.0r15)

- Updated main.py version to 1.0.15
- Updated build.py app_version to 1.0.15
- Updated MbetterClient.spec version to 1.0.15
- Updated mbetterclient/__init__.py __version__ to 1.0.15
- Updated mbetterclient/config/settings.py version to 1.0.15
- Updated mbetterclient/config/settings.py user_agent to MbetterClient/1.0r15
- Updated mbetterclient/web_dashboard/app.py app_version to 1.0.15
parent b485f12c
...@@ -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.14', 'app_version': '1.0.15',
'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',
......
...@@ -211,7 +211,7 @@ Examples: ...@@ -211,7 +211,7 @@ Examples:
parser.add_argument( parser.add_argument(
'--version', '--version',
action='version', action='version',
version='MbetterClient 1.0.14' version='MbetterClient 1.0.15'
) )
# Timer options # Timer options
......
...@@ -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.14" __version__ = "1.0.15"
__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"
......
...@@ -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.0r14" user_agent: str = "MbetterClient/1.0r15"
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.14" version: str = "1.0.15"
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
......
...@@ -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.14', 'app_version': '1.0.15',
'current_time': time.time(), '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