Update build version to match application version and enhance AI.PROMPT

- Changed build version from 1.2.11 to 1.0.10 in build.py to match application version
- Updated AI.PROMPT with instructions for updating build version in addition to runtime version
- Ensures consistent versioning across application runtime, build system, and packages
parent 2c1b5440
...@@ -16,4 +16,8 @@ When the user asks to update the version to a specific version number (e.g., "up ...@@ -16,4 +16,8 @@ When the user asks to update the version to a specific version number (e.g., "up
6. Update all occurrences found in the search results using apply_diff for precise changes. 6. Update all occurrences found in the search results using apply_diff for precise changes.
This ensures consistent version updates across all version references in the codebase, including user agent strings, application versions, and version constants. 7. Update the build/package version in build.py:
\ No newline at end of file - Locate the BUILD_CONFIG dictionary
- Update 'app_version': 'current_version' to 'app_version': 'target_version'
This ensures consistent version updates across all version references in the codebase, including user agent strings, application versions, version constants, and build/package metadata.
\ No newline at end of file
...@@ -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.2.11', 'app_version': '1.0.10',
'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',
......
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