mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-19 03:26:28 +00:00
* feat: new apply --force * chore: update chromium version * feat: chromium 145 updated patches * fix: disable series patches for nwo * chore: bump offset + version --------- Co-authored-by: Nikhil <shadowfax@mac.local.meter>
28 lines
864 B
Python
Generated
28 lines
864 B
Python
Generated
"""
|
|
Apply module - Apply patches to Chromium source.
|
|
|
|
Provides commands for applying patches:
|
|
- apply_all: Apply all patches from patches directory
|
|
- apply_feature: Apply patches for a specific feature
|
|
- apply_patch: Apply patch for a single file
|
|
- apply_changed: Apply patches changed in specific commits
|
|
"""
|
|
|
|
from .apply_all import apply_all_patches, ApplyAllModule
|
|
from .apply_feature import apply_feature_patches, ApplyFeatureModule
|
|
from .apply_patch import apply_single_file_patch
|
|
from .apply_changed import apply_changed_patches, ApplyChangedModule
|
|
from .apply_force import apply_all_force, ApplyForceModule
|
|
|
|
__all__ = [
|
|
"apply_all_patches",
|
|
"ApplyAllModule",
|
|
"apply_feature_patches",
|
|
"ApplyFeatureModule",
|
|
"apply_single_file_patch",
|
|
"apply_changed_patches",
|
|
"ApplyChangedModule",
|
|
"apply_all_force",
|
|
"ApplyForceModule",
|
|
]
|