Commit Graph

34 Commits

Author SHA1 Message Date
Thomas Farstrike 1f9eee3a9d Rename AudioFlinger to AudioManager framework 2026-01-26 13:13:54 +01:00
Thomas Farstrike b23107ee14 Move ResetIntoBootloader activity to Settings app 2026-01-25 23:37:39 +01:00
Thomas Farstrike d7e49d04dc Add new BatteryManager framework 2026-01-25 23:22:53 +01:00
Thomas Farstrike 2a70e32375 Add InputManager framework 2026-01-25 21:17:20 +01:00
Thomas Farstrike c2ae169638 Rename PackageManager to AppManager 2026-01-25 00:19:38 +01:00
Thomas Farstrike 31dcfba683 Move mpos.apps functionality to PackageManager 2026-01-25 00:08:01 +01:00
Thomas Farstrike f772fc4b80 Add DeviceInfo and VersionInfo frameworks 2026-01-24 23:32:10 +01:00
Thomas Farstrike ba21d86bd7 Add TimeZone framework 2026-01-24 19:31:54 +01:00
Thomas Farstrike 5b5ac9c006 Add AppearanceManager 2026-01-23 22:26:18 +01:00
Thomas Farstrike 68b6ff3886 Cleanup WidgetAnimator framework 2026-01-23 21:37:53 +01:00
Thomas Farstrike 86d9c38902 Introduce DisplayMetrics framework 2026-01-23 20:46:36 +01:00
Thomas Farstrike 30b3764710 Harmonize frameworks
All frameworks now follow the same singleton class pattern with class methods:

AudioFlinger (already had this pattern)
DownloadManager (refactored)
ConnectivityManager (refactored)
CameraManager (refactored)
SensorManager (refactored)
Pattern Structure:

class FrameworkName:
    _initialized = False
    _instance_data = {}

    @classmethod
    def init(cls, *args, **kwargs):
        """Initialize the framework"""
        cls._initialized = True
        # initialization logic

    @classmethod
    def is_available(cls):
        """Check if framework is available"""
        return cls._initialized

    @classmethod
    def method_name(cls, *args):
        """Framework methods as class methods"""
        # implementation

2. Standardized Imports in __init__.py
All frameworks are now imported consistently as classes:

from .content.package_manager import PackageManager
from .config import SharedPreferences
from .net.connectivity_manager import ConnectivityManager
from .net.wifi_service import WifiService
from .audio.audioflinger import AudioFlinger
from .net.download_manager import DownloadManager
from .task_manager import TaskManager
from .camera_manager import CameraManager
from .sensor_manager import SensorManager
3. Updated Board Initialization Files
Fixed imports in all board files to use the new class-based pattern:

linux.py
fri3d_2024.py
fri3d_2026.py
waveshare_esp32_s3_touch_lcd_2.py
4. Updated UI Components
Fixed topmenu.py to import SensorManager as a class instead of a module.

5. Benefits of This Harmonization
 Consistency: All frameworks follow the same pattern - no more mixing of module imports and class imports  Simplicity: Single, clear way to use frameworks - always as classes with class methods  Functionality: All frameworks work identically - init(), is_available(), and other methods are consistent  Maintainability: New developers see one pattern to follow across all frameworks  No Breaking Changes: Apps continue to work without modification (Quasi apps, Lightning Piggy, etc.)

6. Testing
All tests pass successfully, confirming:

Framework initialization works correctly
Board hardware detection functions properly
UI components render without errors
No regressions in existing functionality
The harmonization is complete and production-ready. All frameworks now provide a unified, predictable interface that's easy to understand and extend.
2026-01-23 15:31:47 +01:00
Thomas Farstrike 22a16661ba Add display.get_dpi() and show in About app 2026-01-15 08:09:34 +01:00
Thomas Farstrike 3a5f7ca212 CameraManager: no need for locks 2026-01-14 19:31:47 +01:00
Thomas Farstrike d1ce153ca3 Add CameraManager framework 2026-01-14 19:16:19 +01:00
Thomas Farstrike fd548d45f1 AudioFlinger framework: simplify import, use singleton class 2026-01-13 23:48:52 +01:00
Thomas Farstrike b529431c2f ImageView app: simplify imports 2026-01-13 11:05:27 +01:00
Thomas Farstrike 128b9948f1 Simplify imports 2026-01-13 01:13:28 +01:00
Thomas Farstrike cc5f563875 Add testing imports 2026-01-13 01:02:03 +01:00
Thomas Farstrike 9242651d04 Add click_keyboard_button 2026-01-13 00:54:22 +01:00
Thomas Farstrike 4ad4e1ed20 Refactor to simplify imports 2026-01-13 00:38:17 +01:00
Thomas Farstrike a4687a9937 Use simpler imports 2026-01-12 23:07:15 +01:00
Thomas Farstrike 8cfb51b480 Settings app: use SettingsActivity framework 2026-01-12 10:52:39 +01:00
Thomas Farstrike 9b99243f27 AppStore app: move AppDetail to its own file and simplify 2026-01-10 19:35:55 +01:00
Thomas Farstrike 29d3e8a2b9 Promote setting_activity from app to framework 2026-01-10 08:45:45 +01:00