69 Commits

Author SHA1 Message Date
Thomas Farstrike 5cd3d40440 Remove tests/base/* stuff to fix --ondevice tests 2026-03-25 16:51:10 +01:00
Thomas Farstrike cd95f55d02 DownloadManager: fix http, double chunk size for speed 2026-02-26 13:00:03 +01:00
Thomas Farstrike a4e167d0e6 Fix OSUpdate 2026-02-11 23:20:23 +01:00
Thomas Farstrike 0aded1d58e OSUpdate app: improve style in portrait mode 2026-02-11 22:12:31 +01:00
Thomas Farstrike 0d799394cf Increment versions 2026-02-10 22:42:10 +01:00
Thomas Farstrike fc250095d8 OSUpdate app: improve look on big displays 2026-02-01 07:47:42 +01:00
Thomas Farstrike f96500cec8 OSUpdate app: replace "force update" checkbox with improved button labels 2026-01-27 21:33:02 +01:00
Quasi Kili 488b92514f added icon redesigns for every app, including a standard usable app icon (now in launcher) 2026-01-26 18:28:28 +01:00
Thomas Farstrike a32a020e57 Replace 'magic' value 0 with semantic lv.PART.MAIN 2026-01-26 12:30:50 +01:00
Thomas Farstrike c2ae169638 Rename PackageManager to AppManager 2026-01-25 00:19:38 +01:00
Thomas Farstrike f772fc4b80 Add DeviceInfo and VersionInfo frameworks 2026-01-24 23:32:10 +01:00
Thomas Farstrike b8cc049e0e Increment version numbers 2026-01-24 23:00:31 +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 1a39a64979 OSUpdate: simplify 2026-01-21 13:32:51 +01:00
Thomas Farstrike 0accfa269f OSUpdate: eliminate requests library 2026-01-21 13:32:04 +01:00
Thomas Farstrike e986f8e56f Increment version numbers 2026-01-15 08:37:52 +01:00
Thomas Farstrike 89537246ab Simplify imports 2026-01-13 10:35:04 +01:00
Thomas Farstrike 7842ebb74f OSUpdate: make sure still foreground before showing update info 2026-01-13 01:13:02 +01:00
Thomas Farstrike 4ad4e1ed20 Refactor to simplify imports 2026-01-13 00:38:17 +01:00
Thomas Farstrike a3fc2b1638 OSUpdate: simplify thread safety 2026-01-04 21:41:25 +01:00
Thomas Farstrike b62e115613 DownloadManager cleanups 2025-12-24 14:23:10 +01:00
Thomas Farstrike 13747b8a65 OSUpdate app: fix resume logic 2025-12-24 13:48:32 +01:00
Thomas Farstrike 3135230c57 OSUpdate app: fix resume logic 2025-12-24 12:48:22 +01:00
Thomas Farstrike a4391d76ad OSupdate: add more network error handling 2025-12-24 12:13:45 +01:00