diff --git a/.github/workflows/notify-website.yml b/.github/workflows/notify-website.yml new file mode 100644 index 0000000..b9f108c --- /dev/null +++ b/.github/workflows/notify-website.yml @@ -0,0 +1,71 @@ +# Webhook Handler for AlphaDroid-devices/OTA +# This file should be placed in the .github/workflows/ directory of the OTA repository + +name: Notify Website of Updates + +on: + push: + branches: [master, main] + paths: ['*.json'] + +jobs: + notify: + runs-on: ubuntu-latest + if: github.repository == 'AlphaDroid-devices/OTA' + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 2 # Need previous commit to compare changes + + - name: Get changed files + id: changes + run: | + # Get list of changed files in this push + CHANGED_FILES=$(git diff --name-only HEAD~1 HEAD) + echo "changed_files=$CHANGED_FILES" >> $GITHUB_OUTPUT + + # Check if any JSON files were changed + if echo "$CHANGED_FILES" | grep -q "\.json$"; then + echo "has_json_changes=true" >> $GITHUB_OUTPUT + echo "event_type=ota-device-update" >> $GITHUB_OUTPUT + echo "Found JSON file changes, will trigger device update" + else + echo "has_json_changes=false" >> $GITHUB_OUTPUT + echo "event_type=ota-update" >> $GITHUB_OUTPUT + echo "No JSON file changes detected" + fi + + # Log the changes for debugging + echo "Changed files:" + echo "$CHANGED_FILES" + + - name: Trigger website update + if: steps.changes.outputs.has_json_changes == 'true' + uses: peter-evans/repository-dispatch@v2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + repository: alphadroid-project/alphadroid-project.github.io + event-type: ${{ steps.changes.outputs.event_type }} + client-payload: | + { + "changed_files": "${{ steps.changes.outputs.changed_files }}", + "repository": "${{ github.repository }}", + "commit": "${{ github.sha }}", + "ref": "${{ github.ref }}", + "pusher": "${{ github.actor }}", + "timestamp": "${{ github.event.head_commit.timestamp }}", + "commit_message": "${{ github.event.head_commit.message }}", + "commit_url": "${{ github.event.head_commit.url }}" + } + + - name: Log notification result + run: | + if [[ "${{ steps.changes.outputs.has_json_changes }}" == "true" ]]; then + echo "✅ Successfully triggered website update" + echo "Event type: ${{ steps.changes.outputs.event_type }}" + echo "Repository: ${{ github.repository }}" + echo "Commit: ${{ github.sha }}" + else + echo "ℹ️ No JSON file changes detected, skipping webhook trigger" + fi diff --git a/akita_changelog.txt b/akita_changelog.txt deleted file mode 100644 index f4878c8..0000000 --- a/akita_changelog.txt +++ /dev/null @@ -1,976 +0,0 @@ -==================== - 02-23-2025 -==================== - - * vendor/alpha -dbbe9bc6 Update pif overlay -c22d3ca2 Optimize updater logic - -==================== - 02-22-2025 -==================== - - * frameworks/base -6948be020b94b [SQUASH] Integrate Pixel framework hooks and wrappers -d622f29c808b4 PixelPropsUtils: Update fingerprints to February 2025 release - - * packages/apps/AlphaSettings -c6c91c16 New Crowdin updates (#94) -2582c64e Cleanup unused strings - - * packages/apps/Glimpse -7e7ea6d Glimpse: Fix trashed SECURE_REVIEW items not getting removed from screen -dde8aa8 Glimpse: buildList for the win - - * packages/apps/Twelve -ae0a3ea Twelve: NowPlayingFragment: Fix shuffle and repeat marker being cut in half -af4cd4e Twelve: MediaRepositoryTree: Don't crash in case of error -8710915 Twelve: buildList for the win -6f40e59 Twelve: Add support for search queries -0713aed Twelve: Apply player setup after .build() -5e5d43a Twelve: Lyrics fragment -e822e83 Twelve: Add lyrics view -fc7c6c5 Twelve: SubsonicDataSource: Implement lyrics fetching -85bd87e Twelve: JellyfinDataSource: Implement lyrics fetching -27e846a Twelve: Add lyrics method -65c5974 Twelve: MainActivity: Move intent flow handing to the usual `loadData()` -f9fd41c Twelve: Stop using fitsSystemView=true on CoordinatorLayout -1d1424a Twelve: Set edge to edge and transparent navigation bar color attributes -22e2370 Twelve: Remove useless orientation attribute on CoordinatorLayout - - * vendor/alpha -6d92207a Rework `createjson.sh` (#65) -13f3e960 Update charger animation -fe6dbac1 Build charger animation -e4a0329e android: merge_dtbs: Respect miboard-id while merging -2c09be0c Update default wallpaper - -==================== - 02-21-2025 -==================== - - * frameworks/base -6351de5582baf Set animation scale to 0.75 - - * packages/apps/AlphaSettings -8a90fdc8 Remove 4G icon switch - - * packages/apps/Glimpse -a05d2fa Glimpse: Show warning regarding trash's auto-empty behavior - - * packages/apps/Settings -c269d741f976 Partially Revert "DynamicDenylistManager shall not exist" -8903d3175789 Settings: Update FaceEnroll ActivityDirector and Confirmation -3b5c0ca7ea24 Settings: Create face confirmation activity -6bbbef1c815f Settings: Create a ActivityDirector to optionally use SettingsGoogleFutureFaceEnroll -05ffe93e8dc4 [SQUASH] Settings changes for Pixel Framework -8b5fcc80a584 Revert "[Settings] Start SettingsDumpService to dump the db log after the db is" -078a9ad69e96 Disable SettingsDumpService -8f2bc0a3e870 Settings: Add missing animations from google -1dcf53457817 Settings: Add a toggle to force LTE_CA -4fe44aca3de6 Settings: Whitelist WRITE_DEVICE_CONFIG permission - -==================== - 02-20-2025 -==================== - - * device/qcom/sepolicy_vndr/sm8450 -0624d88e9 sepolicy: NFC: Label NXP NFC 2.0 HIDL - - * device/qcom/sepolicy_vndr/sm8550 -78af5575a sepolicy: NFC: Label NXP NFC 2.0 HIDL - - * packages/apps/AlphaSettings -feb1b2e6 Restore QS layout settings -1e36feaa Restore sensor block settings -c5255df5 Hide UDFPS settings if not supported -6e29bda4 New Crowdin updates (#93) - - * packages/apps/Aperture -0fd3ae9 Aperture: Switch to upstream zxing-cpp - - * packages/apps/Glimpse -2162911 Glimpse: Break as soon a valid media type is found - -==================== - 02-19-2025 -==================== - - * lineage/wiki -f2d6f3bf wiki: libvirt-qemu: VirtIO keyboard does not work on the boot menu - - * manifest -c5e76c0 Create alpha-15.1-pixel branch -8c1ba78 Track Backgrounds from Alpha - - * packages/apps/Backgrounds -859ec8a Backgrounds: add AlphaDroid wallpapers - - * packages/apps/Settings -cf3e20604cc7 Remove BETA tag - - * packages/apps/Updater -e613dc7 Updater: adapt to AlphaDroid - -==================== - 02-18-2025 -==================== - - * build/make -417fdce7b8 tools: Introduce AlphaDroid - Bringed back alpha-14 from [1] and adapted to our new props -6f9eb082b0 build: execute changelog generator script - - * packages/apps/Catapult -fb83201 Catapult: String improvements & fixes - - * packages/apps/Settings -f70d438bc3f7 settings styles: sync accent colors with frameworks/base - - * vendor/alpha -be35ccc3 overlay: sync alpha accent colors with frameworks/base -0d70716a Restore createjson and changelog scripts - - * vendor/gms -ffbf6b5 Add Wellbeing overlay -383645e Drop systemui clocks -3c64a55 Optionally build nexus squad - -==================== - 02-17-2025 -==================== - - * external/avb -5986166 avbtool: Add --set_verification_disabled_flag arg - - * lineage/hudson -fdce9c0 hudson: Promote tama to 22.1 - - * lineage/wiki -958d23f3 wiki: Promote tama to 22.1 - - * manifest -9dfc71b Update clang version -ffe48b7 Create alpha-15.1 branch - - * packages/apps/AlphaSettings -ab23110b AlphaSettings: hide toolbar and restore banner - - * packages/apps/FMRadio -168f373 jni: Move customisation to properties -e603ac7 jni: Always build noise floor detect code and make it conditional - - * packages/apps/Settings -f6b50d9fe219 fixup! Settings Styles redigned - - * packages/apps/Twelve -3dcf24e Twelve: Fix visualizer, hopefully for the last time -5053246 Twelve: Take into account the timeline for the queue -ccdd16b Twelve: Add notification shuffle/repeat -eb13860 Twelve: Use Resources when possible to fetch resources -7b7be5f Twelve: Fix some format strings -b503c04 Twelve: Make player/mediaLibrarySession lateinit -5d265a0 Twelve: Reformat code - - * vendor/addons -19ce0e49 Black theme: fixup -3f94ec3b Add AlphaDroid ufps icon (semi-transparent and transparent versions) -111cbdda add AlphaDroid udfps icon - - * vendor/alpha -b2f77028 brunch: build user variant by default -107ab257 Ready for official builds -d11ac319 Enable ThinLTO cache - -==================== - 02-16-2025 -==================== - - * lineage/mirror -e366ec6 Updated to 15-Feb-2025 23:01 UTC - - * lineage/wiki -b3898e71 wiki: Sm-A217M -> SM-A217M -15192f7d devices: Promote NVIDIA to 22.1 - - * manifest -1fb3646 Track crClang - - * packages/apps/AlphaSettings -085e7f1c Add Wellbeing short title -de4fefb8 Use Alpha style on Alpha settings - - * packages/apps/Aperture -59013c8 Aperture: Update kotlin to 1.9.23 -759f8d0 Aperture: Update gradle{,w} to 8.12 -0e49f58 Aperture: Update ZXing-C++ to 2.3.0 -62bc27b Aperture: Update CameraX to 1.5.0-alpha05 -39a00a1 Aperture: Ensure secure URIs are inserted in order -4fc2193 Aperture: Update kotlin to 1.9.10 - - * packages/apps/DeskClock -296e428c0 DeskClock: Convert ListPreferences to SimpleMenuPreferences -5ddac9586 DeskClock: Remove the summaries for AM/PM and bold text -f0f776a74 DeskClock: Hide or disable some screensaver settings -713a91649 DeskClock: Fix formatting in ScreensaverSettingsActivity - - * packages/apps/Glimpse -a0ad138 Glimpse: Split ACTION_REVIEW from ACTION_REVIEW_SECURE - - * packages/apps/Jelly -1f5f1bc Jelly: Save user agreement about protected media - - * packages/apps/Settings -d61bbcea3990 Disable LiveDisplay settings -a5340ca60020 ROM card view: link to firmware version settings - - * packages/apps/Twelve -1120101 Twelve: Handle empty resumption playlist -2a9b749 Twelve: Readd round icon attribute -1e4626b Twelve: Set wake mode to network -7c4ac24 Twelve: Tie CoilBitmapLoader to service scope - -==================== - 02-15-2025 -==================== - - * device/qcom/sepolicy-legacy-um -ff381799 sepolicy: Add default permission for aidl hal_bootctl - - * packages/apps/Aperture -066ea34 Automatic translation import - - * packages/apps/AudioFX -02916e7 Automatic translation import - - * packages/apps/Camelot -23242a1 Automatic translation import - - * packages/apps/Catapult -c114091 Automatic translation import - - * packages/apps/Contacts -77afb19ff Automatic translation import - - * packages/apps/DeskClock -3db9ea707 Automatic translation import - - * packages/apps/Dialer -5bf5719c7 Automatic translation import - - * packages/apps/DocumentsUI -2b776897f Automatic translation import - - * packages/apps/Etar -578b82a5 Automatic translation import - - * packages/apps/FMRadio -7f5188d Automatic translation import - - * packages/apps/FlipFlap -fe2abce Automatic translation import - - * packages/apps/Glimpse -d47de86 Automatic translation import - - * packages/apps/Jelly -3f4c549 Jelly: Include assets -525b66c Automatic translation import - - * packages/apps/Messaging -ff479f4 Automatic translation import - - * packages/apps/Profiles -7455e65 Automatic translation import - - * packages/apps/Recorder -8f65896 Automatic translation import - - * packages/apps/Twelve -38aff6a Automatic translation import - - * packages/inputmethods/LatinIME -79f3aff8c Automatic translation import - - * packages/providers/DownloadProvider -be8b0fb7 Automatic translation import - - * packages/resources/devicesettings -8624d14 Automatic translation import - - * prebuilts/clang/host/linux-x86/clang-latest -d8a8c91 clang 20.0.0 (based on r547379) from build 13065274 - - * vendor/crowdin -fef707d Automatic translation import - - * vendor/qcom/opensource/commonsys/fm -b38a391 Automatic translation import - -==================== - 02-14-2025 -==================== - - * device/qcom/sepolicy_vndr/legacy-um -87be962ff sepolicy: NFC: Add support for snxxx AIDL service - - * device/qcom/sepolicy_vndr/sm8450 -54ee7c8f8 sepolicy: NFC: Add support for snxxx AIDL service - - * frameworks/base -26431e55b2300 LocaleTile: Fix crash on LongClick -8260056afcc4c Whitelist Google Photos URIs - - * hardware/interfaces -6d4d419194 cec: Don't spam "Machine is not on the network" - - * hardware/lineage/interfaces -9b60d38 Extend Fastcharge implementation [1/3] - - * lineage-sdk -40032999 sdk: Get rid of lineageos.os.{Build,Concierge} - - * lineage/hudson -e10b30e "Fashionably Tegra-late, but worth the wait!" -a3fe984 5th upgrade for konami, I'm out of ideas - - * lineage/mirror -d8342d4 Updated to 13-Feb-2025 23:01 UTC - - * lineage/scripts -38d1654 reuse_helper: Handle kotlin files - - * lineage/wiki -d38b80c5 wiki: Promote Xiaomi SM8250 devices to 22.1 - - * manifest -a643cc0 Track bionic and art from Alpha - - * packages/apps/Jelly -68e9e9f Jelly: Handle MediaSession For BackgroundShortcut -0d0d674 Jelly: Background Shortcuts - - * packages/apps/TvSettings -d6b23f1f2 TvSettings: Support two button mute - - * packages/apps/Twelve -4edf7e3 Twelve: LocalDataSource: Stop pretending we can have artist thumbnails -69f3c76 Twelve: BaseMediaItemView: Simplify thumbnail handling -53ccfe0 Twelve: Navigate safely! -254cec7 Twelve: Ensure all media items have fallback titles -8e70bf3 Twelve: LocalDataSource: `/audio/albumart/` exists too -1cd5d90 Twelve: LocalDataSource: Use hidden album art database -62db55b Twelve: Switch back to vendored material -33444d7 Twelve: Use a custom BitmapLoader for our service -472b00e Twelve: SubsonicDataSource: Use media item builders -8690156 Twelve: Simplify media item to data source and media type querying - -==================== - 02-13-2025 -==================== - - * build/make -f13fdb0cc0 build_image: get squashfs partition size from image size -ed6768708d build: handle missing files in remove_broken_build_tools -3d130d7637 build: Remove broken prebuilts - - * lineage/hudson -198f81c Regenerate device dependency mappings - - * lineage/mirror -be0c976 Updated to 12-Feb-2025 23:01 UTC - - * packages/apps/Twelve -f010219 Twelve: Use `ProviderIdentifier` for all fragment arguments -59cea6d Twelve: Hide trailing view for local provider -a7af174 Twelve: Media item builders! -32ff491 Twelve: Use Album thumbnail as Audio thumbnail -b5597d7 Twelve: Lowercase cursor column names -1a2d65a Twelve: Fix double .px in MAX_THUMBNAIL_SIZE - - * vendor/alpha -59835401 Disable memtag for different processes - - * vendor/extra -6148f7f Update Lawnchair to version 15.0.0-20250213 -904796a Update RiMusic to version v0.6.70 - -==================== - 02-12-2025 -==================== - - * art -77ab69d4e1 Fix the divide-by-zero in odrefresh. -3d9f9226ea Speed up `AppendPrettyDescriptor()`. -15c86e55d4 optimized hprof speed -5af74f19cb Speed up `Class::IsInSamePackage()` even more. -3b9980b6eb Speed up `Class::IsInSamePackage()`. -56dc1ca02c Fix app info code type. -7eb26ef86a Use stp/ldp while calling native functions in arm64 -cd450549e7 ART: dex2oat and instruction_set_features: utilize modified runtime capabilities set -cd4057f5f7 Revert "Add visibility attributes in runtime/arch" -352bd28c70 Revert "Remove strip.keep_symbols from libart defaults" -8ab0280085 art: Add support for Cortex-A510 -3d9322a731 art: add check for __ARM_FEATURE_ATOMICS that indicates LSE atomics availability on target -98ba226aba art: Add Kryo585 support -f1263236cc art: Kryo785 supports dotprod -6da4f8a45d art: Disable debug tracing on production builds -c9ae30684b art: add kryo785 architecture variant. - - * bionic -4fd741f00 Ensure prop has zero padding -3759653a5 Prevent serial of ro props from self increment -eb1da2f49 getaddrinfo: Use Cloudflare DNS instead of Google DNS -d36536ebf libm: Support -ffp-contract=fast -0d98c742a Re-enable LTO for libm -7072cc6a6 libc: Set __bionic_asm_align to 64 for arm and arm64 -002d8d906 bionic: Support wildcards in cached hosts file -08847f3bb bionic: Sort and cache hosts file data for fast lookup -0317e202f Revert "Add better jemalloc stat logging." - - * build/blueprint -e29c960 Use pool for mutatorContext and transition contexts -633ab9e Optimize proptools.CalculateHash allocations - - * build/soong -bd349ebae soong: Allow flock for changelog generation -fe003d83e soong: Add out/soong/*.glob* to installclean -ce083663b cc/lto: enable unified LTO -377fe9ff4 cc/lto: add property for not restricting instr limit -16d359249 lto: enable O3 optimizations on explicit lto modules -b9db5a9fe cc/lto: instr limit of 40 for explicit LTO modules -128a56e30 Remove workaround for Qualcomm Kryo 385 -02505dab0 Enable crypto extensions for armv9-a -a16ac2ba8 config: Update cortex a75 flags -22e9a39ac config: do not force cortex-a76 as cortex-a75 -e974e4afd cc: Enable more features when using armv8.2-a+dotprod -4af8b30f9 soong: Add kryo300 variant support -1dc94feec soong: add kryo785 architecture variant for arm64. -e97f354ff Define AArch32 soong variable -80b2c1f4b arm_device: Change cortex-a76 mcpu from a55 to a75 -62501bcbc arm64_device: Change cortex-a76 mcpu from a55 to a75 -5e278dd8a Use -march=armv9-a+nosve for Armv9-A arch variant -718e0fbbc Introduce Cortex-A510 CPU variant -ee2aa776b soong: Allow various path commands - - * device/google/atv -66aed86 Revert "atv: sepolicy: public: Pull in hal_client_domain rule" -7beb6ac atv: sepolicy: public: Pull in hal_client_domain rule - - * frameworks/base -566743b7bf78f don't crash apps that depend on missing Gservices provider -132bcb02c55b2 Redesign seekbar -c53aa47a1ef5c SystemUI: Controllable squiggle animation [1/2] -d684e7eefec15 Statusbar: adjustable max visible notification icons [1/2] -1c18973e63ebe privapp-permissions: Grant missing TelephonyProvider perm. -d2ed4205900c1 config: Allow gms to access persistent data partition -9e27c57d39e57 core: Introduce VibrationUtils - - * manifest -c1ab1ed Update vendor/gms path - - * packages/apps/AlphaSettings -4a4a4bb2 Restore squiggle_animation and max notification icons settings -24908c8f Settings dashboard: disable DoT style for now -e9755476 Restore button settings - - * packages/apps/LineageParts -7ad6770 Disable unused components -01ab40a Nuke LineageStats -a71a55d Ship as AlphaDroid based on LineageOS -0e90313 Use ListPreference for charging control fragment -57d571c Update color mode preview from Android 12 -b34ea4d Make trust interface less boring - -==================== - 02-11-2025 -==================== - - * device/qcom/sepolicy_vndr/legacy-um -d929ad85c sepolicy_vndr: allow sensors HAL to do binder call to system_server - - * device/qcom/sepolicy_vndr/sm8450 -76a576ae7 sepolicy_vndr: allow sensors HAL to do binder call to system_server - - * hardware/lineage/interfaces -8f445d1 fingerprint: aidl: Improve documentation on sensor_location -3824e1a fingerprint: aidl: Use soong to decide which arch to build -9d7e862 fingerprint: aidl: Allow setting more than one sensor location -87c6ff2 fingerprint: aidl: Initial legacy libhardware implementation -15024d6 fingerprint: aidl: Initial stub service - - * packages/apps/Settings -5dd8c78f8bd1 Disable 'hide IME' preference when 'show hint' is enabled - -==================== - 02-10-2025 -==================== - - * bootable/recovery -08ca33c5 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_bootable_recovery into alpha-15.1-wip - - * build/make -d32898ad47 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build into alpha-15.1 - - * build/soong -f15fc9e7d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build_soong into alpha-15.1 - - * frameworks/av -6a3bf5ba6f fixup! av: support per-app volume [1/3] -4c2afb493d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_av into alpha-15.1-wip - - * frameworks/base -58047e65355de base: Add a toggle for long press on navbar to search [1/3] -90502e054be97 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_base into alpha-15.1-wip -4f1dc41a1e26b display: Add simple RGB color balance transform - - * hardware/lineage/interfaces -a90b7f9 light: Add `lcd-backlight-ex` to the list of backlight devices -232ba05 light: Add `panel0-backlight-ex` to the list of backlight devices - - * hardware/samsung/nfc -61bc89f nfc: Rename debug level property - - * lineage/hudson -80fbf9a Flash wasn't fast enough -77c8d6c Japan has their own version of everything -67cc451 Burned at the stake, forever to be remembered - - * lineage/wiki -476a125d devices: add LG V50 ThinQ (flashlmdd) -b20eb9dd wiki: add Japanese LG V30 -992de2e1 joan: promote to 22.1 - - * manifest -c811b92 Merge branch 'lineage-22.1' of https://github.com/lineageos/android into alpha-15.1-wip -479a96c Track pixel overlays - - * packages/apps/AlphaSettings -6f09b0a2 Add network_dashboard_short_title -7b7fc2c1 Add dashboard messages -89a50f43 AlphaDroid 3.1 bringup - - * packages/apps/Launcher3 -0c73ad3ff3 Allow locking tasks to recents [2/2] -1f9fa63ef6 Restore 4x4 workspace -7f05a4af09 Launcher3: Adapt strings to Alphadroid -5a94ae4307 Ship as AlphaDroid based on crDroid - - * packages/apps/Settings -cb00e2b56ef9 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_packages_apps_settings into alpha-15.1 -f50b2d1f8938 Settings: Better check for GSA package -87eb0db1aea7 Settings: Add a toggle for long press on navbar to search [3/3] - - * packages/apps/SetupWizard -5f03725 Merge branch 'lineage-22.1' of https://github.com/LineageOS/android_packages_apps_SetupWizard into alpha-15.1 - - * packages/apps/Twelve -dec2d10 Twelve: Make togglePlayPause() rewind if playback has ended -2c66e7b Twelve: Add some margin to create playlist button -11e6ecb Twelve: Don't open bottom sheet for "create playlist" item -8a0e7de Twelve: Move onPrepareView callbacks using item to onBindView -799a828 Twelve: Merge all media item views - - * vendor/alpha -788ff11c Revert "config: Changes for libfmjni bp conversion" -898c8f0f apns: Update Lebara UK -395656f3 vars: Update qcom tags -001ab1c8 Remove unused makefiles - -==================== - 02-09-2025 -==================== - - * build/make -083d637741 build: dont include tasks from tests and platform_testing -23727aae3b combo: Add kryo585 architecture to known v8 cores -f07fa05673 combo: Add kryo585|785 architectures to known v8-2a cores -0d3aaba9ef combo: Add cortex-a76 to known v8-2a cores -b8eb00ae74 core: Use $(PRODUCT_DEVICE) for auto generated RRO names -616a2095c2 Revert "Add DeviceAsWebcam to general handheld_system" -11233f9763 envsetup.sh: Setup and enable ccache -c562d1ce5f build: Always use release-keys -5edf5fdbac build: Add backuptool by default - - * hardware/qcom-caf/msm8953/audio -1b5ce68f1a visualizer: do not use GNU old-style field designators -1809521b6a voice_processing: do not use GNU old-style field designators -218e835767 audio-effects: Fix out-of-bound read -c7945b3662 audio-hal: Fix kw issue -71c5e51120 audio-hal: oob read when doing the typecase -51cdec106b hal: Update 64-bit vendor HAL path -01be9192c4 soundfx: Convert to blueprint & remove unused effects -ddd4045c35 audio: Remove autoconf/automake files - - * hardware/qcom-caf/msm8998/audio -970b452a3b hal: update audio effects config names -0b702d7ccc post_proc: fix mul-overflow -d6bec2c279 hal: Show cal step for volume listener -8f607d5055 visualizer: dynamically parse the sound card when opening mixer -d396d643bf post_proc: Add USB device support for bass boost -32fe461f1e visualizer: do not use GNU old-style field designators -c7b9f35c22 voice_processing: do not use GNU old-style field designators -15a96f3ad3 audio-effects: Fix out-of-bound read -927a1882cf audio-hal: Fix kw issue -fff6b47b04 audio-hal: oob read when doing the typecase -af7b3277b8 hal: Update 64-bit vendor HAL path -a310768ff9 soundfx: Convert to blueprint & remove unused effects -9164a77fbb audio: Remove autoconf/automake files - - * hardware/qcom-caf/sdm845/audio -d6b236ac74 visualizer: do not use GNU old-style field designators -5bb9c04a33 voice_processing: do not use GNU old-style field designators -0c00f920ca audio-effects: Fix out-of-bound read -a8cefba281 audio-hal: Fix kw issue -0a0ffe2aae audio-hal: oob read when doing the typecase -07a88dcd10 hal: Update 64-bit vendor HAL path -f9c22aba8e soundfx: Convert to blueprint & remove unused effects -1f6606f76e audio: Remove autoconf/automake files - - * hardware/qcom-caf/sm8250/audio -0547a74443 visualizer: do not use GNU old-style field designators -ce9604d4c6 voice_processing: do not use GNU old-style field designators - - * hardware/qcom-caf/sm8250/media -3bfc8ddfb mm-core: Remove no longer used codecs -c64f23926 mm-core: Convert to blueprint -a47853022 mm-core: Remove unused files & flags -d004c5f44 mm-video-v4l2: Convert to blueprint - - * hardware/qcom-caf/sm8350/audio -452725a165 audio: Drop STT meta test app -b13925e6ee visualizer: do not use GNU old-style field designators -f5b6e037a4 voice_processing: do not use GNU old-style field designators - - * lineage/hudson -0aaaa77 hudson: Promote miatoll to 22.1 - - * lineage/wiki -0f1ec4d5 wiki: devices: Promote miatoll to 22.1 - - * packages/apps/Settings -0042bc16f205 AlphaSettings: hide title -9c25876494c6 Settings: Add Circle To Search [2/2] -17fda7c3a0c1 Don't let profiles open the UserSettings overflow -1aaf5972f2af Block the content scheme intent in AccountTypePreferenceLoader -a3b33971f80f Add missing resources -b2e46175ae37 Beta TAG for now -165bb5354e03 FastChargingPreferenceController: implement dynamic summary to show fastcharge status -50d5aeb09479 Extend Fastcharge implementation [2/3] -627713f5f151 BatteryStateDatabase: Set exportSchema to false -fdc77b3080df Settings Styles redigned - - * packages/apps/Twelve -c95473a Twelve: Reformat code -0836d86 Twelve: Fix/improve intent handling navigation - - * vendor/addons -c1d4d392 BlackTheme: Turn colors_material bg colors to black -1cc41ad7 BlackTheme: Update and move color resources to night -87ddda02 Fix transparent Shishu themes - - * vendor/alpha -c71b3137 Guard pixel overlays with WITH_PIXEL_OVERLAYS -b678f22d vars: February 2025 Security update - - * vendor/pixeloverlays -fbfbafd Adapt for Alpha - -==================== - 02-08-2025 -==================== - - * build/make -36c1905749 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * device/qcom/sepolicy_vndr/sm8550 -bbbbed900 sepolicy: NFC: Add support for snxxx AIDL service - - * frameworks/base -8f2748b40ab1b Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 -83cd5c824c57b Nuke black theme overlay - - * hardware/qcom-caf/msm8953/audio -23c50e9f81 audio: Remove OMX components -0f32dcd453 audio: Remove disabled HW accelerated effects -e342823606 audio: Remove unsupported QAHW -2b2841b3bc audio: Remove unused hdmi_in_test -c70ad9ca25 audio: Remove deprecated audio daemon - - * hardware/qcom-caf/msm8953/display -47e27c7418 Revert "gpu_tonemapper: Fix compilation issue." -5345254cfd gpu_tonemapper: Fix loop increment never executed -3a56441266 Convert some display libraries to blueprint -681046fd02 Remove unused libcopybit sources -6d2c56e9d5 qdutils/hwc: Remove unused code surrounding fps calculations -61890b7fff sdm: Remove USE_GRALLOC1 conditionals -12d9f2ca89 sdm: Remove use_hwc2 conditional -0bc83cf81d sdm: Remove display_config_version conditionals -bad9b7af9a Revert "hwc2: Avoid adding default color mode when display PP is unsupported" -c54d77b5ca Revert "hwc2: Remove multi-display support from wearables." -be97b92a6e sdm: Cleanup unused code, round 2 -1e0788c9d3 display: Cleanup unused code -9ae410d70b display: Remove deprecated lights.$(TARGET_BOARD_PLATFORM) -a407397f40 display: Remove libmemtrack library - - * hardware/qcom-caf/sm8150/audio -15dc2b0cbc visualizer: do not use GNU old-style field designators -c47189f8b2 voice_processing: do not use GNU old-style field designators -b61b62ecf2 audio-hal: Fix kw issue -56b6afdb40 hal: Update 64-bit vendor HAL path -566fa517c3 soundfx: Convert to blueprint & remove unused effects -1e377baf21 audio: Remove autoconf/automake files - - * lineage/wiki -b904cccc Update info on bootloader unlock for new Xiaomi devices - - * manifest -538c253 manifest: February 2025 Security Update -43cb1e2 manifest: Drop legacy QCOM VR HAL - - * packages/apps/AlphaSettings -471c2820 New Crowdin updates (#1221) -92ead45e crdroid: Add strings for Circle To Search -548fef71 crdroid: Add strings for long press on navbar to search - - * packages/apps/Jelly -649eef6 Jelly: set MainActivity launchMode to singleTask - - * packages/apps/Launcher3 -f159d02318 New Crowdin updates (#480) -afac31d785 Launcher3: Fix up jank with navbar long press -18736a612f Launcher3: Add Circle To Search [1/2] -2e5eeeacec Launcher3: Add a toggle for long press on navbar to search [2/3] -79f2f89d15 Launcher3: Implement long press nav bar to search gesture -bf4be376a8 Revert "Launcher3: Add Circle To Search" - - * packages/apps/Twelve -2a492f1 Twelve: Fix-up provider preference store - - * packages/apps/Updater -35d7963 New translations (#84) -0560741 Update Crowdin configuration file -2c14d1e Catch exceptions when enabling performance mode -0f9e696 Revert "Updater: layout: activity_updates: add spacing.." -c0f32d5 Updater: Update parsed info whenever data is refreshed -13bc9bf Updater: Add support links and some more info -07a0657 Updater: Use headline font for activity header -238d244 Updater: Nuke Lineage's website on installation blocked dialog -91aa830 Updater: Initial adaption for crdroid -fb990ca Updater: Change package name to avoid conflict -835f24a Ship as crDroid based on LOS - - * packages/modules/Bluetooth -9061231e0a BondStateMachine: Fix NPE on some devices -a8abaaf571 gd: hci: Allow disabling erroneous data reporting -9d22ecdada Fix BT noise issue during startup -619f6ee651 Bluetooth timeout feature - - * vendor/alpha -f76398ca vendor: alpha: update default pif values - -==================== - 02-07-2025 -==================== - - * hardware/qcom-caf/bootctrl -3adebe3 Stricter stat when checking for blockdevices -76c9776 Remove goto statements -32e7614 Add function to get active boot slot -91e6460 bootcontrol: count slots correctly -7f432e0 [LSC] Add LOCAL_LICENSE_KINDS to hardware/qcom/bootctrl -b194dcc Add METADATA to bootctrl: BSD=NOTICE - - * hardware/qcom-caf/sm8350/audio -37b09dbbcd soundfx: Convert to blueprint & remove unused effects -170939e8c9 audio: Remove autoconf/automake files -0c1ac0287d audio-hal: oob read when doing the typecase -6dfdc466ab Remove ndk_platform backend. Use the ndk backend. -ea4962f508 Remove log spam when placing power hint call -0cc4c5da5d Probe PowerHAL HIDL first -37beb7942e Support Power HAL AIDL service - - * lineage/hudson -d6b4269 hudson: Promote nairo to 22.1 -a6834bc Regenerate device dependency mappings - - * lineage/wiki -8324ea23 wiki: devices: Promote nairo to 22.1 -b46924c9 wiki: Use `fastboot reboot-recovery` for sweet -cedaf26a wiki: Use `fastboot reboot-recovery` for Xiaomi SM8350 - - * packages/apps/AlphaSettings -dd33f480 New Crowdin updates (#85, #86, #87, #88, #89, #90, #91) - - * packages/apps/FMRadio -f3eb07a FMRadio: Rework custom jni support - - * packages/apps/Glimpse -c57bcd7 Glimpse: Create a Media out of thin air if not in media provider - - * packages/apps/Launcher3 -78bae21c78 Launcher3: Make zram info in recents optional -5078122b0f Launcher3: Set recent opacity to 100 - - * packages/apps/Twelve -967f2ab Twelve: New create playlist fragment -23e5e41 Twelve: Convert Serializable users to Parcel -ed57e27 Twelve: Better provider selector dialog -b06afb1 Twelve: Commonize Material 3 dialog fragments - - * vendor/qcom/opensource/libfmjni -c5ace14 libfmjni: Convert it to filegroup and header lib - -==================== - 02-06-2025 -==================== - - * device/qcom/sepolicy_vndr/legacy-um -e40b8c7a6 sepolicy: Add default permission for aidl hal_bootctl - - * device/qcom/sepolicy_vndr/sm8450 -3126539a7 sepolicy: Add default permission for aidl hal_bootctl - - * device/qcom/sepolicy_vndr/sm8550 -704bbd332 sepolicy: Add default permission for aidl hal_bootctl - - * external/gptfdisk -b605061 gptfdisk: Make libgptf available to product/vendor - - * hardware/lineage/interfaces -6063eaf light: Add "sprd_backlight" to the list of backlight devices - - * hardware/qcom-caf/sm8550/dataipa -b482ae4 dataipa: Disable all the debugging - - * lineage/wiki -d749782b fixup! wiki: Update jekyll-search -510d60e9 wiki: surya: Update maintainers -b70c854a wiki: faq: Fix Android capitalization - - * packages/apps/Camelot -8318cbd Camelot: Update androidx.pdf to 1.0.0-alpha06 - - * packages/apps/Launcher3 -809e4b5340 Launcher3: Update folder preview and background color - - * vendor/alpha -48604d44 kernel: sign GKI modules -6b8003d1 kernel: preserve GKI modules in vendor modules.dep -5dfa43f1 kernel: break the build when depmod finds missing symbols -a7488f21 kernel: consider gki modules when running depmod for vendor modules -047f5b78 kernel: reduce the use of find when copying modules -ab3bac8a merge_dtbs: Craft unique name for final saved merged trees -17102fc3 merge_dtbs: Use logging and argparse -1466d988 merge_dtbs.py: Print only basenames of dtb* files - -==================== - 02-05-2025 -==================== - - * build/release -1d3087d9 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/build/release into alpha-15.1 - - * frameworks/av -c2d9d7b479 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * frameworks/base -95950965742df SystemUI: Add DOUBLE_TAP_TO_WAKE to tuner service reset exceptions -279abaab4b08f Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/frameworks/base into alpha-15.1-wip - - * lineage/mirror -96d2d14 Updated aosp-minimal to 04-Feb-2025 23:01 UTC - - * packages/apps/Settings -a0338d65bdd5 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * packages/modules/Bluetooth -c2414be0f4 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * packages/modules/Wifi -44969a2973 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/modules/Wifi into alpha-15.1-wip - - * packages/services/Telecomm -7f43170cd Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/services/Telecomm into alpha-15.1-wip - - * system/core -2e3de5ae8 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/system/core into HEAD - - * vendor/gms -b3761f9 Exclude some exempted location overlays -9358184 Rename some resources for now -680d617 gms: Guard Phone packages for wifionly builds -0bfc7d1 gms: Conditionally build some apps -9a0c09d gms: Update to komodo-ota-ap4a.250205.002-e3270b8a -5d5f45a gms: Automatically extract and update GoogleExtServices from apex -83fd693 gms: Drop quick tap sysconfig -5f53ddc gms: Add Contextual Search sysconfig -ee598ee Setup symlink properly for libpowerstatshaldataprovider - - * vendor/pixel-framework -99e9a05 Revert "Disable burn-in protection and smartpixels for now" - -==================== - 02-04-2025 -==================== - - * frameworks/base -0bab1f1269989 SystemUI: Add ability to toggle bluetooth battery level [1/2] -b5fefaf8b8c85 SystemUI: Fix side scrolling issues with vertical/A11 tile layout -8d7538db0a773 SystemUI: Do not marquee QS label text -dbc77eebf4a61 SystemUI: Allow to change QS tile label text size [1/2] -005dda3bc5672 SystemUI: Add QS tile layout settings [1/2] -82fabe387fc3f Make sensor block package list configurable [1/2] -9aa4674b258a6 base: Add Accelerometer and Linear Acceleration sensors in blocking list -fe1960835aa0a FWB: Sensor block per-package switch (1/2) -97e43209a5bee SystemSensorManager: sensor block per-package -b2be26e7180c1 Checking whether ComponentName with current InputMethod is not null -d81bba678f819 fixup: StringBlock: Prevent SystemUI crash when inflating QS - - * hardware/google/pixel -15b40a4f pixel: Switch to common lineage powershare HAL - - * hardware/google/pixel-sepolicy -3961e30 pixel: Switch to common lineage powershare HAL - - * hardware/qcom-caf/sm8450/data-ipa-cfg-mgr -9bef0c7 data-ipa-cfg-mgr: Disable all the debugging - - * hardware/qcom-caf/sm8550/data-ipa-cfg-mgr -19ea389 data-ipa-cfg-mgr: Disable all the debugging - - * hardware/qcom/data/ipacfg-mgr -816edd3 Remove no longer used Android.mk guard -ef8e1ce data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds -ddc7901 data-ipa-cfg-mgr: Disable all the debugging -1921b32 ipanat: Remove test/Android.mk -e753ce9 ipacm: convert Android.mk files to Android.bp -63a4592 ipacm: Fix compilation error for switch case -e821842 google: Add repo license information. -e12c3ac Add hardware/qcom/data/ipacfg-mgr/msm8998 soong namespace - - * lineage/mirror -a3753f4 Updated aosp-minimal to 03-Feb-2025 23:01 UTC - - * lineage/wiki -f0b13a45 wiki: Update information post-migration to Play Integrity - - * tools/extract-utils -9d8fe9b extract-utils: Don't make extract-factory mutually exclusive - - * vendor/alpha -ee7212ee Build LMO Freeform app and sidebar -8fde2067 soong: Add CAMERA_NEEDS_CLIENT_INFO_LIB{_OPLUS} -665c5fcc soong: Add libcameraservice extension config -f7ff180e crdroid: Disable default frame rate limit for games -ba41c8d9 overlay: Use google-sans for font config overlays -a4688341 crdroid: Move face unlock biometric permission to system_ext -7606d8d7 overlay: Add gms location history to extra location packages -17ae3413 overlay: Add tethering to location exemption -472157db overlay: Add SystemUI to location extra packages -1715c719 overlay: Add OmniJaws to location extra packages -98750035 Build extra packages - - * vendor/qcom/opensource/data-ipa-cfg-mgr-legacy-um -2456d63 data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds -ccd3dc5 data-ipa-cfg-mgr: Disable all the debugging - diff --git a/aston.json b/aston.json index b8b0fd7..55f2c2d 100644 --- a/aston.json +++ b/aston.json @@ -4,63 +4,13 @@ "maintainer": "elpaablo", "oem": "OnePlus", "device": "aston", - "filename": "AlphaDroid-15-20250630-vanilla-aston-v3.2.1.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/aston/AlphaDroid-15-20250630-vanilla-aston-v3.2.1.zip/download", - "timestamp": 1751268681, - "md5": "abb9db846d0b83d427073798ca42145e", - "sha256": "4928dcb32c2601c48fb7851222a455c245b73772f0b55497bc7430a03ead379e", - "size": 2235849480, - "version": "3.2.1", - "buildtype": "Official", - "buildvariant": "vanilla", - "forum": "", - "gapps": "", - "firmware": "https://sourceforge.net/projects/alphadroid-project/upload/aston/assets/fw/", - "modem": "", - "bootloader": "", - "recovery": "https://sourceforge.net/projects/alphadroid-project/files/aston/assets/recovery.img/download", - "paypal": "https://www.paypal.com/donate/?hosted_button_id=UKKSXJYZDMH58", - "telegram": "https://t.me/alphadroid_chat", - "dt": "https://github.com/alphadroid-devices/device_oneplus_aston", - "common-dt": "https://github.com/alphadroid-devices/device_oneplus_sm8550-common", - "kernel": "https://github.com/alphadroid-devices/kernel_oneplus_sm8550" - }, - { - "maintainer": "elpaablo", - "oem": "OnePlus", - "device": "aston", - "filename": "AlphaDroid-15-20250630-microg-aston-v3.2.1.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/aston/AlphaDroid-15-20250630-microg-aston-v3.2.1.zip/download", - "timestamp": 1751272489, - "md5": "e37d19861cf94fe9fa1256ab71e952e9", - "sha256": "3e279c07fa8a0a0b8624cb95d8037b71459df534d24e5719a7ee08345f509c63", - "size": 2331815834, - "version": "3.2.1", - "buildtype": "Official", - "buildvariant": "microg", - "forum": "", - "gapps": "", - "firmware": "https://sourceforge.net/projects/alphadroid-project/upload/aston/assets/fw/", - "modem": "", - "bootloader": "", - "recovery": "https://sourceforge.net/projects/alphadroid-project/files/aston/assets/recovery.img/download", - "paypal": "https://www.paypal.com/donate/?hosted_button_id=UKKSXJYZDMH58", - "telegram": "https://t.me/alphadroid_chat", - "dt": "https://github.com/alphadroid-devices/device_oneplus_aston", - "common-dt": "https://github.com/alphadroid-devices/device_oneplus_sm8550-common", - "kernel": "https://github.com/alphadroid-devices/kernel_oneplus_sm8550" - }, - { - "maintainer": "elpaablo", - "oem": "OnePlus", - "device": "aston", - "filename": "AlphaDroid-15-20250629-gapps-aston-v3.2.1.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/aston/AlphaDroid-15-20250629-gapps-aston-v3.2.1.zip/download", - "timestamp": 1751236316, - "md5": "cd360f42f71286b98ae06857deca647f", - "sha256": "d0d207e4ac36a957d6d56e341cac30a4f6fed42cfe753e253a10b32cd9c240d3", - "size": 3188464438, - "version": "3.2.1", + "filename": "AlphaDroid-16-20251013-gapps-aston-v4.1.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/aston/AlphaDroid-16-20251013-gapps-aston-v4.1.zip/download", + "timestamp": 1760390954, + "md5": "ec871b63d38360c656fb00af9ff22623", + "sha256": "ec3d5cafda90ee9dc09785307262b3d8b7ce867e37b18991d4027b91bf81214f", + "size": 3273096421, + "version": "4.1", "buildtype": "Official", "buildvariant": "gapps", "forum": "", diff --git a/beryl.json b/beryl.json index 2d7de8c..367c696 100644 --- a/beryl.json +++ b/beryl.json @@ -1,7 +1,7 @@ { "response": [ { - "maintainer": "naokoshoto", + "maintainer": "NaokoShoto", "oem": "Xiaomi", "device": "beryl", "filename": "AlphaDroid-15-20250818-gapps-beryl-v3.2.1.zip", @@ -20,13 +20,13 @@ "bootloader": "", "recovery": "", "paypal": "", - "telegram": "https://t.me/naokoshoto_discuss", - "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_beryl", + "telegram": "https://t.me/naokoshoto_discuss/", + "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_beryl/", "common-dt": "", "kernel": "" }, { - "maintainer": "naokoshoto", + "maintainer": "NaokoShoto", "oem": "Xiaomi", "device": "beryl", "filename": "AlphaDroid-15-20250818-vanilla-beryl-v3.2.1.zip", @@ -45,8 +45,8 @@ "bootloader": "", "recovery": "", "paypal": "", - "telegram": "https://t.me/naokoshoto_discuss", - "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_beryl", + "telegram": "https://t.me/naokoshoto_discuss/", + "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_beryl/", "common-dt": "", "kernel": "" } diff --git a/changelog_akita.txt b/changelog_akita.txt index 1e3cd18..5fed1d0 100644 --- a/changelog_akita.txt +++ b/changelog_akita.txt @@ -1,9 +1,980 @@ Device: Google Pixel 8a (akita) Device maintainer: OscarM + +==================== + 02-23-2025 +==================== + + * vendor/alpha +dbbe9bc6 Update pif overlay +c22d3ca2 Optimize updater logic + +==================== + 02-22-2025 +==================== + + * frameworks/base +6948be020b94b [SQUASH] Integrate Pixel framework hooks and wrappers +d622f29c808b4 PixelPropsUtils: Update fingerprints to February 2025 release + + * packages/apps/AlphaSettings +c6c91c16 New Crowdin updates (#94) +2582c64e Cleanup unused strings + + * packages/apps/Glimpse +7e7ea6d Glimpse: Fix trashed SECURE_REVIEW items not getting removed from screen +dde8aa8 Glimpse: buildList for the win + + * packages/apps/Twelve +ae0a3ea Twelve: NowPlayingFragment: Fix shuffle and repeat marker being cut in half +af4cd4e Twelve: MediaRepositoryTree: Don't crash in case of error +8710915 Twelve: buildList for the win +6f40e59 Twelve: Add support for search queries +0713aed Twelve: Apply player setup after .build() +5e5d43a Twelve: Lyrics fragment +e822e83 Twelve: Add lyrics view +fc7c6c5 Twelve: SubsonicDataSource: Implement lyrics fetching +85bd87e Twelve: JellyfinDataSource: Implement lyrics fetching +27e846a Twelve: Add lyrics method +65c5974 Twelve: MainActivity: Move intent flow handing to the usual `loadData()` +f9fd41c Twelve: Stop using fitsSystemView=true on CoordinatorLayout +1d1424a Twelve: Set edge to edge and transparent navigation bar color attributes +22e2370 Twelve: Remove useless orientation attribute on CoordinatorLayout + + * vendor/alpha +6d92207a Rework `createjson.sh` (#65) +13f3e960 Update charger animation +fe6dbac1 Build charger animation +e4a0329e android: merge_dtbs: Respect miboard-id while merging +2c09be0c Update default wallpaper + +==================== + 02-21-2025 +==================== + + * frameworks/base +6351de5582baf Set animation scale to 0.75 + + * packages/apps/AlphaSettings +8a90fdc8 Remove 4G icon switch + + * packages/apps/Glimpse +a05d2fa Glimpse: Show warning regarding trash's auto-empty behavior + + * packages/apps/Settings +c269d741f976 Partially Revert "DynamicDenylistManager shall not exist" +8903d3175789 Settings: Update FaceEnroll ActivityDirector and Confirmation +3b5c0ca7ea24 Settings: Create face confirmation activity +6bbbef1c815f Settings: Create a ActivityDirector to optionally use SettingsGoogleFutureFaceEnroll +05ffe93e8dc4 [SQUASH] Settings changes for Pixel Framework +8b5fcc80a584 Revert "[Settings] Start SettingsDumpService to dump the db log after the db is" +078a9ad69e96 Disable SettingsDumpService +8f2bc0a3e870 Settings: Add missing animations from google +1dcf53457817 Settings: Add a toggle to force LTE_CA +4fe44aca3de6 Settings: Whitelist WRITE_DEVICE_CONFIG permission + +==================== + 02-20-2025 +==================== + + * device/qcom/sepolicy_vndr/sm8450 +0624d88e9 sepolicy: NFC: Label NXP NFC 2.0 HIDL + + * device/qcom/sepolicy_vndr/sm8550 +78af5575a sepolicy: NFC: Label NXP NFC 2.0 HIDL + + * packages/apps/AlphaSettings +feb1b2e6 Restore QS layout settings +1e36feaa Restore sensor block settings +c5255df5 Hide UDFPS settings if not supported +6e29bda4 New Crowdin updates (#93) + + * packages/apps/Aperture +0fd3ae9 Aperture: Switch to upstream zxing-cpp + + * packages/apps/Glimpse +2162911 Glimpse: Break as soon a valid media type is found + +==================== + 02-19-2025 +==================== + + * lineage/wiki +f2d6f3bf wiki: libvirt-qemu: VirtIO keyboard does not work on the boot menu + + * manifest +c5e76c0 Create alpha-15.1-pixel branch +8c1ba78 Track Backgrounds from Alpha + + * packages/apps/Backgrounds +859ec8a Backgrounds: add AlphaDroid wallpapers + + * packages/apps/Settings +cf3e20604cc7 Remove BETA tag + + * packages/apps/Updater +e613dc7 Updater: adapt to AlphaDroid + +==================== + 02-18-2025 +==================== + + * build/make +417fdce7b8 tools: Introduce AlphaDroid - Bringed back alpha-14 from [1] and adapted to our new props +6f9eb082b0 build: execute changelog generator script + + * packages/apps/Catapult +fb83201 Catapult: String improvements & fixes + + * packages/apps/Settings +f70d438bc3f7 settings styles: sync accent colors with frameworks/base + + * vendor/alpha +be35ccc3 overlay: sync alpha accent colors with frameworks/base +0d70716a Restore createjson and changelog scripts + + * vendor/gms +ffbf6b5 Add Wellbeing overlay +383645e Drop systemui clocks +3c64a55 Optionally build nexus squad + +==================== + 02-17-2025 +==================== + + * external/avb +5986166 avbtool: Add --set_verification_disabled_flag arg + + * lineage/hudson +fdce9c0 hudson: Promote tama to 22.1 + + * lineage/wiki +958d23f3 wiki: Promote tama to 22.1 + + * manifest +9dfc71b Update clang version +ffe48b7 Create alpha-15.1 branch + + * packages/apps/AlphaSettings +ab23110b AlphaSettings: hide toolbar and restore banner + + * packages/apps/FMRadio +168f373 jni: Move customisation to properties +e603ac7 jni: Always build noise floor detect code and make it conditional + + * packages/apps/Settings +f6b50d9fe219 fixup! Settings Styles redigned + + * packages/apps/Twelve +3dcf24e Twelve: Fix visualizer, hopefully for the last time +5053246 Twelve: Take into account the timeline for the queue +ccdd16b Twelve: Add notification shuffle/repeat +eb13860 Twelve: Use Resources when possible to fetch resources +7b7be5f Twelve: Fix some format strings +b503c04 Twelve: Make player/mediaLibrarySession lateinit +5d265a0 Twelve: Reformat code + + * vendor/addons +19ce0e49 Black theme: fixup +3f94ec3b Add AlphaDroid ufps icon (semi-transparent and transparent versions) +111cbdda add AlphaDroid udfps icon + + * vendor/alpha +b2f77028 brunch: build user variant by default +107ab257 Ready for official builds +d11ac319 Enable ThinLTO cache + +==================== + 02-16-2025 +==================== + + * lineage/mirror +e366ec6 Updated to 15-Feb-2025 23:01 UTC + + * lineage/wiki +b3898e71 wiki: Sm-A217M -> SM-A217M +15192f7d devices: Promote NVIDIA to 22.1 + + * manifest +1fb3646 Track crClang + + * packages/apps/AlphaSettings +085e7f1c Add Wellbeing short title +de4fefb8 Use Alpha style on Alpha settings + + * packages/apps/Aperture +59013c8 Aperture: Update kotlin to 1.9.23 +759f8d0 Aperture: Update gradle{,w} to 8.12 +0e49f58 Aperture: Update ZXing-C++ to 2.3.0 +62bc27b Aperture: Update CameraX to 1.5.0-alpha05 +39a00a1 Aperture: Ensure secure URIs are inserted in order +4fc2193 Aperture: Update kotlin to 1.9.10 + + * packages/apps/DeskClock +296e428c0 DeskClock: Convert ListPreferences to SimpleMenuPreferences +5ddac9586 DeskClock: Remove the summaries for AM/PM and bold text +f0f776a74 DeskClock: Hide or disable some screensaver settings +713a91649 DeskClock: Fix formatting in ScreensaverSettingsActivity + + * packages/apps/Glimpse +a0ad138 Glimpse: Split ACTION_REVIEW from ACTION_REVIEW_SECURE + + * packages/apps/Jelly +1f5f1bc Jelly: Save user agreement about protected media + + * packages/apps/Settings +d61bbcea3990 Disable LiveDisplay settings +a5340ca60020 ROM card view: link to firmware version settings + + * packages/apps/Twelve +1120101 Twelve: Handle empty resumption playlist +2a9b749 Twelve: Readd round icon attribute +1e4626b Twelve: Set wake mode to network +7c4ac24 Twelve: Tie CoilBitmapLoader to service scope + +==================== + 02-15-2025 +==================== + + * device/qcom/sepolicy-legacy-um +ff381799 sepolicy: Add default permission for aidl hal_bootctl + + * packages/apps/Aperture +066ea34 Automatic translation import + + * packages/apps/AudioFX +02916e7 Automatic translation import + + * packages/apps/Camelot +23242a1 Automatic translation import + + * packages/apps/Catapult +c114091 Automatic translation import + + * packages/apps/Contacts +77afb19ff Automatic translation import + + * packages/apps/DeskClock +3db9ea707 Automatic translation import + + * packages/apps/Dialer +5bf5719c7 Automatic translation import + + * packages/apps/DocumentsUI +2b776897f Automatic translation import + + * packages/apps/Etar +578b82a5 Automatic translation import + + * packages/apps/FMRadio +7f5188d Automatic translation import + + * packages/apps/FlipFlap +fe2abce Automatic translation import + + * packages/apps/Glimpse +d47de86 Automatic translation import + + * packages/apps/Jelly +3f4c549 Jelly: Include assets +525b66c Automatic translation import + + * packages/apps/Messaging +ff479f4 Automatic translation import + + * packages/apps/Profiles +7455e65 Automatic translation import + + * packages/apps/Recorder +8f65896 Automatic translation import + + * packages/apps/Twelve +38aff6a Automatic translation import + + * packages/inputmethods/LatinIME +79f3aff8c Automatic translation import + + * packages/providers/DownloadProvider +be8b0fb7 Automatic translation import + + * packages/resources/devicesettings +8624d14 Automatic translation import + + * prebuilts/clang/host/linux-x86/clang-latest +d8a8c91 clang 20.0.0 (based on r547379) from build 13065274 + + * vendor/crowdin +fef707d Automatic translation import + + * vendor/qcom/opensource/commonsys/fm +b38a391 Automatic translation import + +==================== + 02-14-2025 +==================== + + * device/qcom/sepolicy_vndr/legacy-um +87be962ff sepolicy: NFC: Add support for snxxx AIDL service + + * device/qcom/sepolicy_vndr/sm8450 +54ee7c8f8 sepolicy: NFC: Add support for snxxx AIDL service + + * frameworks/base +26431e55b2300 LocaleTile: Fix crash on LongClick +8260056afcc4c Whitelist Google Photos URIs + + * hardware/interfaces +6d4d419194 cec: Don't spam "Machine is not on the network" + + * hardware/lineage/interfaces +9b60d38 Extend Fastcharge implementation [1/3] + + * lineage-sdk +40032999 sdk: Get rid of lineageos.os.{Build,Concierge} + + * lineage/hudson +e10b30e "Fashionably Tegra-late, but worth the wait!" +a3fe984 5th upgrade for konami, I'm out of ideas + + * lineage/mirror +d8342d4 Updated to 13-Feb-2025 23:01 UTC + + * lineage/scripts +38d1654 reuse_helper: Handle kotlin files + + * lineage/wiki +d38b80c5 wiki: Promote Xiaomi SM8250 devices to 22.1 + + * manifest +a643cc0 Track bionic and art from Alpha + + * packages/apps/Jelly +68e9e9f Jelly: Handle MediaSession For BackgroundShortcut +0d0d674 Jelly: Background Shortcuts + + * packages/apps/TvSettings +d6b23f1f2 TvSettings: Support two button mute + + * packages/apps/Twelve +4edf7e3 Twelve: LocalDataSource: Stop pretending we can have artist thumbnails +69f3c76 Twelve: BaseMediaItemView: Simplify thumbnail handling +53ccfe0 Twelve: Navigate safely! +254cec7 Twelve: Ensure all media items have fallback titles +8e70bf3 Twelve: LocalDataSource: `/audio/albumart/` exists too +1cd5d90 Twelve: LocalDataSource: Use hidden album art database +62db55b Twelve: Switch back to vendored material +33444d7 Twelve: Use a custom BitmapLoader for our service +472b00e Twelve: SubsonicDataSource: Use media item builders +8690156 Twelve: Simplify media item to data source and media type querying + +==================== + 02-13-2025 +==================== + + * build/make +f13fdb0cc0 build_image: get squashfs partition size from image size +ed6768708d build: handle missing files in remove_broken_build_tools +3d130d7637 build: Remove broken prebuilts + + * lineage/hudson +198f81c Regenerate device dependency mappings + + * lineage/mirror +be0c976 Updated to 12-Feb-2025 23:01 UTC + + * packages/apps/Twelve +f010219 Twelve: Use `ProviderIdentifier` for all fragment arguments +59cea6d Twelve: Hide trailing view for local provider +a7af174 Twelve: Media item builders! +32ff491 Twelve: Use Album thumbnail as Audio thumbnail +b5597d7 Twelve: Lowercase cursor column names +1a2d65a Twelve: Fix double .px in MAX_THUMBNAIL_SIZE + + * vendor/alpha +59835401 Disable memtag for different processes + + * vendor/extra +6148f7f Update Lawnchair to version 15.0.0-20250213 +904796a Update RiMusic to version v0.6.70 + ==================== - 08-01-2024 + 02-12-2025 ==================== -* AlphaDroid 2.3 Initial Build + * art +77ab69d4e1 Fix the divide-by-zero in odrefresh. +3d9f9226ea Speed up `AppendPrettyDescriptor()`. +15c86e55d4 optimized hprof speed +5af74f19cb Speed up `Class::IsInSamePackage()` even more. +3b9980b6eb Speed up `Class::IsInSamePackage()`. +56dc1ca02c Fix app info code type. +7eb26ef86a Use stp/ldp while calling native functions in arm64 +cd450549e7 ART: dex2oat and instruction_set_features: utilize modified runtime capabilities set +cd4057f5f7 Revert "Add visibility attributes in runtime/arch" +352bd28c70 Revert "Remove strip.keep_symbols from libart defaults" +8ab0280085 art: Add support for Cortex-A510 +3d9322a731 art: add check for __ARM_FEATURE_ATOMICS that indicates LSE atomics availability on target +98ba226aba art: Add Kryo585 support +f1263236cc art: Kryo785 supports dotprod +6da4f8a45d art: Disable debug tracing on production builds +c9ae30684b art: add kryo785 architecture variant. + + * bionic +4fd741f00 Ensure prop has zero padding +3759653a5 Prevent serial of ro props from self increment +eb1da2f49 getaddrinfo: Use Cloudflare DNS instead of Google DNS +d36536ebf libm: Support -ffp-contract=fast +0d98c742a Re-enable LTO for libm +7072cc6a6 libc: Set __bionic_asm_align to 64 for arm and arm64 +002d8d906 bionic: Support wildcards in cached hosts file +08847f3bb bionic: Sort and cache hosts file data for fast lookup +0317e202f Revert "Add better jemalloc stat logging." + + * build/blueprint +e29c960 Use pool for mutatorContext and transition contexts +633ab9e Optimize proptools.CalculateHash allocations + + * build/soong +bd349ebae soong: Allow flock for changelog generation +fe003d83e soong: Add out/soong/*.glob* to installclean +ce083663b cc/lto: enable unified LTO +377fe9ff4 cc/lto: add property for not restricting instr limit +16d359249 lto: enable O3 optimizations on explicit lto modules +b9db5a9fe cc/lto: instr limit of 40 for explicit LTO modules +128a56e30 Remove workaround for Qualcomm Kryo 385 +02505dab0 Enable crypto extensions for armv9-a +a16ac2ba8 config: Update cortex a75 flags +22e9a39ac config: do not force cortex-a76 as cortex-a75 +e974e4afd cc: Enable more features when using armv8.2-a+dotprod +4af8b30f9 soong: Add kryo300 variant support +1dc94feec soong: add kryo785 architecture variant for arm64. +e97f354ff Define AArch32 soong variable +80b2c1f4b arm_device: Change cortex-a76 mcpu from a55 to a75 +62501bcbc arm64_device: Change cortex-a76 mcpu from a55 to a75 +5e278dd8a Use -march=armv9-a+nosve for Armv9-A arch variant +718e0fbbc Introduce Cortex-A510 CPU variant +ee2aa776b soong: Allow various path commands + + * device/google/atv +66aed86 Revert "atv: sepolicy: public: Pull in hal_client_domain rule" +7beb6ac atv: sepolicy: public: Pull in hal_client_domain rule + + * frameworks/base +566743b7bf78f don't crash apps that depend on missing Gservices provider +132bcb02c55b2 Redesign seekbar +c53aa47a1ef5c SystemUI: Controllable squiggle animation [1/2] +d684e7eefec15 Statusbar: adjustable max visible notification icons [1/2] +1c18973e63ebe privapp-permissions: Grant missing TelephonyProvider perm. +d2ed4205900c1 config: Allow gms to access persistent data partition +9e27c57d39e57 core: Introduce VibrationUtils + + * manifest +c1ab1ed Update vendor/gms path + + * packages/apps/AlphaSettings +4a4a4bb2 Restore squiggle_animation and max notification icons settings +24908c8f Settings dashboard: disable DoT style for now +e9755476 Restore button settings + + * packages/apps/LineageParts +7ad6770 Disable unused components +01ab40a Nuke LineageStats +a71a55d Ship as AlphaDroid based on LineageOS +0e90313 Use ListPreference for charging control fragment +57d571c Update color mode preview from Android 12 +b34ea4d Make trust interface less boring + +==================== + 02-11-2025 +==================== + + * device/qcom/sepolicy_vndr/legacy-um +d929ad85c sepolicy_vndr: allow sensors HAL to do binder call to system_server + + * device/qcom/sepolicy_vndr/sm8450 +76a576ae7 sepolicy_vndr: allow sensors HAL to do binder call to system_server + + * hardware/lineage/interfaces +8f445d1 fingerprint: aidl: Improve documentation on sensor_location +3824e1a fingerprint: aidl: Use soong to decide which arch to build +9d7e862 fingerprint: aidl: Allow setting more than one sensor location +87c6ff2 fingerprint: aidl: Initial legacy libhardware implementation +15024d6 fingerprint: aidl: Initial stub service + + * packages/apps/Settings +5dd8c78f8bd1 Disable 'hide IME' preference when 'show hint' is enabled + +==================== + 02-10-2025 +==================== + + * bootable/recovery +08ca33c5 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_bootable_recovery into alpha-15.1-wip + + * build/make +d32898ad47 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build into alpha-15.1 + + * build/soong +f15fc9e7d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build_soong into alpha-15.1 + + * frameworks/av +6a3bf5ba6f fixup! av: support per-app volume [1/3] +4c2afb493d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_av into alpha-15.1-wip + + * frameworks/base +58047e65355de base: Add a toggle for long press on navbar to search [1/3] +90502e054be97 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_base into alpha-15.1-wip +4f1dc41a1e26b display: Add simple RGB color balance transform + + * hardware/lineage/interfaces +a90b7f9 light: Add `lcd-backlight-ex` to the list of backlight devices +232ba05 light: Add `panel0-backlight-ex` to the list of backlight devices + + * hardware/samsung/nfc +61bc89f nfc: Rename debug level property + + * lineage/hudson +80fbf9a Flash wasn't fast enough +77c8d6c Japan has their own version of everything +67cc451 Burned at the stake, forever to be remembered + + * lineage/wiki +476a125d devices: add LG V50 ThinQ (flashlmdd) +b20eb9dd wiki: add Japanese LG V30 +992de2e1 joan: promote to 22.1 + + * manifest +c811b92 Merge branch 'lineage-22.1' of https://github.com/lineageos/android into alpha-15.1-wip +479a96c Track pixel overlays + + * packages/apps/AlphaSettings +6f09b0a2 Add network_dashboard_short_title +7b7fc2c1 Add dashboard messages +89a50f43 AlphaDroid 3.1 bringup + + * packages/apps/Launcher3 +0c73ad3ff3 Allow locking tasks to recents [2/2] +1f9fa63ef6 Restore 4x4 workspace +7f05a4af09 Launcher3: Adapt strings to Alphadroid +5a94ae4307 Ship as AlphaDroid based on crDroid + + * packages/apps/Settings +cb00e2b56ef9 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_packages_apps_settings into alpha-15.1 +f50b2d1f8938 Settings: Better check for GSA package +87eb0db1aea7 Settings: Add a toggle for long press on navbar to search [3/3] + + * packages/apps/SetupWizard +5f03725 Merge branch 'lineage-22.1' of https://github.com/LineageOS/android_packages_apps_SetupWizard into alpha-15.1 + + * packages/apps/Twelve +dec2d10 Twelve: Make togglePlayPause() rewind if playback has ended +2c66e7b Twelve: Add some margin to create playlist button +11e6ecb Twelve: Don't open bottom sheet for "create playlist" item +8a0e7de Twelve: Move onPrepareView callbacks using item to onBindView +799a828 Twelve: Merge all media item views + + * vendor/alpha +788ff11c Revert "config: Changes for libfmjni bp conversion" +898c8f0f apns: Update Lebara UK +395656f3 vars: Update qcom tags +001ab1c8 Remove unused makefiles + +==================== + 02-09-2025 +==================== + + * build/make +083d637741 build: dont include tasks from tests and platform_testing +23727aae3b combo: Add kryo585 architecture to known v8 cores +f07fa05673 combo: Add kryo585|785 architectures to known v8-2a cores +0d3aaba9ef combo: Add cortex-a76 to known v8-2a cores +b8eb00ae74 core: Use $(PRODUCT_DEVICE) for auto generated RRO names +616a2095c2 Revert "Add DeviceAsWebcam to general handheld_system" +11233f9763 envsetup.sh: Setup and enable ccache +c562d1ce5f build: Always use release-keys +5edf5fdbac build: Add backuptool by default + + * hardware/qcom-caf/msm8953/audio +1b5ce68f1a visualizer: do not use GNU old-style field designators +1809521b6a voice_processing: do not use GNU old-style field designators +218e835767 audio-effects: Fix out-of-bound read +c7945b3662 audio-hal: Fix kw issue +71c5e51120 audio-hal: oob read when doing the typecase +51cdec106b hal: Update 64-bit vendor HAL path +01be9192c4 soundfx: Convert to blueprint & remove unused effects +ddd4045c35 audio: Remove autoconf/automake files + + * hardware/qcom-caf/msm8998/audio +970b452a3b hal: update audio effects config names +0b702d7ccc post_proc: fix mul-overflow +d6bec2c279 hal: Show cal step for volume listener +8f607d5055 visualizer: dynamically parse the sound card when opening mixer +d396d643bf post_proc: Add USB device support for bass boost +32fe461f1e visualizer: do not use GNU old-style field designators +c7b9f35c22 voice_processing: do not use GNU old-style field designators +15a96f3ad3 audio-effects: Fix out-of-bound read +927a1882cf audio-hal: Fix kw issue +fff6b47b04 audio-hal: oob read when doing the typecase +af7b3277b8 hal: Update 64-bit vendor HAL path +a310768ff9 soundfx: Convert to blueprint & remove unused effects +9164a77fbb audio: Remove autoconf/automake files + + * hardware/qcom-caf/sdm845/audio +d6b236ac74 visualizer: do not use GNU old-style field designators +5bb9c04a33 voice_processing: do not use GNU old-style field designators +0c00f920ca audio-effects: Fix out-of-bound read +a8cefba281 audio-hal: Fix kw issue +0a0ffe2aae audio-hal: oob read when doing the typecase +07a88dcd10 hal: Update 64-bit vendor HAL path +f9c22aba8e soundfx: Convert to blueprint & remove unused effects +1f6606f76e audio: Remove autoconf/automake files + + * hardware/qcom-caf/sm8250/audio +0547a74443 visualizer: do not use GNU old-style field designators +ce9604d4c6 voice_processing: do not use GNU old-style field designators + + * hardware/qcom-caf/sm8250/media +3bfc8ddfb mm-core: Remove no longer used codecs +c64f23926 mm-core: Convert to blueprint +a47853022 mm-core: Remove unused files & flags +d004c5f44 mm-video-v4l2: Convert to blueprint + + * hardware/qcom-caf/sm8350/audio +452725a165 audio: Drop STT meta test app +b13925e6ee visualizer: do not use GNU old-style field designators +f5b6e037a4 voice_processing: do not use GNU old-style field designators + + * lineage/hudson +0aaaa77 hudson: Promote miatoll to 22.1 + + * lineage/wiki +0f1ec4d5 wiki: devices: Promote miatoll to 22.1 + + * packages/apps/Settings +0042bc16f205 AlphaSettings: hide title +9c25876494c6 Settings: Add Circle To Search [2/2] +17fda7c3a0c1 Don't let profiles open the UserSettings overflow +1aaf5972f2af Block the content scheme intent in AccountTypePreferenceLoader +a3b33971f80f Add missing resources +b2e46175ae37 Beta TAG for now +165bb5354e03 FastChargingPreferenceController: implement dynamic summary to show fastcharge status +50d5aeb09479 Extend Fastcharge implementation [2/3] +627713f5f151 BatteryStateDatabase: Set exportSchema to false +fdc77b3080df Settings Styles redigned + + * packages/apps/Twelve +c95473a Twelve: Reformat code +0836d86 Twelve: Fix/improve intent handling navigation + + * vendor/addons +c1d4d392 BlackTheme: Turn colors_material bg colors to black +1cc41ad7 BlackTheme: Update and move color resources to night +87ddda02 Fix transparent Shishu themes + + * vendor/alpha +c71b3137 Guard pixel overlays with WITH_PIXEL_OVERLAYS +b678f22d vars: February 2025 Security update + + * vendor/pixeloverlays +fbfbafd Adapt for Alpha + +==================== + 02-08-2025 +==================== + + * build/make +36c1905749 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * device/qcom/sepolicy_vndr/sm8550 +bbbbed900 sepolicy: NFC: Add support for snxxx AIDL service + + * frameworks/base +8f2748b40ab1b Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 +83cd5c824c57b Nuke black theme overlay + + * hardware/qcom-caf/msm8953/audio +23c50e9f81 audio: Remove OMX components +0f32dcd453 audio: Remove disabled HW accelerated effects +e342823606 audio: Remove unsupported QAHW +2b2841b3bc audio: Remove unused hdmi_in_test +c70ad9ca25 audio: Remove deprecated audio daemon + + * hardware/qcom-caf/msm8953/display +47e27c7418 Revert "gpu_tonemapper: Fix compilation issue." +5345254cfd gpu_tonemapper: Fix loop increment never executed +3a56441266 Convert some display libraries to blueprint +681046fd02 Remove unused libcopybit sources +6d2c56e9d5 qdutils/hwc: Remove unused code surrounding fps calculations +61890b7fff sdm: Remove USE_GRALLOC1 conditionals +12d9f2ca89 sdm: Remove use_hwc2 conditional +0bc83cf81d sdm: Remove display_config_version conditionals +bad9b7af9a Revert "hwc2: Avoid adding default color mode when display PP is unsupported" +c54d77b5ca Revert "hwc2: Remove multi-display support from wearables." +be97b92a6e sdm: Cleanup unused code, round 2 +1e0788c9d3 display: Cleanup unused code +9ae410d70b display: Remove deprecated lights.$(TARGET_BOARD_PLATFORM) +a407397f40 display: Remove libmemtrack library + + * hardware/qcom-caf/sm8150/audio +15dc2b0cbc visualizer: do not use GNU old-style field designators +c47189f8b2 voice_processing: do not use GNU old-style field designators +b61b62ecf2 audio-hal: Fix kw issue +56b6afdb40 hal: Update 64-bit vendor HAL path +566fa517c3 soundfx: Convert to blueprint & remove unused effects +1e377baf21 audio: Remove autoconf/automake files + + * lineage/wiki +b904cccc Update info on bootloader unlock for new Xiaomi devices + + * manifest +538c253 manifest: February 2025 Security Update +43cb1e2 manifest: Drop legacy QCOM VR HAL + + * packages/apps/AlphaSettings +471c2820 New Crowdin updates (#1221) +92ead45e crdroid: Add strings for Circle To Search +548fef71 crdroid: Add strings for long press on navbar to search + + * packages/apps/Jelly +649eef6 Jelly: set MainActivity launchMode to singleTask + + * packages/apps/Launcher3 +f159d02318 New Crowdin updates (#480) +afac31d785 Launcher3: Fix up jank with navbar long press +18736a612f Launcher3: Add Circle To Search [1/2] +2e5eeeacec Launcher3: Add a toggle for long press on navbar to search [2/3] +79f2f89d15 Launcher3: Implement long press nav bar to search gesture +bf4be376a8 Revert "Launcher3: Add Circle To Search" + + * packages/apps/Twelve +2a492f1 Twelve: Fix-up provider preference store + + * packages/apps/Updater +35d7963 New translations (#84) +0560741 Update Crowdin configuration file +2c14d1e Catch exceptions when enabling performance mode +0f9e696 Revert "Updater: layout: activity_updates: add spacing.." +c0f32d5 Updater: Update parsed info whenever data is refreshed +13bc9bf Updater: Add support links and some more info +07a0657 Updater: Use headline font for activity header +238d244 Updater: Nuke Lineage's website on installation blocked dialog +91aa830 Updater: Initial adaption for crdroid +fb990ca Updater: Change package name to avoid conflict +835f24a Ship as crDroid based on LOS + + * packages/modules/Bluetooth +9061231e0a BondStateMachine: Fix NPE on some devices +a8abaaf571 gd: hci: Allow disabling erroneous data reporting +9d22ecdada Fix BT noise issue during startup +619f6ee651 Bluetooth timeout feature + + * vendor/alpha +f76398ca vendor: alpha: update default pif values + +==================== + 02-07-2025 +==================== + + * hardware/qcom-caf/bootctrl +3adebe3 Stricter stat when checking for blockdevices +76c9776 Remove goto statements +32e7614 Add function to get active boot slot +91e6460 bootcontrol: count slots correctly +7f432e0 [LSC] Add LOCAL_LICENSE_KINDS to hardware/qcom/bootctrl +b194dcc Add METADATA to bootctrl: BSD=NOTICE + + * hardware/qcom-caf/sm8350/audio +37b09dbbcd soundfx: Convert to blueprint & remove unused effects +170939e8c9 audio: Remove autoconf/automake files +0c1ac0287d audio-hal: oob read when doing the typecase +6dfdc466ab Remove ndk_platform backend. Use the ndk backend. +ea4962f508 Remove log spam when placing power hint call +0cc4c5da5d Probe PowerHAL HIDL first +37beb7942e Support Power HAL AIDL service + + * lineage/hudson +d6b4269 hudson: Promote nairo to 22.1 +a6834bc Regenerate device dependency mappings + + * lineage/wiki +8324ea23 wiki: devices: Promote nairo to 22.1 +b46924c9 wiki: Use `fastboot reboot-recovery` for sweet +cedaf26a wiki: Use `fastboot reboot-recovery` for Xiaomi SM8350 + + * packages/apps/AlphaSettings +dd33f480 New Crowdin updates (#85, #86, #87, #88, #89, #90, #91) + + * packages/apps/FMRadio +f3eb07a FMRadio: Rework custom jni support + + * packages/apps/Glimpse +c57bcd7 Glimpse: Create a Media out of thin air if not in media provider + + * packages/apps/Launcher3 +78bae21c78 Launcher3: Make zram info in recents optional +5078122b0f Launcher3: Set recent opacity to 100 + + * packages/apps/Twelve +967f2ab Twelve: New create playlist fragment +23e5e41 Twelve: Convert Serializable users to Parcel +ed57e27 Twelve: Better provider selector dialog +b06afb1 Twelve: Commonize Material 3 dialog fragments + + * vendor/qcom/opensource/libfmjni +c5ace14 libfmjni: Convert it to filegroup and header lib + +==================== + 02-06-2025 +==================== + + * device/qcom/sepolicy_vndr/legacy-um +e40b8c7a6 sepolicy: Add default permission for aidl hal_bootctl + + * device/qcom/sepolicy_vndr/sm8450 +3126539a7 sepolicy: Add default permission for aidl hal_bootctl + + * device/qcom/sepolicy_vndr/sm8550 +704bbd332 sepolicy: Add default permission for aidl hal_bootctl + + * external/gptfdisk +b605061 gptfdisk: Make libgptf available to product/vendor + + * hardware/lineage/interfaces +6063eaf light: Add "sprd_backlight" to the list of backlight devices + + * hardware/qcom-caf/sm8550/dataipa +b482ae4 dataipa: Disable all the debugging + + * lineage/wiki +d749782b fixup! wiki: Update jekyll-search +510d60e9 wiki: surya: Update maintainers +b70c854a wiki: faq: Fix Android capitalization + + * packages/apps/Camelot +8318cbd Camelot: Update androidx.pdf to 1.0.0-alpha06 + + * packages/apps/Launcher3 +809e4b5340 Launcher3: Update folder preview and background color + + * vendor/alpha +48604d44 kernel: sign GKI modules +6b8003d1 kernel: preserve GKI modules in vendor modules.dep +5dfa43f1 kernel: break the build when depmod finds missing symbols +a7488f21 kernel: consider gki modules when running depmod for vendor modules +047f5b78 kernel: reduce the use of find when copying modules +ab3bac8a merge_dtbs: Craft unique name for final saved merged trees +17102fc3 merge_dtbs: Use logging and argparse +1466d988 merge_dtbs.py: Print only basenames of dtb* files + +==================== + 02-05-2025 +==================== + + * build/release +1d3087d9 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/build/release into alpha-15.1 + + * frameworks/av +c2d9d7b479 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * frameworks/base +95950965742df SystemUI: Add DOUBLE_TAP_TO_WAKE to tuner service reset exceptions +279abaab4b08f Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/frameworks/base into alpha-15.1-wip + + * lineage/mirror +96d2d14 Updated aosp-minimal to 04-Feb-2025 23:01 UTC + + * packages/apps/Settings +a0338d65bdd5 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * packages/modules/Bluetooth +c2414be0f4 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * packages/modules/Wifi +44969a2973 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/modules/Wifi into alpha-15.1-wip + + * packages/services/Telecomm +7f43170cd Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/services/Telecomm into alpha-15.1-wip + + * system/core +2e3de5ae8 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/system/core into HEAD + + * vendor/gms +b3761f9 Exclude some exempted location overlays +9358184 Rename some resources for now +680d617 gms: Guard Phone packages for wifionly builds +0bfc7d1 gms: Conditionally build some apps +9a0c09d gms: Update to komodo-ota-ap4a.250205.002-e3270b8a +5d5f45a gms: Automatically extract and update GoogleExtServices from apex +83fd693 gms: Drop quick tap sysconfig +5f53ddc gms: Add Contextual Search sysconfig +ee598ee Setup symlink properly for libpowerstatshaldataprovider + + * vendor/pixel-framework +99e9a05 Revert "Disable burn-in protection and smartpixels for now" + +==================== + 02-04-2025 +==================== + + * frameworks/base +0bab1f1269989 SystemUI: Add ability to toggle bluetooth battery level [1/2] +b5fefaf8b8c85 SystemUI: Fix side scrolling issues with vertical/A11 tile layout +8d7538db0a773 SystemUI: Do not marquee QS label text +dbc77eebf4a61 SystemUI: Allow to change QS tile label text size [1/2] +005dda3bc5672 SystemUI: Add QS tile layout settings [1/2] +82fabe387fc3f Make sensor block package list configurable [1/2] +9aa4674b258a6 base: Add Accelerometer and Linear Acceleration sensors in blocking list +fe1960835aa0a FWB: Sensor block per-package switch (1/2) +97e43209a5bee SystemSensorManager: sensor block per-package +b2be26e7180c1 Checking whether ComponentName with current InputMethod is not null +d81bba678f819 fixup: StringBlock: Prevent SystemUI crash when inflating QS + + * hardware/google/pixel +15b40a4f pixel: Switch to common lineage powershare HAL + + * hardware/google/pixel-sepolicy +3961e30 pixel: Switch to common lineage powershare HAL + + * hardware/qcom-caf/sm8450/data-ipa-cfg-mgr +9bef0c7 data-ipa-cfg-mgr: Disable all the debugging + + * hardware/qcom-caf/sm8550/data-ipa-cfg-mgr +19ea389 data-ipa-cfg-mgr: Disable all the debugging + + * hardware/qcom/data/ipacfg-mgr +816edd3 Remove no longer used Android.mk guard +ef8e1ce data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds +ddc7901 data-ipa-cfg-mgr: Disable all the debugging +1921b32 ipanat: Remove test/Android.mk +e753ce9 ipacm: convert Android.mk files to Android.bp +63a4592 ipacm: Fix compilation error for switch case +e821842 google: Add repo license information. +e12c3ac Add hardware/qcom/data/ipacfg-mgr/msm8998 soong namespace + + * lineage/mirror +a3753f4 Updated aosp-minimal to 03-Feb-2025 23:01 UTC + + * lineage/wiki +f0b13a45 wiki: Update information post-migration to Play Integrity + + * tools/extract-utils +9d8fe9b extract-utils: Don't make extract-factory mutually exclusive + + * vendor/alpha +ee7212ee Build LMO Freeform app and sidebar +8fde2067 soong: Add CAMERA_NEEDS_CLIENT_INFO_LIB{_OPLUS} +665c5fcc soong: Add libcameraservice extension config +f7ff180e crdroid: Disable default frame rate limit for games +ba41c8d9 overlay: Use google-sans for font config overlays +a4688341 crdroid: Move face unlock biometric permission to system_ext +7606d8d7 overlay: Add gms location history to extra location packages +17ae3413 overlay: Add tethering to location exemption +472157db overlay: Add SystemUI to location extra packages +1715c719 overlay: Add OmniJaws to location extra packages +98750035 Build extra packages + + * vendor/qcom/opensource/data-ipa-cfg-mgr-legacy-um +2456d63 data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds +ccd3dc5 data-ipa-cfg-mgr: Disable all the debugging diff --git a/changelog_aston.txt b/changelog_aston.txt index e24d573..69c689a 100644 --- a/changelog_aston.txt +++ b/changelog_aston.txt @@ -1,6 +1,26 @@ Device: OnePlus Ace 3 | 12R (Aston) Team Aston: elpaablo, REV3NT3CH +==================== + 14-10-2025 +==================== + +* Fixed alert slider + +==================== + 13-10-2025 +==================== + +* AlphaDroid 4.1 / Android 16 +* Device Settings now include: + - Alert Slider actions + - Bypass Charging with target level + - OnePulse PWM + - Gamebar +* Updated kernel (includes ksu + susfs 1.5.9) +* Updated vendor to CPH2449_15.0.0.860(EX01) +* Firmware included + ==================== 30-06-2025 ==================== diff --git a/changelog_dodge.txt b/changelog_dodge.txt new file mode 100644 index 0000000..be5de32 --- /dev/null +++ b/changelog_dodge.txt @@ -0,0 +1,382 @@ +==================== + 12-08-2025 +==================== + + * frameworks/base +35453e48608b camera: Bump `MAX_PREVIEW_FPS` to 120 + + * packages/apps/Launcher3 +cfa18cde6d Launcher3: Add custom recent view styles + + * packages/apps/Settings +30f51ca0c43 Device Settings: Oneplus13 + + * vendor/alpha +edc7738e recovery: add alpha public key + + * vendor/oneplus/dodge +5164906 dodge: Ship NFC firmware + +==================== + 12-07-2025 +==================== + + * hardware/oplus +06a84b51 Add toggle for ltpo features +de7bcfe6 sepolicy: qti: Allow system server to detect oem charging +40f1aac9 sepolicy: adress fingerprint denials +43e686c2 sepolicy: qti: Allow system_server to r/w oplus_chg nodes +e11a6c77 sepolicy: qti: Allow binder calls for sensor hal to system_server +4388828e sepolicy: Fix bluetooth denial on user builds +ecc5a68d sepolicy: Fix hal_bootctl_default denial +6f81c2be sepolicy: Address DeviceSettings and fast charging denials +6120b91c hardware: hidl: inscreen: Set thread to high CFS priority +3860c2f9 sepolicy: Address various denials +b70ca1a9 sepolicy: Label hal_charger service +78f87cfe overlay: qssi: Update QSSI RROs from CPH2573_11_A.76 +d5202f18 sepolicy: Label oplus bluetooth prop +bf344fa0 sepolicy: Address nfc denial +1834c175 sepolicy: Allow vendor_hal_perf_default to access surfaceflinger +77eaacfe [TEMP] sensors: aidl: Glorified one-shotting +df1d681a aidl: sensors: Return early if nothing is displayed over the light sensor +f87308d4 aidl: sensors: Import AlsCorrection from sm8150-common +2d649623 Import ALS capture service from sm8150-common +f0f664a7 overlay/sensors: Configure Doze brightness sensor +50291ff7 overlay: qssi: Define quick_pickup sensor string +53296ad0 overlay: qssi: Enable config_dozePulsePickup +e8233e43 sepolicy: qti: Label sensors AIDL multihal +e6362c50 aidl: sensors: Standardize qti.sensor.amd to glance sensor +23a50b71 aidl: sensors: Invert value for pickup gesture event +cf8f1194 aidl: sensors: Change standard tilt_detector to pickup_gesture +5ee2e558 aidl: sensors: Avoid target name conflicts +95613a51 aidl: sensors: Change default applicable license to Android-Apache-2.0 +e1b5477f aidl: sensors: Import 2.X sensors hal proxy +ef14d31f aidl: sensors: Revert^2 "SensorHAL: add moisture detection" +68179b07 aidl: sensors: Import aidl sensors MultiHal +1c971d1a aidl: qti_vibrator: effect: import richtap effects +cf3c9bc9 oplus-fwk: Add missing classes for oplus camera +d217c762 oplus-fwk: Update for compatibility with android-15 IMS stack +aac4928e aidl: vibrator: Minimize code for ledVibratorDevice + +==================== + 12-06-2025 +==================== + + * kernel/oneplus/sm8750-modules +5baaae5a12 qcom: display-drivers: oplus_adfr: kickstart prop magic + + * vendor/alpha +beb828ce Config version: explictly set TARGET_BUILD_PACKAGE to 1 (vanilla) if it's not set + +==================== + 12-05-2025 +==================== + + * frameworks/base +755cd6b331a3 UI Styles tile dialog: apply changes immediately and remove dim from shade while dragging, to have a clear view of QS tiles. +2d679b88d0cd UI Styles: make Slash renderers respect user parameters +4866ebd5bfc9 Brightness slider: change thumb dimensions for better ui style effect +5499d411825c SystemUI: Extend QS Header Image to support animated GIF/WEBP [1/2] + + * kernel/oneplus/sm8750 +bb8fe2c3306d mm: vmstat: use power efficient workingqueues +217cc612aa16 proc: Don't let Google Camera run in the background + + * vendor/alpha +51559859 Fix audio config +2edb6566 Add tablet config + + * vendor/oneplus/sm8750-common +749f9a0 sm8750-common: Sync with device tree + +==================== + 12-04-2025 +==================== + + * packages/apps/AlphaSettings +2f886a0 Extend QS Header Image to support animated GIF/WEBP [2/2] + + * vendor/apn +e09a80d Add Bait MX + +==================== + 12-03-2025 +==================== + +==================== + 12-02-2025 +==================== + + * device/oneplus/sm8750-common +44bd76f sm8750-common: Switch to oplus sensors AIDL +5ce21a3 sm8750-common: define media settings to sun variant + + * packages/apps/AlphaSettings +b38cff7 Make notifications and misc icons thicker +759d687 Add About phone header strings + +==================== + 12-01-2025 +==================== + + * hardware/oplus +43a27ff0 Automatic translation import + + * manifest +c2c3bc4 Unpin settings + + * packages/apps/Settings +7c3ffd4c10c Revamp about phone header + +==================== + 11-30-2025 +==================== + + * hardware/oplus +c0a67cae doze: Fix ClassCastException on pickup pref change + + * manifest +9811279 Unpin a few repos + + * packages/apps/Launcher3 +755f5c1e5a Merge branch '16.0' of https://github.com/crdroidandroid/android_packages_apps_Launcher3 into HEAD + +==================== + 11-29-2025 +==================== + + * build/make +aa724d34c8 Merge branch '16.0' of https://github.com/crdroidandroid/android_build into alpha-16.1 +4316871e2f Auto-fill lunch +679fbb0a09 Remove lineage-sdk dependency + + * build/soong +bf2c7532f Merge branch '16.0' of https://github.com/crdroidandroid/android_build_soong into alpha-16.1 + + * manifest +c3cb310 Update system/apex hash + + * vendor/alpha +ad84daf1 Bump AlphaDroid version to 4.2 +36d1e855 Merge branch 'alpha-16.1' of https://github.com/alphadroid-project/vendor_alpha into alpha-16.1 + +==================== + 11-28-2025 +==================== + + * frameworks/base +1a5e92d8804b PixelPropsUtils: Skip play Integrity props in isolated processes +f08eadeed8bf KeyboxChainGenerator: fix build release parsing +41bc452aee08 SystemUI: Avoid using deriveStateOf for media translation +8f92cffa0623 graphics: Fixing typeface crash bug with susfs +b18779334210 SystemUI: TunerServiceImpl: Safe concurrent iteration and modification +d94877052d14 Revert "SystemUI: Fix thread safety issue when adding tunables" +d0b69b508a92 MediaControlPanel: Fix media playback crash on chromium based browser +043d521141b5 SettingsProvider: Resolve google gms configurator denials +b0257e2edeee SettingsProvider: Fix NPE when upgrading +069b95f37765 PhoneWindowManager: Fix duplicate handling of App switch key press event +a8039b7dfe57 BlurController: Fix default blur enablement value +d7d80b129f07 Fix keyboard cannot access slider issue +adf42250bcb1 Always update mute icon along with slider value. +1c9032176e9f Add a ripple highlight for the Output Switcher list items. +b2d5214ccdc8 Make bg of QSCustomizer transparent +5bdc6c93fd8e Update pin bouncer confirm button to match spec +a5155dcab1de SystemUI: TunerActivity: Switch to material expressive design +243be331eab4 Force behind and notification scrim alpha to be 0 when the device is unlocking. +9cdd07886cb8 Don't further perform IO on socket if opening it fails +25991ab26d1d Fix it has two times return back if only press the back key one time. +1d61c7552f6a Fix index out of bounds exception in HandwritingModeController. +938d479882e8 SystemUI: Prevent ShadeListBuilder illegal state on notification dump +9a569d3b14cd SystemUI: Fix keyguard transition race conditions +8b87aa26caa1 KeyProviderManager: Accept N >= 1 certs per key [1/2] +6387fccb44e9 ComputerEngine: Fix signature spoofing for microG revanced +23f1d76b6ef0 UI Styles: fix slash angle + + * hardware/oplus +db91ce03 oplus-fwk: Add OsenseResClient and OplusUIFirstManager stubs + + * manifest +3cf16c1 manifest: Track vendor/apn +01cc3e4 manifest: Track LMO SystemUI clocks + +==================== + 11-27-2025 +==================== + + * device/oneplus/dodge +e2ac912 dodge: Include LTPO settings +4cc5f57 dodge: overlay: Enable multiple vibration intensity levels +4adb090 dodge: Set market name for device +d569609 dodge: overlay: Move in alert slider configs +076213d dodge: Set proper screen density +fc97332 dodge: Enable UDFPS animations +1aff861 [Squash] Import Device Settings +828b044 Adjust padding for status bar +c0ea18d AlphaDroid Bringup +0d39e0c dodge: overlay: Update Brightness configs +aeabaf3 dodge: Increase start statusbar padding +55b97d4 dodge: configs: Update display density +aafa4c5 dodge: Switch to FIFO vibration effects + + * device/oneplus/sm8750-common +f1dcdd9 sm8750-common: Ship ConsumerIR App +beef9dc Drop Lineage Health +9f5e3e2 Init: set permissions for OnePulse PWM +83fe406 sm8750-common: init: Set perm for LTPO nodes +6d1d8c9 sm8750-common: overlay: Decommonize alert slider configs +0b933bb sm8750-common: Allow gcam/snapcam to skip HFR checks +4cebec1 sm8750-common: Allow camera to skip high frame rate checks +e8696b5 Revert "sm8750-common: init: Set Blur property based on Soc id." +311cde8 sm8750-common: overlay: Enable battery cycle count +22e7709 sm8750-common: overlay: Add system ui restart option +85cc570 sm8750-common: Disable frame rate override feature +9a4b75c sm8750-common: init: Reset readahead values for 128 always +94321ba sm8750-common: init: Remove IO read_ahead_kb tune +0b7d3ed sm8750-common: overlay: Update pinner list +36df02f sm8750-common: overlay: Turn on screen on unplug +16e1369 sm8750-common: overlay: Add temp divider value for cpu info overlay +c72643f sm8750-common: overlay: Add fps info path +f78c7f7 sm8750-common: overlay: Switch to crdroid doze +bb51a86 sm8750-common: Nuke OnePlus doze +383e0ee sm8750-common: overlay: Use appropriate charging thresholds +2d89f42 sm8750-common: init: Always use lz4 for zram +fd3eec0 sm8750-common: overlay: Configure VOOC charging display on lockscreen +ecfeade sm8750-common: overlay: Decouple auto-suspend and interactive state from display +baa01f1 sm8750-common: overlay: Fix lockscreen charging info + + * frameworks/base +7280e4ea7c29 Merge branch alpha-16.1-wip into alpha-16.1 + + * hardware/oplus +9a1f70d1 doze: Use new method to listen for preference changes + + * packages/apps/AlphaSettings +0d511ca Minimal cleanup and re-organization +496fbbf Expressive Alpha Settings +3e3c25f Add UI Style settings +900d740 Merge branch 'alpha-16.1' of https://github.com/alphadroid-project/packages_apps_AlphaSettings into HEAD + + * vendor/alpha +d0f219d7 overlay: Use google sans flex for lockscreen clock +9893b8ad overlay: Remove duplicate DPS config +7c7595f4 Update blur support + +==================== + 11-26-2025 +==================== + + * kernel/oneplus/sm8750 +7bfd38e99ba3 PM / freezer: Reduce freeze timeout to 1 second for Android +48356601dd30 fs: Dont allow paths with lineage to be listed +14af71b913ea mbcache: Speed up cache entry creation +fa0ee3508e11 arm64/mm: Optimize loop to reduce redundant operations of contpte_ptep_get +b8cd1a9302c9 ANDROID: gki_defconfig: Enable Clang ThinLTO support +b2cfdc10dc76 ANDROID: gki_defconfig: Enable AUTOFDO_CLANG for AutoFDO optimizations +40d3318027bb lib/lz4: Remove redundant MIN/MAX macros to fix compilation error +a8c3e4b453b1 lib: update lz4 to v1.10.0 +3940db0227f6 lib/decompress_unlz4: Add NEON-optimized LZ4 decompression for ARM64 +5b56bcffe7d9 arm64: debug: disable self-hosted debug by default +2f44e74d65e0 lib: Disable debug_locks +57bca1d19a64 Makefile: Enable -mcpu=oryon-1 +8e629abb2981 f2fs: Demote GC thread to idle scheduler class +8aefed7dee58 f2fs: set ioprio of GC kthread to idle +3bea4ae01af5 f2fs/gc: Reduce GC thread urgent sleep time to 50ms +10453eb55fbd f2fs: Use copy_page for full page copy +b72a88275bd4 f2fs: reduce timeout for uncongestion +e597037bc656 f2fs: Enable ATGC and GC_MERGE by default +2f4067ad08f2 lz4: Use ARM64 NEON-optimized decompression where available +7d5017bc68a8 kernelsu: replace renameat hook with fsnotify +7a9c2cabfe1e kernelsu: Fix kernel panics caused by thread info flag corruption +f7142b44384a kernelsu: Use SUS_SU by default +4a0e4563f17f kernelsu: Fix SUS_SU feature +434d242f25c9 devpts: KernelSU: Fix: Failed to execute pm in terminal +4141ab3ac4fe drivers: Add missing KernelSU hooks +33cb02d40860 kernelsu: implement v2_signature size/hash override from userspace through kernel module parameter +58196799eee8 kernelsu: Allow compatible manager apks +9b9ce4594e6d kernelsu: Remove duplicate function to fix compilation +2fc7c7313160 kernelsu: Enable susfs for ksu +223b8150eb8e kernelsu: Add susfs in gki android15-6.6 +d61386224406 drivers: Set proper version for KernelSU-Next +667aeb498d6d drivers: Import KernelSU Next v1.1.1 +33a133ffba71 drivers: Add KSU config path +919b77a5c394 thermal: qcom: tsens: Fix function prototype mismatch + + * kernel/oneplus/sm8750-modules +b096249139 display: Enforce ulps suspend +1d13e7a7a3 display: Enforce ulps by default + + * vendor/oneplus/sm8750-common +d5a5859 add ConsumerIRApp + +==================== + 11-25-2025 +==================== + + * device/oneplus/sm8750-common +556cb91 sm8750-common: Update from OOS 11.F.80 +3c35ec8 sm8750-common: Remove `oplus_bsp_tp_ft3419u` from modules list +c8af67e sm8750-common: Enable the start of the Vendor VM HAL +6f69079 sm8750-common: Update from OOS 11.F.74 + + * hardware/oplus +824602c6 oplus-fwk: Stub NetworklessManager + +==================== + 11-24-2025 +==================== + +==================== + 11-23-2025 +==================== + + * hardware/oplus +32308a2c KeyHandler: Modernize ButtonSettings +7aa28106 KeyHandler: Switch to SwitchPreferenceCompat +c9363253 doze: Convert to SwitchPreferenceCompat + +==================== + 11-22-2025 +==================== + +==================== + 11-21-2025 +==================== + + * device/oneplus/dodge +a3c98b8 dodge: Update from OOS 11.F.80 +a702039 dodge: Update from OOS 11.F.74 + + * device/oneplus/sm8750-common +1b8b99d sm8750-common: Move CNE and DPM to phone blobs list + + * vendor/oneplus/dodge +be23fe9 dodge: Update from OOS 11.F.80 +9858fea dodge: Update from OOS 11.F.74 + + * vendor/oneplus/sm8750-common +93748fa sm8750-common: Update from OOS 11.F.80 +c9a6385 sm8750-common: Update from OOS 11.F.74 +ac979e7 sm8750-common: Move CNE and DPM to phone blobs list + +==================== + 11-20-2025 +==================== + + * kernel/oneplus/sm8750-devicetrees +c51c00a9 Revert "qcom: wlan: Disable wlan_direct_link for select targets" +df72e4a3 treewide: Update changes to CPH2723_16.0.0.211(EX01) +75512164 qcom: Disable minidump.stack_dump + + * manifest +3db19a9 fixup! Unpin alpha manifest + + * packages/apps/Launcher3 +93f9b65895 New Crowdin updates (#507) + +==================== + 11-19-2025 +==================== + + * kernel/oneplus/sm8750-modules +4661b34f66 oplus: Update changes to CPH2723_16.0.0.211(EX01) + diff --git a/changelog_fog.txt b/changelog_fog.txt index fd1cca7..d05c308 100644 --- a/changelog_fog.txt +++ b/changelog_fog.txt @@ -1,26 +1,40 @@ Highlights & Device Specific Changes: Build type: Monthly -Device: Xiaomi Redmi 10C -Device maintainer: ⓓⓑⓛⓔⓝⓚ +Device: Xiaomi Redmi 10C/10 India/10 Power (fog/rain/wind) +Device maintainer: Romeo13card ==================== - 04-05-2023 + 07-12-2025 ==================== -- Update blobs to MIUI V13.0.6.0.SGEMIXM -- Drop unused IR Blaster -- Disable client composition cache -- Disable surfaceflinger EGL image tracking -- Add support CLO BoostFramework -- Update Perf blobs to CLO/CAF blobs ( from AOSPA topaz ) -- Minor fix changes. +-Synchronized with the latest sources +-hofix for vanilla build ==================== - 17-04-2023 + 06-12-2025 ==================== -- Sync with latest source update -- Fix Video playback -- Fix wifi driver load after reboot -- Update CarrierConfig to LA.QSSI.13.0.r1-07400-qssi.0 -- Enable back NFC with hwname SKUs -- Add TetheringConfigOverlays -- Few checkout media configs from LA.UM.9.15.r1-06800-KAMORTA.QSSI13.0 +- AlphaDroid 4.2 +- Update proprietary blobs to MIUI V14.0.10.0.TGEEUXM +- Switch EROFS for GMS build +- Add Leica Camera +- Add ViperFX + +==================== + 10-04-2025 +==================== +- Initial 3.х release +- Vanilla build +- Stable released + +==================== + 11-03-2025 +==================== +- Initial 4.х release +- Vanilla build +- Add KSU +- Stable released + +==================== + 11-24-2025 +==================== +- Syncing with latest sources +- Stable released diff --git a/changelog_fogos.txt b/changelog_fogos.txt new file mode 100644 index 0000000..8255ebe --- /dev/null +++ b/changelog_fogos.txt @@ -0,0 +1,15 @@ +Highlights & Device Specific Changes: +Build type: Monthly +Device: Moto G34 5G (fogos) +Device maintainer: Abhishek Nakchwal (nakchwal) +Required firmware: None + +===== 05-12-2025 ===== +- Initial official AlphaDroid A16 build for fogos +- Improved battery and performance +- Fixed Bluetooth calling issues +- Fixed power button issue +- Enabled blur by default +- Added extra customization +- Unusual lag is solved +- Many more thing were optimized... diff --git a/changelog_garnet.txt b/changelog_garnet.txt index d46e132..a5809a0 100644 --- a/changelog_garnet.txt +++ b/changelog_garnet.txt @@ -1,7 +1,19 @@ Highlights & Device Specific Changes: Build type: Monthly Device: Xiaomi Redmi Note 13 Pro 5G (Garnet) -Device maintainer: franlop77 +Device maintainer: Jotanh + +==================== + 27-10-2025 +==================== +- Dolby Atmos AOSP Included +- Changes in Device Haptic + +==================== + 21-10-2025 +==================== +- AlphaDroid 4.1 Initial Release by Jotanh +- FW Updated to 2.0.202VNRMIXM ==================== 21-06-2025 diff --git a/changelog_husky.txt b/changelog_husky.txt index 86d59b8..05e6044 100644 --- a/changelog_husky.txt +++ b/changelog_husky.txt @@ -1,8 +1,983 @@ Device: Pixel 8 Pro (husky) Device maintainer: OscarM + +==================== + 02-23-2025 +==================== + + * vendor/alpha +dbbe9bc6 Update pif overlay +c22d3ca2 Optimize updater logic + +==================== + 02-22-2025 +==================== + + * frameworks/base +6948be020b94b [SQUASH] Integrate Pixel framework hooks and wrappers +d622f29c808b4 PixelPropsUtils: Update fingerprints to February 2025 release + + * packages/apps/AlphaSettings +c6c91c16 New Crowdin updates (#94) +2582c64e Cleanup unused strings + + * packages/apps/Glimpse +7e7ea6d Glimpse: Fix trashed SECURE_REVIEW items not getting removed from screen +dde8aa8 Glimpse: buildList for the win + + * packages/apps/Twelve +ae0a3ea Twelve: NowPlayingFragment: Fix shuffle and repeat marker being cut in half +af4cd4e Twelve: MediaRepositoryTree: Don't crash in case of error +8710915 Twelve: buildList for the win +6f40e59 Twelve: Add support for search queries +0713aed Twelve: Apply player setup after .build() +5e5d43a Twelve: Lyrics fragment +e822e83 Twelve: Add lyrics view +fc7c6c5 Twelve: SubsonicDataSource: Implement lyrics fetching +85bd87e Twelve: JellyfinDataSource: Implement lyrics fetching +27e846a Twelve: Add lyrics method +65c5974 Twelve: MainActivity: Move intent flow handing to the usual `loadData()` +f9fd41c Twelve: Stop using fitsSystemView=true on CoordinatorLayout +1d1424a Twelve: Set edge to edge and transparent navigation bar color attributes +22e2370 Twelve: Remove useless orientation attribute on CoordinatorLayout + + * vendor/alpha +6d92207a Rework `createjson.sh` (#65) +13f3e960 Update charger animation +fe6dbac1 Build charger animation +e4a0329e android: merge_dtbs: Respect miboard-id while merging +2c09be0c Update default wallpaper + +==================== + 02-21-2025 +==================== + + * packages/apps/AlphaSettings +8a90fdc8 Remove 4G icon switch + + * packages/apps/Glimpse +a05d2fa Glimpse: Show warning regarding trash's auto-empty behavior + + * packages/apps/Settings +c269d741f976 Partially Revert "DynamicDenylistManager shall not exist" +8903d3175789 Settings: Update FaceEnroll ActivityDirector and Confirmation +3b5c0ca7ea24 Settings: Create face confirmation activity +6bbbef1c815f Settings: Create a ActivityDirector to optionally use SettingsGoogleFutureFaceEnroll +05ffe93e8dc4 [SQUASH] Settings changes for Pixel Framework +8b5fcc80a584 Revert "[Settings] Start SettingsDumpService to dump the db log after the db is" +078a9ad69e96 Disable SettingsDumpService +8f2bc0a3e870 Settings: Add missing animations from google +1dcf53457817 Settings: Add a toggle to force LTE_CA +4fe44aca3de6 Settings: Whitelist WRITE_DEVICE_CONFIG permission + +==================== + 02-20-2025 +==================== + + * device/qcom/sepolicy_vndr/sm8450 +0624d88e9 sepolicy: NFC: Label NXP NFC 2.0 HIDL + + * device/qcom/sepolicy_vndr/sm8550 +78af5575a sepolicy: NFC: Label NXP NFC 2.0 HIDL + + * frameworks/base +6351de5582baf Set animation scale to 0.75 + + * packages/apps/AlphaSettings +feb1b2e6 Restore QS layout settings +1e36feaa Restore sensor block settings +c5255df5 Hide UDFPS settings if not supported +6e29bda4 New Crowdin updates (#93) + + * packages/apps/Aperture +0fd3ae9 Aperture: Switch to upstream zxing-cpp + + * packages/apps/Glimpse +2162911 Glimpse: Break as soon a valid media type is found + +==================== + 02-19-2025 +==================== + + * lineage/wiki +f2d6f3bf wiki: libvirt-qemu: VirtIO keyboard does not work on the boot menu + + * manifest +c5e76c0 Create alpha-15.1-pixel branch +8c1ba78 Track Backgrounds from Alpha + + * packages/apps/Backgrounds +859ec8a Backgrounds: add AlphaDroid wallpapers + + * packages/apps/Settings +cf3e20604cc7 Remove BETA tag + + * packages/apps/Updater +e613dc7 Updater: adapt to AlphaDroid + +==================== + 02-18-2025 +==================== + + * build/make +417fdce7b8 tools: Introduce AlphaDroid - Bringed back alpha-14 from [1] and adapted to our new props +6f9eb082b0 build: execute changelog generator script + + * packages/apps/Catapult +fb83201 Catapult: String improvements & fixes + + * packages/apps/Settings +f70d438bc3f7 settings styles: sync accent colors with frameworks/base + + * vendor/alpha +be35ccc3 overlay: sync alpha accent colors with frameworks/base +0d70716a Restore createjson and changelog scripts + + * vendor/gms +ffbf6b5 Add Wellbeing overlay +383645e Drop systemui clocks +3c64a55 Optionally build nexus squad + +==================== + 02-17-2025 +==================== + + * external/avb +5986166 avbtool: Add --set_verification_disabled_flag arg + + * lineage/hudson +fdce9c0 hudson: Promote tama to 22.1 + + * lineage/wiki +958d23f3 wiki: Promote tama to 22.1 + + * manifest +9dfc71b Update clang version +ffe48b7 Create alpha-15.1 branch + + * packages/apps/AlphaSettings +ab23110b AlphaSettings: hide toolbar and restore banner + + * packages/apps/FMRadio +168f373 jni: Move customisation to properties +e603ac7 jni: Always build noise floor detect code and make it conditional + + * packages/apps/Settings +f6b50d9fe219 fixup! Settings Styles redigned + + * packages/apps/Twelve +3dcf24e Twelve: Fix visualizer, hopefully for the last time +5053246 Twelve: Take into account the timeline for the queue +ccdd16b Twelve: Add notification shuffle/repeat +eb13860 Twelve: Use Resources when possible to fetch resources +7b7be5f Twelve: Fix some format strings +b503c04 Twelve: Make player/mediaLibrarySession lateinit +5d265a0 Twelve: Reformat code + + * vendor/addons +19ce0e49 Black theme: fixup +3f94ec3b Add AlphaDroid ufps icon (semi-transparent and transparent versions) +111cbdda add AlphaDroid udfps icon + + * vendor/alpha +b2f77028 brunch: build user variant by default +107ab257 Ready for official builds +d11ac319 Enable ThinLTO cache + +==================== + 02-16-2025 +==================== + + * lineage/mirror +e366ec6 Updated to 15-Feb-2025 23:01 UTC + + * lineage/wiki +b3898e71 wiki: Sm-A217M -> SM-A217M +15192f7d devices: Promote NVIDIA to 22.1 + + * manifest +1fb3646 Track crClang + + * packages/apps/AlphaSettings +085e7f1c Add Wellbeing short title +de4fefb8 Use Alpha style on Alpha settings + + * packages/apps/Aperture +59013c8 Aperture: Update kotlin to 1.9.23 +759f8d0 Aperture: Update gradle{,w} to 8.12 +0e49f58 Aperture: Update ZXing-C++ to 2.3.0 +62bc27b Aperture: Update CameraX to 1.5.0-alpha05 +39a00a1 Aperture: Ensure secure URIs are inserted in order +4fc2193 Aperture: Update kotlin to 1.9.10 + + * packages/apps/DeskClock +296e428c0 DeskClock: Convert ListPreferences to SimpleMenuPreferences +5ddac9586 DeskClock: Remove the summaries for AM/PM and bold text +f0f776a74 DeskClock: Hide or disable some screensaver settings +713a91649 DeskClock: Fix formatting in ScreensaverSettingsActivity + + * packages/apps/Glimpse +a0ad138 Glimpse: Split ACTION_REVIEW from ACTION_REVIEW_SECURE + + * packages/apps/Jelly +1f5f1bc Jelly: Save user agreement about protected media + + * packages/apps/Settings +d61bbcea3990 Disable LiveDisplay settings +a5340ca60020 ROM card view: link to firmware version settings + + * packages/apps/Twelve +1120101 Twelve: Handle empty resumption playlist +2a9b749 Twelve: Readd round icon attribute +1e4626b Twelve: Set wake mode to network +7c4ac24 Twelve: Tie CoilBitmapLoader to service scope + +==================== + 02-15-2025 +==================== + + * device/qcom/sepolicy-legacy-um +ff381799 sepolicy: Add default permission for aidl hal_bootctl + + * packages/apps/Aperture +066ea34 Automatic translation import + + * packages/apps/AudioFX +02916e7 Automatic translation import + + * packages/apps/Camelot +23242a1 Automatic translation import + + * packages/apps/Catapult +c114091 Automatic translation import + + * packages/apps/Contacts +77afb19ff Automatic translation import + + * packages/apps/DeskClock +3db9ea707 Automatic translation import + + * packages/apps/Dialer +5bf5719c7 Automatic translation import + + * packages/apps/DocumentsUI +2b776897f Automatic translation import + + * packages/apps/Etar +578b82a5 Automatic translation import + + * packages/apps/FMRadio +7f5188d Automatic translation import + + * packages/apps/FlipFlap +fe2abce Automatic translation import + + * packages/apps/Glimpse +d47de86 Automatic translation import + + * packages/apps/Jelly +3f4c549 Jelly: Include assets +525b66c Automatic translation import + + * packages/apps/Messaging +ff479f4 Automatic translation import + + * packages/apps/Profiles +7455e65 Automatic translation import + + * packages/apps/Recorder +8f65896 Automatic translation import + + * packages/apps/Twelve +38aff6a Automatic translation import + + * packages/inputmethods/LatinIME +79f3aff8c Automatic translation import + + * packages/providers/DownloadProvider +be8b0fb7 Automatic translation import + + * packages/resources/devicesettings +8624d14 Automatic translation import + + * prebuilts/clang/host/linux-x86/clang-latest +d8a8c91 clang 20.0.0 (based on r547379) from build 13065274 + + * vendor/crowdin +fef707d Automatic translation import + + * vendor/qcom/opensource/commonsys/fm +b38a391 Automatic translation import + +==================== + 02-14-2025 +==================== + + * device/qcom/sepolicy_vndr/legacy-um +87be962ff sepolicy: NFC: Add support for snxxx AIDL service + + * device/qcom/sepolicy_vndr/sm8450 +54ee7c8f8 sepolicy: NFC: Add support for snxxx AIDL service + + * frameworks/base +26431e55b2300 LocaleTile: Fix crash on LongClick +8260056afcc4c Whitelist Google Photos URIs + + * hardware/interfaces +6d4d419194 cec: Don't spam "Machine is not on the network" + + * hardware/lineage/interfaces +9b60d38 Extend Fastcharge implementation [1/3] + + * lineage-sdk +40032999 sdk: Get rid of lineageos.os.{Build,Concierge} + + * lineage/hudson +e10b30e "Fashionably Tegra-late, but worth the wait!" +a3fe984 5th upgrade for konami, I'm out of ideas + + * lineage/mirror +d8342d4 Updated to 13-Feb-2025 23:01 UTC + + * lineage/scripts +38d1654 reuse_helper: Handle kotlin files + + * lineage/wiki +d38b80c5 wiki: Promote Xiaomi SM8250 devices to 22.1 + + * manifest +a643cc0 Track bionic and art from Alpha + + * packages/apps/Jelly +68e9e9f Jelly: Handle MediaSession For BackgroundShortcut +0d0d674 Jelly: Background Shortcuts + + * packages/apps/TvSettings +d6b23f1f2 TvSettings: Support two button mute + + * packages/apps/Twelve +4edf7e3 Twelve: LocalDataSource: Stop pretending we can have artist thumbnails +69f3c76 Twelve: BaseMediaItemView: Simplify thumbnail handling +53ccfe0 Twelve: Navigate safely! +254cec7 Twelve: Ensure all media items have fallback titles +8e70bf3 Twelve: LocalDataSource: `/audio/albumart/` exists too +1cd5d90 Twelve: LocalDataSource: Use hidden album art database +62db55b Twelve: Switch back to vendored material +33444d7 Twelve: Use a custom BitmapLoader for our service +472b00e Twelve: SubsonicDataSource: Use media item builders +8690156 Twelve: Simplify media item to data source and media type querying + +==================== + 02-13-2025 +==================== + + * lineage/hudson +198f81c Regenerate device dependency mappings + + * lineage/mirror +be0c976 Updated to 12-Feb-2025 23:01 UTC + + * packages/apps/Twelve +f010219 Twelve: Use `ProviderIdentifier` for all fragment arguments +59cea6d Twelve: Hide trailing view for local provider +a7af174 Twelve: Media item builders! +32ff491 Twelve: Use Album thumbnail as Audio thumbnail +b5597d7 Twelve: Lowercase cursor column names +1a2d65a Twelve: Fix double .px in MAX_THUMBNAIL_SIZE + + * vendor/alpha +59835401 Disable memtag for different processes + + * vendor/extra +6148f7f Update Lawnchair to version 15.0.0-20250213 + +==================== + 02-12-2025 +==================== + + * art +77ab69d4e1 Fix the divide-by-zero in odrefresh. +3d9f9226ea Speed up `AppendPrettyDescriptor()`. +15c86e55d4 optimized hprof speed +5af74f19cb Speed up `Class::IsInSamePackage()` even more. +3b9980b6eb Speed up `Class::IsInSamePackage()`. +56dc1ca02c Fix app info code type. +7eb26ef86a Use stp/ldp while calling native functions in arm64 +cd450549e7 ART: dex2oat and instruction_set_features: utilize modified runtime capabilities set +cd4057f5f7 Revert "Add visibility attributes in runtime/arch" +352bd28c70 Revert "Remove strip.keep_symbols from libart defaults" +8ab0280085 art: Add support for Cortex-A510 +3d9322a731 art: add check for __ARM_FEATURE_ATOMICS that indicates LSE atomics availability on target +98ba226aba art: Add Kryo585 support +f1263236cc art: Kryo785 supports dotprod +6da4f8a45d art: Disable debug tracing on production builds +c9ae30684b art: add kryo785 architecture variant. + + * bionic +4fd741f00 Ensure prop has zero padding +3759653a5 Prevent serial of ro props from self increment +eb1da2f49 getaddrinfo: Use Cloudflare DNS instead of Google DNS +d36536ebf libm: Support -ffp-contract=fast +0d98c742a Re-enable LTO for libm +7072cc6a6 libc: Set __bionic_asm_align to 64 for arm and arm64 +002d8d906 bionic: Support wildcards in cached hosts file +08847f3bb bionic: Sort and cache hosts file data for fast lookup +0317e202f Revert "Add better jemalloc stat logging." + + * build/blueprint +e29c960 Use pool for mutatorContext and transition contexts +633ab9e Optimize proptools.CalculateHash allocations + + * build/make +f13fdb0cc0 build_image: get squashfs partition size from image size +ed6768708d build: handle missing files in remove_broken_build_tools +3d130d7637 build: Remove broken prebuilts + + * build/soong +bd349ebae soong: Allow flock for changelog generation +fe003d83e soong: Add out/soong/*.glob* to installclean +ce083663b cc/lto: enable unified LTO +377fe9ff4 cc/lto: add property for not restricting instr limit +16d359249 lto: enable O3 optimizations on explicit lto modules +b9db5a9fe cc/lto: instr limit of 40 for explicit LTO modules +128a56e30 Remove workaround for Qualcomm Kryo 385 +02505dab0 Enable crypto extensions for armv9-a +a16ac2ba8 config: Update cortex a75 flags +22e9a39ac config: do not force cortex-a76 as cortex-a75 +e974e4afd cc: Enable more features when using armv8.2-a+dotprod +4af8b30f9 soong: Add kryo300 variant support +1dc94feec soong: add kryo785 architecture variant for arm64. +e97f354ff Define AArch32 soong variable +80b2c1f4b arm_device: Change cortex-a76 mcpu from a55 to a75 +62501bcbc arm64_device: Change cortex-a76 mcpu from a55 to a75 +5e278dd8a Use -march=armv9-a+nosve for Armv9-A arch variant +718e0fbbc Introduce Cortex-A510 CPU variant +ee2aa776b soong: Allow various path commands + + * device/google/atv +66aed86 Revert "atv: sepolicy: public: Pull in hal_client_domain rule" +7beb6ac atv: sepolicy: public: Pull in hal_client_domain rule + + * frameworks/base +566743b7bf78f don't crash apps that depend on missing Gservices provider +132bcb02c55b2 Redesign seekbar +c53aa47a1ef5c SystemUI: Controllable squiggle animation [1/2] +d684e7eefec15 Statusbar: adjustable max visible notification icons [1/2] +1c18973e63ebe privapp-permissions: Grant missing TelephonyProvider perm. +d2ed4205900c1 config: Allow gms to access persistent data partition +9e27c57d39e57 core: Introduce VibrationUtils + + * manifest +c1ab1ed Update vendor/gms path + + * packages/apps/AlphaSettings +4a4a4bb2 Restore squiggle_animation and max notification icons settings +24908c8f Settings dashboard: disable DoT style for now +e9755476 Restore button settings + + * packages/apps/LineageParts +7ad6770 Disable unused components +01ab40a Nuke LineageStats +a71a55d Ship as AlphaDroid based on LineageOS +0e90313 Use ListPreference for charging control fragment +57d571c Update color mode preview from Android 12 +b34ea4d Make trust interface less boring + + * vendor/extra +904796a Update RiMusic to version v0.6.70 + +==================== + 02-11-2025 +==================== + + * hardware/lineage/interfaces +8f445d1 fingerprint: aidl: Improve documentation on sensor_location +3824e1a fingerprint: aidl: Use soong to decide which arch to build +9d7e862 fingerprint: aidl: Allow setting more than one sensor location +87c6ff2 fingerprint: aidl: Initial legacy libhardware implementation +15024d6 fingerprint: aidl: Initial stub service + + * packages/apps/Settings +5dd8c78f8bd1 Disable 'hide IME' preference when 'show hint' is enabled + +==================== + 02-10-2025 +==================== + + * bootable/recovery +08ca33c5 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_bootable_recovery into alpha-15.1-wip + + * build/make +d32898ad47 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build into alpha-15.1 + + * build/soong +f15fc9e7d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build_soong into alpha-15.1 + + * device/qcom/sepolicy_vndr/legacy-um +d929ad85c sepolicy_vndr: allow sensors HAL to do binder call to system_server + + * device/qcom/sepolicy_vndr/sm8450 +76a576ae7 sepolicy_vndr: allow sensors HAL to do binder call to system_server + + * frameworks/av +6a3bf5ba6f fixup! av: support per-app volume [1/3] +4c2afb493d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_av into alpha-15.1-wip + + * frameworks/base +58047e65355de base: Add a toggle for long press on navbar to search [1/3] +90502e054be97 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_base into alpha-15.1-wip + + * hardware/lineage/interfaces +a90b7f9 light: Add `lcd-backlight-ex` to the list of backlight devices +232ba05 light: Add `panel0-backlight-ex` to the list of backlight devices + + * hardware/samsung/nfc +61bc89f nfc: Rename debug level property + + * lineage/hudson +80fbf9a Flash wasn't fast enough +77c8d6c Japan has their own version of everything +67cc451 Burned at the stake, forever to be remembered + + * lineage/wiki +476a125d devices: add LG V50 ThinQ (flashlmdd) +b20eb9dd wiki: add Japanese LG V30 +992de2e1 joan: promote to 22.1 + + * manifest +c811b92 Merge branch 'lineage-22.1' of https://github.com/lineageos/android into alpha-15.1-wip +479a96c Track pixel overlays + + * packages/apps/AlphaSettings +6f09b0a2 Add network_dashboard_short_title +7b7fc2c1 Add dashboard messages +89a50f43 AlphaDroid 3.1 bringup + + * packages/apps/Launcher3 +0c73ad3ff3 Allow locking tasks to recents [2/2] +1f9fa63ef6 Restore 4x4 workspace +7f05a4af09 Launcher3: Adapt strings to Alphadroid +5a94ae4307 Ship as AlphaDroid based on crDroid + + * packages/apps/Settings +cb00e2b56ef9 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_packages_apps_settings into alpha-15.1 +f50b2d1f8938 Settings: Better check for GSA package +87eb0db1aea7 Settings: Add a toggle for long press on navbar to search [3/3] + + * packages/apps/SetupWizard +5f03725 Merge branch 'lineage-22.1' of https://github.com/LineageOS/android_packages_apps_SetupWizard into alpha-15.1 + + * packages/apps/Twelve +dec2d10 Twelve: Make togglePlayPause() rewind if playback has ended +2c66e7b Twelve: Add some margin to create playlist button +11e6ecb Twelve: Don't open bottom sheet for "create playlist" item +8a0e7de Twelve: Move onPrepareView callbacks using item to onBindView +799a828 Twelve: Merge all media item views + + * vendor/alpha +788ff11c Revert "config: Changes for libfmjni bp conversion" +898c8f0f apns: Update Lebara UK +395656f3 vars: Update qcom tags + +==================== + 02-09-2025 +==================== + + * build/make +083d637741 build: dont include tasks from tests and platform_testing +23727aae3b combo: Add kryo585 architecture to known v8 cores +f07fa05673 combo: Add kryo585|785 architectures to known v8-2a cores +0d3aaba9ef combo: Add cortex-a76 to known v8-2a cores +b8eb00ae74 core: Use $(PRODUCT_DEVICE) for auto generated RRO names +616a2095c2 Revert "Add DeviceAsWebcam to general handheld_system" +11233f9763 envsetup.sh: Setup and enable ccache +c562d1ce5f build: Always use release-keys +5edf5fdbac build: Add backuptool by default + + * frameworks/base +4f1dc41a1e26b display: Add simple RGB color balance transform + + * hardware/qcom-caf/msm8953/audio +1b5ce68f1a visualizer: do not use GNU old-style field designators +1809521b6a voice_processing: do not use GNU old-style field designators +218e835767 audio-effects: Fix out-of-bound read +c7945b3662 audio-hal: Fix kw issue +71c5e51120 audio-hal: oob read when doing the typecase +51cdec106b hal: Update 64-bit vendor HAL path +01be9192c4 soundfx: Convert to blueprint & remove unused effects +ddd4045c35 audio: Remove autoconf/automake files + + * hardware/qcom-caf/msm8998/audio +970b452a3b hal: update audio effects config names +0b702d7ccc post_proc: fix mul-overflow +d6bec2c279 hal: Show cal step for volume listener +8f607d5055 visualizer: dynamically parse the sound card when opening mixer +d396d643bf post_proc: Add USB device support for bass boost +32fe461f1e visualizer: do not use GNU old-style field designators +c7b9f35c22 voice_processing: do not use GNU old-style field designators +15a96f3ad3 audio-effects: Fix out-of-bound read +927a1882cf audio-hal: Fix kw issue +fff6b47b04 audio-hal: oob read when doing the typecase +af7b3277b8 hal: Update 64-bit vendor HAL path +a310768ff9 soundfx: Convert to blueprint & remove unused effects + + * hardware/qcom-caf/sm8250/audio +0547a74443 visualizer: do not use GNU old-style field designators +ce9604d4c6 voice_processing: do not use GNU old-style field designators + + * hardware/qcom-caf/sm8250/media +3bfc8ddfb mm-core: Remove no longer used codecs +c64f23926 mm-core: Convert to blueprint +a47853022 mm-core: Remove unused files & flags +d004c5f44 mm-video-v4l2: Convert to blueprint + + * hardware/qcom-caf/sm8350/audio +452725a165 audio: Drop STT meta test app +b13925e6ee visualizer: do not use GNU old-style field designators +f5b6e037a4 voice_processing: do not use GNU old-style field designators + + * lineage/hudson +0aaaa77 hudson: Promote miatoll to 22.1 + + * lineage/wiki +0f1ec4d5 wiki: devices: Promote miatoll to 22.1 + + * packages/apps/Settings +0042bc16f205 AlphaSettings: hide title +9c25876494c6 Settings: Add Circle To Search [2/2] +17fda7c3a0c1 Don't let profiles open the UserSettings overflow +1aaf5972f2af Block the content scheme intent in AccountTypePreferenceLoader +a3b33971f80f Add missing resources +b2e46175ae37 Beta TAG for now +165bb5354e03 FastChargingPreferenceController: implement dynamic summary to show fastcharge status +50d5aeb09479 Extend Fastcharge implementation [2/3] +627713f5f151 BatteryStateDatabase: Set exportSchema to false +fdc77b3080df Settings Styles redigned + + * packages/apps/Twelve +c95473a Twelve: Reformat code +0836d86 Twelve: Fix/improve intent handling navigation + + * vendor/addons +c1d4d392 BlackTheme: Turn colors_material bg colors to black +1cc41ad7 BlackTheme: Update and move color resources to night +87ddda02 Fix transparent Shishu themes + + * vendor/alpha +001ab1c8 Remove unused makefiles +c71b3137 Guard pixel overlays with WITH_PIXEL_OVERLAYS +b678f22d vars: February 2025 Security update + + * vendor/pixeloverlays +fbfbafd Adapt for Alpha + +==================== + 02-08-2025 +==================== + + * build/make +36c1905749 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * device/qcom/sepolicy_vndr/sm8550 +bbbbed900 sepolicy: NFC: Add support for snxxx AIDL service + + * frameworks/base +8f2748b40ab1b Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 +83cd5c824c57b Nuke black theme overlay + + * hardware/qcom-caf/msm8953/audio +23c50e9f81 audio: Remove OMX components +0f32dcd453 audio: Remove disabled HW accelerated effects +e342823606 audio: Remove unsupported QAHW +2b2841b3bc audio: Remove unused hdmi_in_test +c70ad9ca25 audio: Remove deprecated audio daemon + + * hardware/qcom-caf/msm8953/display +47e27c7418 Revert "gpu_tonemapper: Fix compilation issue." +5345254cfd gpu_tonemapper: Fix loop increment never executed +3a56441266 Convert some display libraries to blueprint +681046fd02 Remove unused libcopybit sources +6d2c56e9d5 qdutils/hwc: Remove unused code surrounding fps calculations +61890b7fff sdm: Remove USE_GRALLOC1 conditionals +12d9f2ca89 sdm: Remove use_hwc2 conditional +0bc83cf81d sdm: Remove display_config_version conditionals +bad9b7af9a Revert "hwc2: Avoid adding default color mode when display PP is unsupported" +c54d77b5ca Revert "hwc2: Remove multi-display support from wearables." +be97b92a6e sdm: Cleanup unused code, round 2 +1e0788c9d3 display: Cleanup unused code +9ae410d70b display: Remove deprecated lights.$(TARGET_BOARD_PLATFORM) +a407397f40 display: Remove libmemtrack library + + * hardware/qcom-caf/msm8998/audio +9164a77fbb audio: Remove autoconf/automake files + + * hardware/qcom-caf/sdm845/audio +d6b236ac74 visualizer: do not use GNU old-style field designators +5bb9c04a33 voice_processing: do not use GNU old-style field designators +0c00f920ca audio-effects: Fix out-of-bound read +a8cefba281 audio-hal: Fix kw issue +0a0ffe2aae audio-hal: oob read when doing the typecase +07a88dcd10 hal: Update 64-bit vendor HAL path +f9c22aba8e soundfx: Convert to blueprint & remove unused effects +1f6606f76e audio: Remove autoconf/automake files + + * hardware/qcom-caf/sm8150/audio +15dc2b0cbc visualizer: do not use GNU old-style field designators +c47189f8b2 voice_processing: do not use GNU old-style field designators +b61b62ecf2 audio-hal: Fix kw issue +56b6afdb40 hal: Update 64-bit vendor HAL path +566fa517c3 soundfx: Convert to blueprint & remove unused effects +1e377baf21 audio: Remove autoconf/automake files + + * lineage/wiki +b904cccc Update info on bootloader unlock for new Xiaomi devices + + * manifest +538c253 manifest: February 2025 Security Update +43cb1e2 manifest: Drop legacy QCOM VR HAL + + * packages/apps/AlphaSettings +471c2820 New Crowdin updates (#1221) +92ead45e crdroid: Add strings for Circle To Search +548fef71 crdroid: Add strings for long press on navbar to search + + * packages/apps/Jelly +649eef6 Jelly: set MainActivity launchMode to singleTask + + * packages/apps/Launcher3 +f159d02318 New Crowdin updates (#480) +afac31d785 Launcher3: Fix up jank with navbar long press +18736a612f Launcher3: Add Circle To Search [1/2] +2e5eeeacec Launcher3: Add a toggle for long press on navbar to search [2/3] +79f2f89d15 Launcher3: Implement long press nav bar to search gesture +bf4be376a8 Revert "Launcher3: Add Circle To Search" + + * packages/apps/Updater +35d7963 New translations (#84) +0560741 Update Crowdin configuration file +2c14d1e Catch exceptions when enabling performance mode +0f9e696 Revert "Updater: layout: activity_updates: add spacing.." +c0f32d5 Updater: Update parsed info whenever data is refreshed +13bc9bf Updater: Add support links and some more info +07a0657 Updater: Use headline font for activity header +238d244 Updater: Nuke Lineage's website on installation blocked dialog +91aa830 Updater: Initial adaption for crdroid +fb990ca Updater: Change package name to avoid conflict +835f24a Ship as crDroid based on LOS + + * packages/modules/Bluetooth +9061231e0a BondStateMachine: Fix NPE on some devices +a8abaaf571 gd: hci: Allow disabling erroneous data reporting +9d22ecdada Fix BT noise issue during startup +619f6ee651 Bluetooth timeout feature + + * vendor/alpha +f76398ca vendor: alpha: update default pif values + +==================== + 02-07-2025 +==================== + + * hardware/qcom-caf/bootctrl +3adebe3 Stricter stat when checking for blockdevices +76c9776 Remove goto statements +32e7614 Add function to get active boot slot +91e6460 bootcontrol: count slots correctly +7f432e0 [LSC] Add LOCAL_LICENSE_KINDS to hardware/qcom/bootctrl +b194dcc Add METADATA to bootctrl: BSD=NOTICE + + * hardware/qcom-caf/sm8350/audio +37b09dbbcd soundfx: Convert to blueprint & remove unused effects +170939e8c9 audio: Remove autoconf/automake files +0c1ac0287d audio-hal: oob read when doing the typecase +6dfdc466ab Remove ndk_platform backend. Use the ndk backend. +ea4962f508 Remove log spam when placing power hint call +0cc4c5da5d Probe PowerHAL HIDL first +37beb7942e Support Power HAL AIDL service + + * lineage/hudson +d6b4269 hudson: Promote nairo to 22.1 +a6834bc Regenerate device dependency mappings + + * lineage/wiki +8324ea23 wiki: devices: Promote nairo to 22.1 +b46924c9 wiki: Use `fastboot reboot-recovery` for sweet +cedaf26a wiki: Use `fastboot reboot-recovery` for Xiaomi SM8350 + + * packages/apps/AlphaSettings +dd33f480 New Crowdin updates (#85, #86, #87, #88, #89, #90, #91) + + * packages/apps/FMRadio +f3eb07a FMRadio: Rework custom jni support + + * packages/apps/Glimpse +c57bcd7 Glimpse: Create a Media out of thin air if not in media provider + + * packages/apps/Launcher3 +78bae21c78 Launcher3: Make zram info in recents optional +5078122b0f Launcher3: Set recent opacity to 100 + + * packages/apps/Twelve +2a492f1 Twelve: Fix-up provider preference store +967f2ab Twelve: New create playlist fragment +23e5e41 Twelve: Convert Serializable users to Parcel +ed57e27 Twelve: Better provider selector dialog +b06afb1 Twelve: Commonize Material 3 dialog fragments + + * vendor/qcom/opensource/libfmjni +c5ace14 libfmjni: Convert it to filegroup and header lib + +==================== + 02-06-2025 +==================== + + * device/qcom/sepolicy_vndr/legacy-um +e40b8c7a6 sepolicy: Add default permission for aidl hal_bootctl + + * device/qcom/sepolicy_vndr/sm8450 +3126539a7 sepolicy: Add default permission for aidl hal_bootctl + + * device/qcom/sepolicy_vndr/sm8550 +704bbd332 sepolicy: Add default permission for aidl hal_bootctl + + * external/gptfdisk +b605061 gptfdisk: Make libgptf available to product/vendor + + * hardware/lineage/interfaces +6063eaf light: Add "sprd_backlight" to the list of backlight devices + + * hardware/qcom-caf/sm8550/dataipa +b482ae4 dataipa: Disable all the debugging + + * lineage/wiki +d749782b fixup! wiki: Update jekyll-search +510d60e9 wiki: surya: Update maintainers +b70c854a wiki: faq: Fix Android capitalization + + * packages/apps/Camelot +8318cbd Camelot: Update androidx.pdf to 1.0.0-alpha06 + + * packages/apps/Launcher3 +809e4b5340 Launcher3: Update folder preview and background color + + * vendor/alpha +48604d44 kernel: sign GKI modules +6b8003d1 kernel: preserve GKI modules in vendor modules.dep +5dfa43f1 kernel: break the build when depmod finds missing symbols +a7488f21 kernel: consider gki modules when running depmod for vendor modules +047f5b78 kernel: reduce the use of find when copying modules +ab3bac8a merge_dtbs: Craft unique name for final saved merged trees +17102fc3 merge_dtbs: Use logging and argparse +1466d988 merge_dtbs.py: Print only basenames of dtb* files + ==================== - 08-01-2024 + 02-05-2025 ==================== -* AlphaDroid 2.3 Initial Build + * build/release +1d3087d9 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/build/release into alpha-15.1 + + * frameworks/av +c2d9d7b479 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * frameworks/base +95950965742df SystemUI: Add DOUBLE_TAP_TO_WAKE to tuner service reset exceptions +279abaab4b08f Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/frameworks/base into alpha-15.1-wip + + * lineage/mirror +96d2d14 Updated aosp-minimal to 04-Feb-2025 23:01 UTC + + * packages/apps/Settings +a0338d65bdd5 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * packages/modules/Bluetooth +c2414be0f4 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * packages/modules/Wifi +44969a2973 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/modules/Wifi into alpha-15.1-wip + + * packages/services/Telecomm +7f43170cd Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/services/Telecomm into alpha-15.1-wip + + * system/core +2e3de5ae8 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/system/core into HEAD + + * vendor/gms +b3761f9 Exclude some exempted location overlays +9358184 Rename some resources for now +680d617 gms: Guard Phone packages for wifionly builds +0bfc7d1 gms: Conditionally build some apps +9a0c09d gms: Update to komodo-ota-ap4a.250205.002-e3270b8a +5d5f45a gms: Automatically extract and update GoogleExtServices from apex +83fd693 gms: Drop quick tap sysconfig +5f53ddc gms: Add Contextual Search sysconfig +ee598ee Setup symlink properly for libpowerstatshaldataprovider + + * vendor/pixel-framework +99e9a05 Revert "Disable burn-in protection and smartpixels for now" + +==================== + 02-04-2025 +==================== + + * frameworks/base +0bab1f1269989 SystemUI: Add ability to toggle bluetooth battery level [1/2] +b5fefaf8b8c85 SystemUI: Fix side scrolling issues with vertical/A11 tile layout +8d7538db0a773 SystemUI: Do not marquee QS label text +dbc77eebf4a61 SystemUI: Allow to change QS tile label text size [1/2] +005dda3bc5672 SystemUI: Add QS tile layout settings [1/2] +82fabe387fc3f Make sensor block package list configurable [1/2] +9aa4674b258a6 base: Add Accelerometer and Linear Acceleration sensors in blocking list +fe1960835aa0a FWB: Sensor block per-package switch (1/2) +97e43209a5bee SystemSensorManager: sensor block per-package +b2be26e7180c1 Checking whether ComponentName with current InputMethod is not null +d81bba678f819 fixup: StringBlock: Prevent SystemUI crash when inflating QS + + * hardware/google/pixel +15b40a4f pixel: Switch to common lineage powershare HAL + + * hardware/google/pixel-sepolicy +3961e30 pixel: Switch to common lineage powershare HAL + + * hardware/qcom-caf/sm8450/data-ipa-cfg-mgr +9bef0c7 data-ipa-cfg-mgr: Disable all the debugging + + * hardware/qcom-caf/sm8550/data-ipa-cfg-mgr +19ea389 data-ipa-cfg-mgr: Disable all the debugging + + * hardware/qcom/data/ipacfg-mgr +816edd3 Remove no longer used Android.mk guard +ef8e1ce data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds +ddc7901 data-ipa-cfg-mgr: Disable all the debugging +1921b32 ipanat: Remove test/Android.mk +e753ce9 ipacm: convert Android.mk files to Android.bp +63a4592 ipacm: Fix compilation error for switch case +e821842 google: Add repo license information. +e12c3ac Add hardware/qcom/data/ipacfg-mgr/msm8998 soong namespace + + * lineage/mirror +a3753f4 Updated aosp-minimal to 03-Feb-2025 23:01 UTC + + * lineage/wiki +f0b13a45 wiki: Update information post-migration to Play Integrity + + * tools/extract-utils +9d8fe9b extract-utils: Don't make extract-factory mutually exclusive + + * vendor/alpha +ee7212ee Build LMO Freeform app and sidebar +8fde2067 soong: Add CAMERA_NEEDS_CLIENT_INFO_LIB{_OPLUS} +665c5fcc soong: Add libcameraservice extension config +f7ff180e crdroid: Disable default frame rate limit for games +ba41c8d9 overlay: Use google-sans for font config overlays +a4688341 crdroid: Move face unlock biometric permission to system_ext +7606d8d7 overlay: Add gms location history to extra location packages +17ae3413 overlay: Add tethering to location exemption +472157db overlay: Add SystemUI to location extra packages +1715c719 overlay: Add OmniJaws to location extra packages +98750035 Build extra packages + + * vendor/qcom/opensource/data-ipa-cfg-mgr-legacy-um +2456d63 data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds +ccd3dc5 data-ipa-cfg-mgr: Disable all the debugging diff --git a/komodo_changelog.txt b/changelog_komodo.txt similarity index 100% rename from komodo_changelog.txt rename to changelog_komodo.txt diff --git a/changelog_rubyx.txt b/changelog_rubyx.txt index 258d8f7..8c44289 100644 --- a/changelog_rubyx.txt +++ b/changelog_rubyx.txt @@ -3,6 +3,20 @@ Build type: Monthly Device: Xiaomi Redmi Note 12 Pro 5G/Pro+ 5G Device maintainer: YagizErdemir +==================== + 03-11-2025 +==================== +- AlphaDroid 4.1 +- Update blobs/firmware from OS2.0.8.0.UMOMIXM +- Switched to common mediatek IMS +- Upstream kernel from https://git.kernel.org/pub/scm/linux/kernel/git/cip/linux-cip +- overlay: Disable safe headphone volume +- Disable thumbnail_block_model of libstagefright +- Drop debug.sf.disable_client_composition_cache +- overlay: Downscale task snapshots to 70% +- a few improvements for dolby +- Drop Trustonic Soter service + ==================== 31-05-2025 ==================== diff --git a/changelog_shiba.txt b/changelog_shiba.txt index dd72835..01e88b0 100644 --- a/changelog_shiba.txt +++ b/changelog_shiba.txt @@ -1,7 +1,983 @@ Device: Pixel 8 (shiba) Device maintainer: OscarM + +==================== + 02-23-2025 +==================== + + * vendor/alpha +dbbe9bc6 Update pif overlay +c22d3ca2 Optimize updater logic + +==================== + 02-22-2025 +==================== + + * frameworks/base +6948be020b94b [SQUASH] Integrate Pixel framework hooks and wrappers +d622f29c808b4 PixelPropsUtils: Update fingerprints to February 2025 release + + * packages/apps/AlphaSettings +c6c91c16 New Crowdin updates (#94) +2582c64e Cleanup unused strings + + * packages/apps/Glimpse +7e7ea6d Glimpse: Fix trashed SECURE_REVIEW items not getting removed from screen +dde8aa8 Glimpse: buildList for the win + + * packages/apps/Twelve +ae0a3ea Twelve: NowPlayingFragment: Fix shuffle and repeat marker being cut in half +af4cd4e Twelve: MediaRepositoryTree: Don't crash in case of error +8710915 Twelve: buildList for the win +6f40e59 Twelve: Add support for search queries +0713aed Twelve: Apply player setup after .build() +5e5d43a Twelve: Lyrics fragment +e822e83 Twelve: Add lyrics view +fc7c6c5 Twelve: SubsonicDataSource: Implement lyrics fetching +85bd87e Twelve: JellyfinDataSource: Implement lyrics fetching +27e846a Twelve: Add lyrics method +65c5974 Twelve: MainActivity: Move intent flow handing to the usual `loadData()` +f9fd41c Twelve: Stop using fitsSystemView=true on CoordinatorLayout +1d1424a Twelve: Set edge to edge and transparent navigation bar color attributes +22e2370 Twelve: Remove useless orientation attribute on CoordinatorLayout + + * vendor/alpha +6d92207a Rework `createjson.sh` (#65) +13f3e960 Update charger animation +fe6dbac1 Build charger animation +e4a0329e android: merge_dtbs: Respect miboard-id while merging +2c09be0c Update default wallpaper + +==================== + 02-21-2025 +==================== + + * packages/apps/AlphaSettings +8a90fdc8 Remove 4G icon switch + + * packages/apps/Glimpse +a05d2fa Glimpse: Show warning regarding trash's auto-empty behavior + + * packages/apps/Settings +c269d741f976 Partially Revert "DynamicDenylistManager shall not exist" +8903d3175789 Settings: Update FaceEnroll ActivityDirector and Confirmation +3b5c0ca7ea24 Settings: Create face confirmation activity +6bbbef1c815f Settings: Create a ActivityDirector to optionally use SettingsGoogleFutureFaceEnroll +05ffe93e8dc4 [SQUASH] Settings changes for Pixel Framework +8b5fcc80a584 Revert "[Settings] Start SettingsDumpService to dump the db log after the db is" +078a9ad69e96 Disable SettingsDumpService +8f2bc0a3e870 Settings: Add missing animations from google +1dcf53457817 Settings: Add a toggle to force LTE_CA +4fe44aca3de6 Settings: Whitelist WRITE_DEVICE_CONFIG permission + +==================== + 02-20-2025 +==================== + + * device/qcom/sepolicy_vndr/sm8450 +0624d88e9 sepolicy: NFC: Label NXP NFC 2.0 HIDL + + * device/qcom/sepolicy_vndr/sm8550 +78af5575a sepolicy: NFC: Label NXP NFC 2.0 HIDL + + * frameworks/base +6351de5582baf Set animation scale to 0.75 + + * packages/apps/AlphaSettings +feb1b2e6 Restore QS layout settings +1e36feaa Restore sensor block settings +c5255df5 Hide UDFPS settings if not supported +6e29bda4 New Crowdin updates (#93) + + * packages/apps/Aperture +0fd3ae9 Aperture: Switch to upstream zxing-cpp + + * packages/apps/Glimpse +2162911 Glimpse: Break as soon a valid media type is found + ==================== - 08-01-2024 + 02-19-2025 ==================== -* AlphaDroid 2.3 Initial Build + + * lineage/wiki +f2d6f3bf wiki: libvirt-qemu: VirtIO keyboard does not work on the boot menu + + * manifest +c5e76c0 Create alpha-15.1-pixel branch +8c1ba78 Track Backgrounds from Alpha + + * packages/apps/Backgrounds +859ec8a Backgrounds: add AlphaDroid wallpapers + + * packages/apps/Settings +cf3e20604cc7 Remove BETA tag + + * packages/apps/Updater +e613dc7 Updater: adapt to AlphaDroid + +==================== + 02-18-2025 +==================== + + * build/make +417fdce7b8 tools: Introduce AlphaDroid - Bringed back alpha-14 from [1] and adapted to our new props +6f9eb082b0 build: execute changelog generator script + + * packages/apps/Catapult +fb83201 Catapult: String improvements & fixes + + * packages/apps/Settings +f70d438bc3f7 settings styles: sync accent colors with frameworks/base + + * vendor/alpha +be35ccc3 overlay: sync alpha accent colors with frameworks/base +0d70716a Restore createjson and changelog scripts + + * vendor/gms +ffbf6b5 Add Wellbeing overlay +383645e Drop systemui clocks +3c64a55 Optionally build nexus squad + +==================== + 02-17-2025 +==================== + + * external/avb +5986166 avbtool: Add --set_verification_disabled_flag arg + + * lineage/hudson +fdce9c0 hudson: Promote tama to 22.1 + + * lineage/wiki +958d23f3 wiki: Promote tama to 22.1 + + * manifest +9dfc71b Update clang version +ffe48b7 Create alpha-15.1 branch + + * packages/apps/AlphaSettings +ab23110b AlphaSettings: hide toolbar and restore banner + + * packages/apps/FMRadio +168f373 jni: Move customisation to properties +e603ac7 jni: Always build noise floor detect code and make it conditional + + * packages/apps/Settings +f6b50d9fe219 fixup! Settings Styles redigned + + * packages/apps/Twelve +3dcf24e Twelve: Fix visualizer, hopefully for the last time +5053246 Twelve: Take into account the timeline for the queue +ccdd16b Twelve: Add notification shuffle/repeat +eb13860 Twelve: Use Resources when possible to fetch resources +7b7be5f Twelve: Fix some format strings +b503c04 Twelve: Make player/mediaLibrarySession lateinit +5d265a0 Twelve: Reformat code + + * vendor/addons +19ce0e49 Black theme: fixup +3f94ec3b Add AlphaDroid ufps icon (semi-transparent and transparent versions) +111cbdda add AlphaDroid udfps icon + + * vendor/alpha +b2f77028 brunch: build user variant by default +107ab257 Ready for official builds +d11ac319 Enable ThinLTO cache + +==================== + 02-16-2025 +==================== + + * lineage/mirror +e366ec6 Updated to 15-Feb-2025 23:01 UTC + + * lineage/wiki +b3898e71 wiki: Sm-A217M -> SM-A217M +15192f7d devices: Promote NVIDIA to 22.1 + + * manifest +1fb3646 Track crClang + + * packages/apps/AlphaSettings +085e7f1c Add Wellbeing short title +de4fefb8 Use Alpha style on Alpha settings + + * packages/apps/Aperture +59013c8 Aperture: Update kotlin to 1.9.23 +759f8d0 Aperture: Update gradle{,w} to 8.12 +0e49f58 Aperture: Update ZXing-C++ to 2.3.0 +62bc27b Aperture: Update CameraX to 1.5.0-alpha05 +39a00a1 Aperture: Ensure secure URIs are inserted in order +4fc2193 Aperture: Update kotlin to 1.9.10 + + * packages/apps/DeskClock +296e428c0 DeskClock: Convert ListPreferences to SimpleMenuPreferences +5ddac9586 DeskClock: Remove the summaries for AM/PM and bold text +f0f776a74 DeskClock: Hide or disable some screensaver settings +713a91649 DeskClock: Fix formatting in ScreensaverSettingsActivity + + * packages/apps/Glimpse +a0ad138 Glimpse: Split ACTION_REVIEW from ACTION_REVIEW_SECURE + + * packages/apps/Jelly +1f5f1bc Jelly: Save user agreement about protected media + + * packages/apps/Settings +d61bbcea3990 Disable LiveDisplay settings +a5340ca60020 ROM card view: link to firmware version settings + + * packages/apps/Twelve +1120101 Twelve: Handle empty resumption playlist +2a9b749 Twelve: Readd round icon attribute +1e4626b Twelve: Set wake mode to network +7c4ac24 Twelve: Tie CoilBitmapLoader to service scope + +==================== + 02-15-2025 +==================== + + * device/qcom/sepolicy-legacy-um +ff381799 sepolicy: Add default permission for aidl hal_bootctl + + * packages/apps/Aperture +066ea34 Automatic translation import + + * packages/apps/AudioFX +02916e7 Automatic translation import + + * packages/apps/Camelot +23242a1 Automatic translation import + + * packages/apps/Catapult +c114091 Automatic translation import + + * packages/apps/Contacts +77afb19ff Automatic translation import + + * packages/apps/DeskClock +3db9ea707 Automatic translation import + + * packages/apps/Dialer +5bf5719c7 Automatic translation import + + * packages/apps/DocumentsUI +2b776897f Automatic translation import + + * packages/apps/Etar +578b82a5 Automatic translation import + + * packages/apps/FMRadio +7f5188d Automatic translation import + + * packages/apps/FlipFlap +fe2abce Automatic translation import + + * packages/apps/Glimpse +d47de86 Automatic translation import + + * packages/apps/Jelly +3f4c549 Jelly: Include assets +525b66c Automatic translation import + + * packages/apps/Messaging +ff479f4 Automatic translation import + + * packages/apps/Profiles +7455e65 Automatic translation import + + * packages/apps/Recorder +8f65896 Automatic translation import + + * packages/apps/Twelve +38aff6a Automatic translation import + + * packages/inputmethods/LatinIME +79f3aff8c Automatic translation import + + * packages/providers/DownloadProvider +be8b0fb7 Automatic translation import + + * packages/resources/devicesettings +8624d14 Automatic translation import + + * prebuilts/clang/host/linux-x86/clang-latest +d8a8c91 clang 20.0.0 (based on r547379) from build 13065274 + + * vendor/crowdin +fef707d Automatic translation import + + * vendor/qcom/opensource/commonsys/fm +b38a391 Automatic translation import + +==================== + 02-14-2025 +==================== + + * device/qcom/sepolicy_vndr/legacy-um +87be962ff sepolicy: NFC: Add support for snxxx AIDL service + + * device/qcom/sepolicy_vndr/sm8450 +54ee7c8f8 sepolicy: NFC: Add support for snxxx AIDL service + + * frameworks/base +26431e55b2300 LocaleTile: Fix crash on LongClick +8260056afcc4c Whitelist Google Photos URIs + + * hardware/interfaces +6d4d419194 cec: Don't spam "Machine is not on the network" + + * hardware/lineage/interfaces +9b60d38 Extend Fastcharge implementation [1/3] + + * lineage-sdk +40032999 sdk: Get rid of lineageos.os.{Build,Concierge} + + * lineage/hudson +e10b30e "Fashionably Tegra-late, but worth the wait!" +a3fe984 5th upgrade for konami, I'm out of ideas + + * lineage/mirror +d8342d4 Updated to 13-Feb-2025 23:01 UTC + + * lineage/scripts +38d1654 reuse_helper: Handle kotlin files + + * lineage/wiki +d38b80c5 wiki: Promote Xiaomi SM8250 devices to 22.1 + + * manifest +a643cc0 Track bionic and art from Alpha + + * packages/apps/Jelly +68e9e9f Jelly: Handle MediaSession For BackgroundShortcut +0d0d674 Jelly: Background Shortcuts + + * packages/apps/TvSettings +d6b23f1f2 TvSettings: Support two button mute + + * packages/apps/Twelve +4edf7e3 Twelve: LocalDataSource: Stop pretending we can have artist thumbnails +69f3c76 Twelve: BaseMediaItemView: Simplify thumbnail handling +53ccfe0 Twelve: Navigate safely! +254cec7 Twelve: Ensure all media items have fallback titles +8e70bf3 Twelve: LocalDataSource: `/audio/albumart/` exists too +1cd5d90 Twelve: LocalDataSource: Use hidden album art database +62db55b Twelve: Switch back to vendored material +33444d7 Twelve: Use a custom BitmapLoader for our service +472b00e Twelve: SubsonicDataSource: Use media item builders +8690156 Twelve: Simplify media item to data source and media type querying + +==================== + 02-13-2025 +==================== + + * lineage/hudson +198f81c Regenerate device dependency mappings + + * lineage/mirror +be0c976 Updated to 12-Feb-2025 23:01 UTC + + * packages/apps/Twelve +f010219 Twelve: Use `ProviderIdentifier` for all fragment arguments +59cea6d Twelve: Hide trailing view for local provider +a7af174 Twelve: Media item builders! +32ff491 Twelve: Use Album thumbnail as Audio thumbnail + + * vendor/alpha +59835401 Disable memtag for different processes + + * vendor/extra +6148f7f Update Lawnchair to version 15.0.0-20250213 + +==================== + 02-12-2025 +==================== + + * art +77ab69d4e1 Fix the divide-by-zero in odrefresh. +3d9f9226ea Speed up `AppendPrettyDescriptor()`. +15c86e55d4 optimized hprof speed +5af74f19cb Speed up `Class::IsInSamePackage()` even more. +3b9980b6eb Speed up `Class::IsInSamePackage()`. +56dc1ca02c Fix app info code type. +7eb26ef86a Use stp/ldp while calling native functions in arm64 +cd450549e7 ART: dex2oat and instruction_set_features: utilize modified runtime capabilities set +cd4057f5f7 Revert "Add visibility attributes in runtime/arch" +352bd28c70 Revert "Remove strip.keep_symbols from libart defaults" +8ab0280085 art: Add support for Cortex-A510 +3d9322a731 art: add check for __ARM_FEATURE_ATOMICS that indicates LSE atomics availability on target +98ba226aba art: Add Kryo585 support +f1263236cc art: Kryo785 supports dotprod +6da4f8a45d art: Disable debug tracing on production builds +c9ae30684b art: add kryo785 architecture variant. + + * bionic +4fd741f00 Ensure prop has zero padding +3759653a5 Prevent serial of ro props from self increment +eb1da2f49 getaddrinfo: Use Cloudflare DNS instead of Google DNS +d36536ebf libm: Support -ffp-contract=fast +0d98c742a Re-enable LTO for libm +7072cc6a6 libc: Set __bionic_asm_align to 64 for arm and arm64 +002d8d906 bionic: Support wildcards in cached hosts file +08847f3bb bionic: Sort and cache hosts file data for fast lookup +0317e202f Revert "Add better jemalloc stat logging." + + * build/blueprint +e29c960 Use pool for mutatorContext and transition contexts +633ab9e Optimize proptools.CalculateHash allocations + + * build/make +f13fdb0cc0 build_image: get squashfs partition size from image size +ed6768708d build: handle missing files in remove_broken_build_tools +3d130d7637 build: Remove broken prebuilts + + * build/soong +bd349ebae soong: Allow flock for changelog generation +fe003d83e soong: Add out/soong/*.glob* to installclean +ce083663b cc/lto: enable unified LTO +377fe9ff4 cc/lto: add property for not restricting instr limit +16d359249 lto: enable O3 optimizations on explicit lto modules +b9db5a9fe cc/lto: instr limit of 40 for explicit LTO modules +128a56e30 Remove workaround for Qualcomm Kryo 385 +02505dab0 Enable crypto extensions for armv9-a +a16ac2ba8 config: Update cortex a75 flags +22e9a39ac config: do not force cortex-a76 as cortex-a75 +e974e4afd cc: Enable more features when using armv8.2-a+dotprod +4af8b30f9 soong: Add kryo300 variant support +1dc94feec soong: add kryo785 architecture variant for arm64. +e97f354ff Define AArch32 soong variable +80b2c1f4b arm_device: Change cortex-a76 mcpu from a55 to a75 +62501bcbc arm64_device: Change cortex-a76 mcpu from a55 to a75 +5e278dd8a Use -march=armv9-a+nosve for Armv9-A arch variant +718e0fbbc Introduce Cortex-A510 CPU variant +ee2aa776b soong: Allow various path commands + + * device/google/atv +66aed86 Revert "atv: sepolicy: public: Pull in hal_client_domain rule" +7beb6ac atv: sepolicy: public: Pull in hal_client_domain rule + + * frameworks/base +566743b7bf78f don't crash apps that depend on missing Gservices provider +132bcb02c55b2 Redesign seekbar +c53aa47a1ef5c SystemUI: Controllable squiggle animation [1/2] +d684e7eefec15 Statusbar: adjustable max visible notification icons [1/2] +1c18973e63ebe privapp-permissions: Grant missing TelephonyProvider perm. +d2ed4205900c1 config: Allow gms to access persistent data partition +9e27c57d39e57 core: Introduce VibrationUtils + + * manifest +c1ab1ed Update vendor/gms path + + * packages/apps/AlphaSettings +4a4a4bb2 Restore squiggle_animation and max notification icons settings +24908c8f Settings dashboard: disable DoT style for now +e9755476 Restore button settings + + * packages/apps/LineageParts +7ad6770 Disable unused components +01ab40a Nuke LineageStats +a71a55d Ship as AlphaDroid based on LineageOS +0e90313 Use ListPreference for charging control fragment +57d571c Update color mode preview from Android 12 +b34ea4d Make trust interface less boring + + * packages/apps/Twelve +b5597d7 Twelve: Lowercase cursor column names +1a2d65a Twelve: Fix double .px in MAX_THUMBNAIL_SIZE + + * vendor/extra +904796a Update RiMusic to version v0.6.70 + +==================== + 02-11-2025 +==================== + + * hardware/lineage/interfaces +8f445d1 fingerprint: aidl: Improve documentation on sensor_location +3824e1a fingerprint: aidl: Use soong to decide which arch to build +9d7e862 fingerprint: aidl: Allow setting more than one sensor location +87c6ff2 fingerprint: aidl: Initial legacy libhardware implementation +15024d6 fingerprint: aidl: Initial stub service + + * packages/apps/Settings +5dd8c78f8bd1 Disable 'hide IME' preference when 'show hint' is enabled + +==================== + 02-10-2025 +==================== + + * bootable/recovery +08ca33c5 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_bootable_recovery into alpha-15.1-wip + + * build/make +d32898ad47 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build into alpha-15.1 + + * build/soong +f15fc9e7d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build_soong into alpha-15.1 + + * device/qcom/sepolicy_vndr/legacy-um +d929ad85c sepolicy_vndr: allow sensors HAL to do binder call to system_server + + * device/qcom/sepolicy_vndr/sm8450 +76a576ae7 sepolicy_vndr: allow sensors HAL to do binder call to system_server + + * frameworks/av +6a3bf5ba6f fixup! av: support per-app volume [1/3] +4c2afb493d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_av into alpha-15.1-wip + + * frameworks/base +58047e65355de base: Add a toggle for long press on navbar to search [1/3] +90502e054be97 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_base into alpha-15.1-wip + + * hardware/lineage/interfaces +a90b7f9 light: Add `lcd-backlight-ex` to the list of backlight devices +232ba05 light: Add `panel0-backlight-ex` to the list of backlight devices + + * hardware/samsung/nfc +61bc89f nfc: Rename debug level property + + * lineage/hudson +80fbf9a Flash wasn't fast enough +77c8d6c Japan has their own version of everything +67cc451 Burned at the stake, forever to be remembered + + * lineage/wiki +476a125d devices: add LG V50 ThinQ (flashlmdd) +b20eb9dd wiki: add Japanese LG V30 +992de2e1 joan: promote to 22.1 + + * manifest +c811b92 Merge branch 'lineage-22.1' of https://github.com/lineageos/android into alpha-15.1-wip +479a96c Track pixel overlays + + * packages/apps/AlphaSettings +6f09b0a2 Add network_dashboard_short_title +7b7fc2c1 Add dashboard messages +89a50f43 AlphaDroid 3.1 bringup + + * packages/apps/Launcher3 +0c73ad3ff3 Allow locking tasks to recents [2/2] +1f9fa63ef6 Restore 4x4 workspace +7f05a4af09 Launcher3: Adapt strings to Alphadroid +5a94ae4307 Ship as AlphaDroid based on crDroid + + * packages/apps/Settings +cb00e2b56ef9 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_packages_apps_settings into alpha-15.1 +f50b2d1f8938 Settings: Better check for GSA package +87eb0db1aea7 Settings: Add a toggle for long press on navbar to search [3/3] + + * packages/apps/SetupWizard +5f03725 Merge branch 'lineage-22.1' of https://github.com/LineageOS/android_packages_apps_SetupWizard into alpha-15.1 + + * packages/apps/Twelve +dec2d10 Twelve: Make togglePlayPause() rewind if playback has ended +2c66e7b Twelve: Add some margin to create playlist button +11e6ecb Twelve: Don't open bottom sheet for "create playlist" item +8a0e7de Twelve: Move onPrepareView callbacks using item to onBindView +799a828 Twelve: Merge all media item views + + * vendor/alpha +788ff11c Revert "config: Changes for libfmjni bp conversion" +898c8f0f apns: Update Lebara UK +395656f3 vars: Update qcom tags + +==================== + 02-09-2025 +==================== + + * build/make +083d637741 build: dont include tasks from tests and platform_testing +23727aae3b combo: Add kryo585 architecture to known v8 cores +f07fa05673 combo: Add kryo585|785 architectures to known v8-2a cores +0d3aaba9ef combo: Add cortex-a76 to known v8-2a cores +b8eb00ae74 core: Use $(PRODUCT_DEVICE) for auto generated RRO names +616a2095c2 Revert "Add DeviceAsWebcam to general handheld_system" +11233f9763 envsetup.sh: Setup and enable ccache +c562d1ce5f build: Always use release-keys +5edf5fdbac build: Add backuptool by default + + * frameworks/base +4f1dc41a1e26b display: Add simple RGB color balance transform + + * hardware/qcom-caf/msm8953/audio +1b5ce68f1a visualizer: do not use GNU old-style field designators +1809521b6a voice_processing: do not use GNU old-style field designators +218e835767 audio-effects: Fix out-of-bound read +c7945b3662 audio-hal: Fix kw issue +71c5e51120 audio-hal: oob read when doing the typecase +51cdec106b hal: Update 64-bit vendor HAL path +01be9192c4 soundfx: Convert to blueprint & remove unused effects +ddd4045c35 audio: Remove autoconf/automake files + + * hardware/qcom-caf/sm8250/audio +0547a74443 visualizer: do not use GNU old-style field designators +ce9604d4c6 voice_processing: do not use GNU old-style field designators + + * hardware/qcom-caf/sm8250/media +3bfc8ddfb mm-core: Remove no longer used codecs +c64f23926 mm-core: Convert to blueprint +a47853022 mm-core: Remove unused files & flags +d004c5f44 mm-video-v4l2: Convert to blueprint + + * hardware/qcom-caf/sm8350/audio +452725a165 audio: Drop STT meta test app +b13925e6ee visualizer: do not use GNU old-style field designators +f5b6e037a4 voice_processing: do not use GNU old-style field designators + + * lineage/hudson +0aaaa77 hudson: Promote miatoll to 22.1 + + * lineage/wiki +0f1ec4d5 wiki: devices: Promote miatoll to 22.1 + + * packages/apps/Settings +0042bc16f205 AlphaSettings: hide title +9c25876494c6 Settings: Add Circle To Search [2/2] +17fda7c3a0c1 Don't let profiles open the UserSettings overflow +1aaf5972f2af Block the content scheme intent in AccountTypePreferenceLoader +a3b33971f80f Add missing resources +b2e46175ae37 Beta TAG for now +165bb5354e03 FastChargingPreferenceController: implement dynamic summary to show fastcharge status +50d5aeb09479 Extend Fastcharge implementation [2/3] +627713f5f151 BatteryStateDatabase: Set exportSchema to false +fdc77b3080df Settings Styles redigned + + * packages/apps/Twelve +c95473a Twelve: Reformat code +0836d86 Twelve: Fix/improve intent handling navigation + + * vendor/addons +c1d4d392 BlackTheme: Turn colors_material bg colors to black +1cc41ad7 BlackTheme: Update and move color resources to night +87ddda02 Fix transparent Shishu themes + + * vendor/alpha +001ab1c8 Remove unused makefiles +c71b3137 Guard pixel overlays with WITH_PIXEL_OVERLAYS +b678f22d vars: February 2025 Security update + + * vendor/pixeloverlays +fbfbafd Adapt for Alpha + +==================== + 02-08-2025 +==================== + + * build/make +36c1905749 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * device/qcom/sepolicy_vndr/sm8550 +bbbbed900 sepolicy: NFC: Add support for snxxx AIDL service + + * frameworks/base +8f2748b40ab1b Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 +83cd5c824c57b Nuke black theme overlay + + * hardware/qcom-caf/msm8953/audio +23c50e9f81 audio: Remove OMX components +0f32dcd453 audio: Remove disabled HW accelerated effects +e342823606 audio: Remove unsupported QAHW +2b2841b3bc audio: Remove unused hdmi_in_test +c70ad9ca25 audio: Remove deprecated audio daemon + + * hardware/qcom-caf/msm8953/display +47e27c7418 Revert "gpu_tonemapper: Fix compilation issue." +5345254cfd gpu_tonemapper: Fix loop increment never executed +3a56441266 Convert some display libraries to blueprint +681046fd02 Remove unused libcopybit sources +6d2c56e9d5 qdutils/hwc: Remove unused code surrounding fps calculations +61890b7fff sdm: Remove USE_GRALLOC1 conditionals +12d9f2ca89 sdm: Remove use_hwc2 conditional +0bc83cf81d sdm: Remove display_config_version conditionals +bad9b7af9a Revert "hwc2: Avoid adding default color mode when display PP is unsupported" +c54d77b5ca Revert "hwc2: Remove multi-display support from wearables." +be97b92a6e sdm: Cleanup unused code, round 2 +1e0788c9d3 display: Cleanup unused code +9ae410d70b display: Remove deprecated lights.$(TARGET_BOARD_PLATFORM) +a407397f40 display: Remove libmemtrack library + + * hardware/qcom-caf/msm8998/audio +970b452a3b hal: update audio effects config names +0b702d7ccc post_proc: fix mul-overflow +d6bec2c279 hal: Show cal step for volume listener +8f607d5055 visualizer: dynamically parse the sound card when opening mixer +d396d643bf post_proc: Add USB device support for bass boost +32fe461f1e visualizer: do not use GNU old-style field designators +c7b9f35c22 voice_processing: do not use GNU old-style field designators +15a96f3ad3 audio-effects: Fix out-of-bound read +927a1882cf audio-hal: Fix kw issue +fff6b47b04 audio-hal: oob read when doing the typecase +af7b3277b8 hal: Update 64-bit vendor HAL path +a310768ff9 soundfx: Convert to blueprint & remove unused effects +9164a77fbb audio: Remove autoconf/automake files + + * hardware/qcom-caf/sdm845/audio +d6b236ac74 visualizer: do not use GNU old-style field designators +5bb9c04a33 voice_processing: do not use GNU old-style field designators +0c00f920ca audio-effects: Fix out-of-bound read +a8cefba281 audio-hal: Fix kw issue +0a0ffe2aae audio-hal: oob read when doing the typecase +07a88dcd10 hal: Update 64-bit vendor HAL path +f9c22aba8e soundfx: Convert to blueprint & remove unused effects +1f6606f76e audio: Remove autoconf/automake files + + * hardware/qcom-caf/sm8150/audio +15dc2b0cbc visualizer: do not use GNU old-style field designators +c47189f8b2 voice_processing: do not use GNU old-style field designators +b61b62ecf2 audio-hal: Fix kw issue +56b6afdb40 hal: Update 64-bit vendor HAL path +566fa517c3 soundfx: Convert to blueprint & remove unused effects +1e377baf21 audio: Remove autoconf/automake files + + * lineage/wiki +b904cccc Update info on bootloader unlock for new Xiaomi devices + + * manifest +538c253 manifest: February 2025 Security Update +43cb1e2 manifest: Drop legacy QCOM VR HAL + + * packages/apps/AlphaSettings +471c2820 New Crowdin updates (#1221) +92ead45e crdroid: Add strings for Circle To Search +548fef71 crdroid: Add strings for long press on navbar to search + + * packages/apps/Jelly +649eef6 Jelly: set MainActivity launchMode to singleTask + + * packages/apps/Launcher3 +f159d02318 New Crowdin updates (#480) +afac31d785 Launcher3: Fix up jank with navbar long press +18736a612f Launcher3: Add Circle To Search [1/2] +2e5eeeacec Launcher3: Add a toggle for long press on navbar to search [2/3] +79f2f89d15 Launcher3: Implement long press nav bar to search gesture +bf4be376a8 Revert "Launcher3: Add Circle To Search" + + * packages/apps/Updater +35d7963 New translations (#84) +0560741 Update Crowdin configuration file +2c14d1e Catch exceptions when enabling performance mode +0f9e696 Revert "Updater: layout: activity_updates: add spacing.." +c0f32d5 Updater: Update parsed info whenever data is refreshed +13bc9bf Updater: Add support links and some more info +07a0657 Updater: Use headline font for activity header +238d244 Updater: Nuke Lineage's website on installation blocked dialog +91aa830 Updater: Initial adaption for crdroid +fb990ca Updater: Change package name to avoid conflict +835f24a Ship as crDroid based on LOS + + * packages/modules/Bluetooth +9061231e0a BondStateMachine: Fix NPE on some devices +a8abaaf571 gd: hci: Allow disabling erroneous data reporting +9d22ecdada Fix BT noise issue during startup +619f6ee651 Bluetooth timeout feature + + * vendor/alpha +f76398ca vendor: alpha: update default pif values + +==================== + 02-07-2025 +==================== + + * hardware/qcom-caf/sm8350/audio +37b09dbbcd soundfx: Convert to blueprint & remove unused effects +170939e8c9 audio: Remove autoconf/automake files +0c1ac0287d audio-hal: oob read when doing the typecase +6dfdc466ab Remove ndk_platform backend. Use the ndk backend. +ea4962f508 Remove log spam when placing power hint call +0cc4c5da5d Probe PowerHAL HIDL first +37beb7942e Support Power HAL AIDL service + + * lineage/hudson +d6b4269 hudson: Promote nairo to 22.1 +a6834bc Regenerate device dependency mappings + + * lineage/wiki +8324ea23 wiki: devices: Promote nairo to 22.1 +b46924c9 wiki: Use `fastboot reboot-recovery` for sweet +cedaf26a wiki: Use `fastboot reboot-recovery` for Xiaomi SM8350 + + * packages/apps/AlphaSettings +dd33f480 New Crowdin updates (#85, #86, #87, #88, #89, #90, #91) + + * packages/apps/FMRadio +f3eb07a FMRadio: Rework custom jni support + + * packages/apps/Glimpse +c57bcd7 Glimpse: Create a Media out of thin air if not in media provider + + * packages/apps/Launcher3 +78bae21c78 Launcher3: Make zram info in recents optional +5078122b0f Launcher3: Set recent opacity to 100 + + * packages/apps/Twelve +2a492f1 Twelve: Fix-up provider preference store +967f2ab Twelve: New create playlist fragment +23e5e41 Twelve: Convert Serializable users to Parcel +ed57e27 Twelve: Better provider selector dialog +b06afb1 Twelve: Commonize Material 3 dialog fragments + + * vendor/qcom/opensource/libfmjni +c5ace14 libfmjni: Convert it to filegroup and header lib + +==================== + 02-06-2025 +==================== + + * device/qcom/sepolicy_vndr/legacy-um +e40b8c7a6 sepolicy: Add default permission for aidl hal_bootctl + + * device/qcom/sepolicy_vndr/sm8450 +3126539a7 sepolicy: Add default permission for aidl hal_bootctl + + * device/qcom/sepolicy_vndr/sm8550 +704bbd332 sepolicy: Add default permission for aidl hal_bootctl + + * external/gptfdisk +b605061 gptfdisk: Make libgptf available to product/vendor + + * hardware/lineage/interfaces +6063eaf light: Add "sprd_backlight" to the list of backlight devices + + * hardware/qcom-caf/bootctrl +3adebe3 Stricter stat when checking for blockdevices +76c9776 Remove goto statements +32e7614 Add function to get active boot slot +91e6460 bootcontrol: count slots correctly +7f432e0 [LSC] Add LOCAL_LICENSE_KINDS to hardware/qcom/bootctrl +b194dcc Add METADATA to bootctrl: BSD=NOTICE + + * hardware/qcom-caf/sm8550/dataipa +b482ae4 dataipa: Disable all the debugging + + * lineage/wiki +d749782b fixup! wiki: Update jekyll-search +510d60e9 wiki: surya: Update maintainers +b70c854a wiki: faq: Fix Android capitalization + + * packages/apps/Camelot +8318cbd Camelot: Update androidx.pdf to 1.0.0-alpha06 + + * packages/apps/Launcher3 +809e4b5340 Launcher3: Update folder preview and background color + + * vendor/alpha +48604d44 kernel: sign GKI modules +6b8003d1 kernel: preserve GKI modules in vendor modules.dep +5dfa43f1 kernel: break the build when depmod finds missing symbols +a7488f21 kernel: consider gki modules when running depmod for vendor modules +047f5b78 kernel: reduce the use of find when copying modules +ab3bac8a merge_dtbs: Craft unique name for final saved merged trees +17102fc3 merge_dtbs: Use logging and argparse +1466d988 merge_dtbs.py: Print only basenames of dtb* files + +==================== + 02-05-2025 +==================== + + * build/release +1d3087d9 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/build/release into alpha-15.1 + + * frameworks/av +c2d9d7b479 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * frameworks/base +95950965742df SystemUI: Add DOUBLE_TAP_TO_WAKE to tuner service reset exceptions +279abaab4b08f Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/frameworks/base into alpha-15.1-wip + + * lineage/mirror +96d2d14 Updated aosp-minimal to 04-Feb-2025 23:01 UTC + + * packages/apps/Settings +a0338d65bdd5 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * packages/modules/Bluetooth +c2414be0f4 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 + + * packages/modules/Wifi +44969a2973 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/modules/Wifi into alpha-15.1-wip + + * packages/services/Telecomm +7f43170cd Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/services/Telecomm into alpha-15.1-wip + + * system/core +2e3de5ae8 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/system/core into HEAD + + * vendor/gms +b3761f9 Exclude some exempted location overlays +9358184 Rename some resources for now +680d617 gms: Guard Phone packages for wifionly builds +0bfc7d1 gms: Conditionally build some apps +9a0c09d gms: Update to komodo-ota-ap4a.250205.002-e3270b8a +5d5f45a gms: Automatically extract and update GoogleExtServices from apex +83fd693 gms: Drop quick tap sysconfig +5f53ddc gms: Add Contextual Search sysconfig +ee598ee Setup symlink properly for libpowerstatshaldataprovider + + * vendor/pixel-framework +99e9a05 Revert "Disable burn-in protection and smartpixels for now" + +==================== + 02-04-2025 +==================== + + * frameworks/base +0bab1f1269989 SystemUI: Add ability to toggle bluetooth battery level [1/2] +b5fefaf8b8c85 SystemUI: Fix side scrolling issues with vertical/A11 tile layout +8d7538db0a773 SystemUI: Do not marquee QS label text +dbc77eebf4a61 SystemUI: Allow to change QS tile label text size [1/2] +005dda3bc5672 SystemUI: Add QS tile layout settings [1/2] +82fabe387fc3f Make sensor block package list configurable [1/2] +9aa4674b258a6 base: Add Accelerometer and Linear Acceleration sensors in blocking list +fe1960835aa0a FWB: Sensor block per-package switch (1/2) +97e43209a5bee SystemSensorManager: sensor block per-package +b2be26e7180c1 Checking whether ComponentName with current InputMethod is not null +d81bba678f819 fixup: StringBlock: Prevent SystemUI crash when inflating QS + + * hardware/google/pixel +15b40a4f pixel: Switch to common lineage powershare HAL + + * hardware/google/pixel-sepolicy +3961e30 pixel: Switch to common lineage powershare HAL + + * hardware/qcom-caf/sm8450/data-ipa-cfg-mgr +9bef0c7 data-ipa-cfg-mgr: Disable all the debugging + + * hardware/qcom-caf/sm8550/data-ipa-cfg-mgr +19ea389 data-ipa-cfg-mgr: Disable all the debugging + + * hardware/qcom/data/ipacfg-mgr +816edd3 Remove no longer used Android.mk guard +ef8e1ce data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds +ddc7901 data-ipa-cfg-mgr: Disable all the debugging +1921b32 ipanat: Remove test/Android.mk +e753ce9 ipacm: convert Android.mk files to Android.bp +63a4592 ipacm: Fix compilation error for switch case +e821842 google: Add repo license information. +e12c3ac Add hardware/qcom/data/ipacfg-mgr/msm8998 soong namespace + + * lineage/mirror +a3753f4 Updated aosp-minimal to 03-Feb-2025 23:01 UTC + + * lineage/wiki +f0b13a45 wiki: Update information post-migration to Play Integrity + + * tools/extract-utils +9d8fe9b extract-utils: Don't make extract-factory mutually exclusive + + * vendor/alpha +ee7212ee Build LMO Freeform app and sidebar +8fde2067 soong: Add CAMERA_NEEDS_CLIENT_INFO_LIB{_OPLUS} +665c5fcc soong: Add libcameraservice extension config +f7ff180e crdroid: Disable default frame rate limit for games +ba41c8d9 overlay: Use google-sans for font config overlays +a4688341 crdroid: Move face unlock biometric permission to system_ext +7606d8d7 overlay: Add gms location history to extra location packages +17ae3413 overlay: Add tethering to location exemption +472157db overlay: Add SystemUI to location extra packages +1715c719 overlay: Add OmniJaws to location extra packages +98750035 Build extra packages + + * vendor/qcom/opensource/data-ipa-cfg-mgr-legacy-um +2456d63 data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds +ccd3dc5 data-ipa-cfg-mgr: Disable all the debugging diff --git a/changelog_stone.txt b/changelog_stone.txt index bd1d78c..a179d99 100644 --- a/changelog_stone.txt +++ b/changelog_stone.txt @@ -3,6 +3,23 @@ Build type: Monthly Device: POCO X5 5G/Redmi Note 12 5G Device maintainer: KamiKaonashi +==================== + 06-12-2025 +==================== + +updated trees, kernel and vendor +minor tweaks + +==================== + 13-10-2025 +==================== + +initial Android 16 release +add simple performance mode +add screen resolution options and per app resolution +add fsr per app (experimental) +update kernel, trees, vendor + ==================== 21-06-2025 ==================== diff --git a/changelog_sweet.txt b/changelog_sweet.txt index a384575..44730f9 100644 --- a/changelog_sweet.txt +++ b/changelog_sweet.txt @@ -4,7 +4,39 @@ Device: Xiaomi Redmi Note 10 Pro (sweet) Device maintainer: Javi ==================== - 09-09-2025 + 23-11-2025 +==================== +- October security patch +- Dolby aospa OSS blobs OnePlus support +- Leica Holly Bear support +- Increase speaker volume +- Add bluetooth power data to power_profile +- Outertune support +- Enable camera toggle support +- Add per app maximum refresh rate +- Implement torch light control +- Enable anti_flicker by default +- Move lift to check phone (doze support) +- Reset swappiness to 100 + +Credits: +- aryannn999,neobuddy89 and Lineageos Team for continuing to support this fantastic device +- Karan-Frost dolby repo https://github.com/frost-testzone/vendor_oneplus_dolby +- Team AlphaDroid + +==================== + 08-10-2025 +==================== + +- Initial Android 16 released AlphaDroid 4.1 + +Credits: +- aryannn999,neobuddy89 and Lineageos Team for continuing to support this fantastic device +- DeltaForce_120FPS For testing +- Team AlphaDroid + +==================== +09-09-2025 ==================== - Dolby included diff --git a/tokay_changelog.txt b/changelog_tokay.txt similarity index 100% rename from tokay_changelog.txt rename to changelog_tokay.txt diff --git a/changelog_waffle.txt b/changelog_waffle.txt new file mode 100644 index 0000000..c3fcd66 --- /dev/null +++ b/changelog_waffle.txt @@ -0,0 +1,30 @@ +Device: OnePlus 12 (waffle) +Device maintainer: Javi + +==================== + 26-10-2025 +==================== + +* Synced with the latest AlphaDroid +* Drop torch control +* Added device.settings for waffle +* Set GPU profiler +* Add power_state (node for hibernation feature) +* Add system permission for eMMC nodes + +==================== + 22-10-2025 +==================== + +* Initial A16 AlphaDroid 4.1 official support +* Synced with the latest AlphaDroid +* Include Oneplus Dolby +* Add media codecs support +* Bcr Basic call recorder support +* Update from OOS 11.C.24 +* KernelSu-Next support +* Enable multiple vibration intensity levels + +NOTES: READ INSTALL METHOD PLEASE!!! + +Credits: Chandu Dyavanapelli for tree,lineageOS team,AlphaDroid team. diff --git a/dodge.json b/dodge.json new file mode 100644 index 0000000..eee9d0b --- /dev/null +++ b/dodge.json @@ -0,0 +1,29 @@ +{ + "response": [ + { + "maintainer": "OscarM1019", + "oem": "OnePlus", + "device": "dodge", + "filename": "AlphaDroid-16-20251209-gapps-dodge-v4.2.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/dodge/AlphaDroid-16-20251209-gapps-dodge-v4.2.zip/download", + "timestamp": 1765243780, + "md5": "18303f9b4657b24e96a5708b8adc2394", + "sha256": "3844fd51798d8b325c558d1059ace42e39f99332526dfc4b8a375e6713927263", + "size": 4323913875, + "version": "4.2", + "buildtype": "Official", + "buildvariant": "gapps", + "forum": "", + "gapps": "", + "firmware": "", + "modem": "", + "bootloader": "", + "recovery": "", + "paypal": "https://www.paypal.com/paypalme/osmjr1019", + "telegram": "https://t.me/OP13CustomRoms/3", + "dt": "", + "common-dt": "", + "kernel": "" + } + ] +} diff --git a/fog.json b/fog.json index 4dba285..7429376 100644 --- a/fog.json +++ b/fog.json @@ -1,28 +1,54 @@ { - "response": [ - { - "maintainer": "ⓓⓑⓛⓔⓝⓚ", - "oem": "Xiaomi", - "device": "Xiaomi Redmi 10C", - "filename": "AlphaDroid-13.0-20230504-fog-vanilla-v1.5.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/fog/AlphaDroid-13.0-20230504-fog-vanilla-v1.5.zip/download", - "timestamp": 1683210452, - "md5": "6eb541abeb5407bb661c48c57f64960f", - "sha256": "46b02507f645187d918cc67bc07ac49b88eb19eb71e7b74f2d1173a013340eda", - "size": 1085105875, - "version": "1.5", - "buildtype": "vanilla", - "forum": "https://t.me/alphadroid_chat", - "gapps": "", - "firmware": "", - "modem": "", - "bootloader": "", - "recovery": "", - "paypal": "", - "telegram": "https://t.me/diskusiromlah", - "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_fog", - "common-dt": "", - "kernel": "" - } - ] + "response": [ + { + "maintainer": "Romeo13card", + "oem": "Xiaomi", + "device": "fog", + "filename": "AlphaDroid-16-20251207-vanilla-fog-v4.2.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/fog/AlphaDroid-16-20251207-vanilla-fog-v4.2.zip/download", + "timestamp": 1765091749, + "md5": "da16d190d8e9c726423afdcbb80c8751", + "sha256": "87f3d8f26b2253e55d1f64f7b810a1c9fe361c55dc4ff2f40066ba455d9e8179", + "size": 1400773285, + "version": "4.2", + "buildtype": "Official", + "buildvariant": "vanilla", + "forum": "https://t.me/alphadroid_chat", + "gapps": "https://bitgapps.io/", + "firmware": "", + "modem": "", + "bootloader": "", + "recovery": "", + "paypal": "", + "telegram": "https://t.me/romeo13card_chat", + "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_fog", + "common-dt": "", + "kernel": "" + }, + { + "maintainer": "Romeo13card", + "oem": "Xiaomi", + "device": "fog", + "filename": "AlphaDroid-16-20251207-gapps-fog-v4.2.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/fog/AlphaDroid-16-20251207-gapps-fog-v4.2.zip/download", + "timestamp": 1765085796, + "md5": "b9e9b85d995897d3067b444b08f5eff8", + "sha256": "09f0e51ee602c5f36d0eef89fd4d4b1d7183d02d73004faec0d625ec1cddaeab", + "size": 2656255706, + "version": "4.2", + "buildtype": "Official", + "buildvariant": "gapps", + "forum": "https://t.me/alphadroid_chat", + "gapps": "https://bitgapps.io/", + "firmware": "", + "modem": "", + "bootloader": "", + "recovery": "", + "paypal": "", + "telegram": "https://t.me/romeo13card_chat", + "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_fog", + "common-dt": "", + "kernel": "" + } + ] } diff --git a/fogos.json b/fogos.json new file mode 100644 index 0000000..148c6bf --- /dev/null +++ b/fogos.json @@ -0,0 +1,28 @@ +{ + "response": [ + { + "maintainer": "Name Abhishek Nakchwal", + "oem": "Motorola", + "device": "Moto G34 5G", + "filename": "AlphaDroid-16-20251205-gapps-fogos-v4.2.zip", + "download": "https://sourceforge.net/projects/alphadroid-fogos/files/AlphaDroid-16-20251205-gapps-fogos-v4.2.zip/download", + "timestamp": 1764914409, + "md5": "b87cf7ab3dd9039bbe6f284c10740c79", + "sha256": "be1c5b3e085cc83e120213964ac167e9774cb462ce1763e75f35da1a491e51a9", + "size": 2419550624, + "version": "4.2", + "buildtype": "Monthly", + "forum": "https://forum link", + "gapps": "https://sourceforge.net/projects/alphadroid-fogos/files/AlphaDroid-16-20251205-gapps-fogos-v4.2.zip/download", + "firmware": "https://firmware link", + "modem": "https://modem link", + "bootloader": "https://bootloader link", + "recovery": "https://recovery link", + "paypal": "https://donation link", + "telegram": "https://t.me/nakchwal", + "dt": "https://github.com/alphadroid-project/device__", + "common-dt": "https://github.com/alphadroid-project/device__-common", + "kernel": "https://github.com/alphadroid-project/kernel__" + } + ] +} diff --git a/garnet.json b/garnet.json index f46c2a6..9a04d06 100644 --- a/garnet.json +++ b/garnet.json @@ -1,16 +1,16 @@ { "response": [ { - "maintainer": "franlop77", + "maintainer": "Jotanh", "oem": "Xiaomi", "device": "garnet", - "filename": "AlphaDroid-15-20250621-gapps-garnet-v3.2.1.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/garnet/AlphaDroid-15-20250621-gapps-garnet-v3.2.1.zip/download", - "timestamp": 1750505459, - "md5": "a544cbad93d8e15460a17d09573d7f08", - "sha256": "49e55ffdb6c441147f8924a8111da94d53d1b811c0927ce4bd48702f36e855e4", - "size": 2868743241, - "version": "3.2.1", + "filename": "AlphaDroid-16-20251027-gapps-garnet-v4.1.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/garnet/AlphaDroid-16-20251027-gapps-garnet-v4.1.zip/download", + "timestamp": 1761561003, + "md5": "25cdbedff9fb7c311e0b14ac181e2ef1", + "sha256": "aff114c088789d670e0e8decced089fe867f549e3e6985cb58b64793f793c792", + "size": 2680482931, + "version": "4.1", "buildtype": "Official", "buildvariant": "gapps", "forum": "", @@ -20,22 +20,22 @@ "bootloader": "", "recovery": "", "paypal": "", - "telegram": "https://t.me/garnet_builds_franlop", + "telegram": "https://t.me/joaodoximicustom", "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_garnet", "common-dt": "", - "kernel": "https://github.com/AlphaDroid-devices/device_xiaomi_garnet-kernel" + "kernel": "https://github.com/AlphaDroid-devices/android_kernel_xiaomi_sm7435" }, { - "maintainer": "franlop77", + "maintainer": "Jotanh", "oem": "Xiaomi", "device": "garnet", - "filename": "AlphaDroid-15-20250620-vanilla-garnet-v3.2.1.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/garnet/AlphaDroid-15-20250620-vanilla-garnet-v3.2.1.zip/download", - "timestamp": 1750443232, - "md5": "88edf19a1dbf1a2a608f399d2419cb3f", - "sha256": "96a837195c7cb5130ff675a48b06ebf6b78466d508629020f9d64ef728e45c30", - "size": 1874043618, - "version": "3.2.1", + "filename": "AlphaDroid-16-20251027-vanilla-garnet-v4.1.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/garnet/AlphaDroid-16-20251027-vanilla-garnet-v4.1.zip/download", + "timestamp": 1761569263, + "md5": "31bced7003d71a6473612a032e17e124", + "sha256": "a3ed2c6a788a5c2491affd81e1dec61cd31b5ec15eddc6352e5f20aecd2fd439", + "size": 1875422664, + "version": "4.1", "buildtype": "Official", "buildvariant": "vanilla", "forum": "", @@ -45,10 +45,10 @@ "bootloader": "", "recovery": "", "paypal": "", - "telegram": "https://t.me/garnet_builds_franlop", + "telegram": "https://t.me/joaodoximicustom", "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_garnet", "common-dt": "", - "kernel": "https://github.com/AlphaDroid-devices/device_xiaomi_garnet-kernel" + "kernel": "https://github.com/AlphaDroid-devices/android_kernel_xiaomi_sm7435" } ] -} +} \ No newline at end of file diff --git a/husky_changelog.txt b/husky_changelog.txt deleted file mode 100644 index dd822a6..0000000 --- a/husky_changelog.txt +++ /dev/null @@ -1,980 +0,0 @@ -==================== - 02-23-2025 -==================== - - * vendor/alpha -dbbe9bc6 Update pif overlay -c22d3ca2 Optimize updater logic - -==================== - 02-22-2025 -==================== - - * frameworks/base -6948be020b94b [SQUASH] Integrate Pixel framework hooks and wrappers -d622f29c808b4 PixelPropsUtils: Update fingerprints to February 2025 release - - * packages/apps/AlphaSettings -c6c91c16 New Crowdin updates (#94) -2582c64e Cleanup unused strings - - * packages/apps/Glimpse -7e7ea6d Glimpse: Fix trashed SECURE_REVIEW items not getting removed from screen -dde8aa8 Glimpse: buildList for the win - - * packages/apps/Twelve -ae0a3ea Twelve: NowPlayingFragment: Fix shuffle and repeat marker being cut in half -af4cd4e Twelve: MediaRepositoryTree: Don't crash in case of error -8710915 Twelve: buildList for the win -6f40e59 Twelve: Add support for search queries -0713aed Twelve: Apply player setup after .build() -5e5d43a Twelve: Lyrics fragment -e822e83 Twelve: Add lyrics view -fc7c6c5 Twelve: SubsonicDataSource: Implement lyrics fetching -85bd87e Twelve: JellyfinDataSource: Implement lyrics fetching -27e846a Twelve: Add lyrics method -65c5974 Twelve: MainActivity: Move intent flow handing to the usual `loadData()` -f9fd41c Twelve: Stop using fitsSystemView=true on CoordinatorLayout -1d1424a Twelve: Set edge to edge and transparent navigation bar color attributes -22e2370 Twelve: Remove useless orientation attribute on CoordinatorLayout - - * vendor/alpha -6d92207a Rework `createjson.sh` (#65) -13f3e960 Update charger animation -fe6dbac1 Build charger animation -e4a0329e android: merge_dtbs: Respect miboard-id while merging -2c09be0c Update default wallpaper - -==================== - 02-21-2025 -==================== - - * packages/apps/AlphaSettings -8a90fdc8 Remove 4G icon switch - - * packages/apps/Glimpse -a05d2fa Glimpse: Show warning regarding trash's auto-empty behavior - - * packages/apps/Settings -c269d741f976 Partially Revert "DynamicDenylistManager shall not exist" -8903d3175789 Settings: Update FaceEnroll ActivityDirector and Confirmation -3b5c0ca7ea24 Settings: Create face confirmation activity -6bbbef1c815f Settings: Create a ActivityDirector to optionally use SettingsGoogleFutureFaceEnroll -05ffe93e8dc4 [SQUASH] Settings changes for Pixel Framework -8b5fcc80a584 Revert "[Settings] Start SettingsDumpService to dump the db log after the db is" -078a9ad69e96 Disable SettingsDumpService -8f2bc0a3e870 Settings: Add missing animations from google -1dcf53457817 Settings: Add a toggle to force LTE_CA -4fe44aca3de6 Settings: Whitelist WRITE_DEVICE_CONFIG permission - -==================== - 02-20-2025 -==================== - - * device/qcom/sepolicy_vndr/sm8450 -0624d88e9 sepolicy: NFC: Label NXP NFC 2.0 HIDL - - * device/qcom/sepolicy_vndr/sm8550 -78af5575a sepolicy: NFC: Label NXP NFC 2.0 HIDL - - * frameworks/base -6351de5582baf Set animation scale to 0.75 - - * packages/apps/AlphaSettings -feb1b2e6 Restore QS layout settings -1e36feaa Restore sensor block settings -c5255df5 Hide UDFPS settings if not supported -6e29bda4 New Crowdin updates (#93) - - * packages/apps/Aperture -0fd3ae9 Aperture: Switch to upstream zxing-cpp - - * packages/apps/Glimpse -2162911 Glimpse: Break as soon a valid media type is found - -==================== - 02-19-2025 -==================== - - * lineage/wiki -f2d6f3bf wiki: libvirt-qemu: VirtIO keyboard does not work on the boot menu - - * manifest -c5e76c0 Create alpha-15.1-pixel branch -8c1ba78 Track Backgrounds from Alpha - - * packages/apps/Backgrounds -859ec8a Backgrounds: add AlphaDroid wallpapers - - * packages/apps/Settings -cf3e20604cc7 Remove BETA tag - - * packages/apps/Updater -e613dc7 Updater: adapt to AlphaDroid - -==================== - 02-18-2025 -==================== - - * build/make -417fdce7b8 tools: Introduce AlphaDroid - Bringed back alpha-14 from [1] and adapted to our new props -6f9eb082b0 build: execute changelog generator script - - * packages/apps/Catapult -fb83201 Catapult: String improvements & fixes - - * packages/apps/Settings -f70d438bc3f7 settings styles: sync accent colors with frameworks/base - - * vendor/alpha -be35ccc3 overlay: sync alpha accent colors with frameworks/base -0d70716a Restore createjson and changelog scripts - - * vendor/gms -ffbf6b5 Add Wellbeing overlay -383645e Drop systemui clocks -3c64a55 Optionally build nexus squad - -==================== - 02-17-2025 -==================== - - * external/avb -5986166 avbtool: Add --set_verification_disabled_flag arg - - * lineage/hudson -fdce9c0 hudson: Promote tama to 22.1 - - * lineage/wiki -958d23f3 wiki: Promote tama to 22.1 - - * manifest -9dfc71b Update clang version -ffe48b7 Create alpha-15.1 branch - - * packages/apps/AlphaSettings -ab23110b AlphaSettings: hide toolbar and restore banner - - * packages/apps/FMRadio -168f373 jni: Move customisation to properties -e603ac7 jni: Always build noise floor detect code and make it conditional - - * packages/apps/Settings -f6b50d9fe219 fixup! Settings Styles redigned - - * packages/apps/Twelve -3dcf24e Twelve: Fix visualizer, hopefully for the last time -5053246 Twelve: Take into account the timeline for the queue -ccdd16b Twelve: Add notification shuffle/repeat -eb13860 Twelve: Use Resources when possible to fetch resources -7b7be5f Twelve: Fix some format strings -b503c04 Twelve: Make player/mediaLibrarySession lateinit -5d265a0 Twelve: Reformat code - - * vendor/addons -19ce0e49 Black theme: fixup -3f94ec3b Add AlphaDroid ufps icon (semi-transparent and transparent versions) -111cbdda add AlphaDroid udfps icon - - * vendor/alpha -b2f77028 brunch: build user variant by default -107ab257 Ready for official builds -d11ac319 Enable ThinLTO cache - -==================== - 02-16-2025 -==================== - - * lineage/mirror -e366ec6 Updated to 15-Feb-2025 23:01 UTC - - * lineage/wiki -b3898e71 wiki: Sm-A217M -> SM-A217M -15192f7d devices: Promote NVIDIA to 22.1 - - * manifest -1fb3646 Track crClang - - * packages/apps/AlphaSettings -085e7f1c Add Wellbeing short title -de4fefb8 Use Alpha style on Alpha settings - - * packages/apps/Aperture -59013c8 Aperture: Update kotlin to 1.9.23 -759f8d0 Aperture: Update gradle{,w} to 8.12 -0e49f58 Aperture: Update ZXing-C++ to 2.3.0 -62bc27b Aperture: Update CameraX to 1.5.0-alpha05 -39a00a1 Aperture: Ensure secure URIs are inserted in order -4fc2193 Aperture: Update kotlin to 1.9.10 - - * packages/apps/DeskClock -296e428c0 DeskClock: Convert ListPreferences to SimpleMenuPreferences -5ddac9586 DeskClock: Remove the summaries for AM/PM and bold text -f0f776a74 DeskClock: Hide or disable some screensaver settings -713a91649 DeskClock: Fix formatting in ScreensaverSettingsActivity - - * packages/apps/Glimpse -a0ad138 Glimpse: Split ACTION_REVIEW from ACTION_REVIEW_SECURE - - * packages/apps/Jelly -1f5f1bc Jelly: Save user agreement about protected media - - * packages/apps/Settings -d61bbcea3990 Disable LiveDisplay settings -a5340ca60020 ROM card view: link to firmware version settings - - * packages/apps/Twelve -1120101 Twelve: Handle empty resumption playlist -2a9b749 Twelve: Readd round icon attribute -1e4626b Twelve: Set wake mode to network -7c4ac24 Twelve: Tie CoilBitmapLoader to service scope - -==================== - 02-15-2025 -==================== - - * device/qcom/sepolicy-legacy-um -ff381799 sepolicy: Add default permission for aidl hal_bootctl - - * packages/apps/Aperture -066ea34 Automatic translation import - - * packages/apps/AudioFX -02916e7 Automatic translation import - - * packages/apps/Camelot -23242a1 Automatic translation import - - * packages/apps/Catapult -c114091 Automatic translation import - - * packages/apps/Contacts -77afb19ff Automatic translation import - - * packages/apps/DeskClock -3db9ea707 Automatic translation import - - * packages/apps/Dialer -5bf5719c7 Automatic translation import - - * packages/apps/DocumentsUI -2b776897f Automatic translation import - - * packages/apps/Etar -578b82a5 Automatic translation import - - * packages/apps/FMRadio -7f5188d Automatic translation import - - * packages/apps/FlipFlap -fe2abce Automatic translation import - - * packages/apps/Glimpse -d47de86 Automatic translation import - - * packages/apps/Jelly -3f4c549 Jelly: Include assets -525b66c Automatic translation import - - * packages/apps/Messaging -ff479f4 Automatic translation import - - * packages/apps/Profiles -7455e65 Automatic translation import - - * packages/apps/Recorder -8f65896 Automatic translation import - - * packages/apps/Twelve -38aff6a Automatic translation import - - * packages/inputmethods/LatinIME -79f3aff8c Automatic translation import - - * packages/providers/DownloadProvider -be8b0fb7 Automatic translation import - - * packages/resources/devicesettings -8624d14 Automatic translation import - - * prebuilts/clang/host/linux-x86/clang-latest -d8a8c91 clang 20.0.0 (based on r547379) from build 13065274 - - * vendor/crowdin -fef707d Automatic translation import - - * vendor/qcom/opensource/commonsys/fm -b38a391 Automatic translation import - -==================== - 02-14-2025 -==================== - - * device/qcom/sepolicy_vndr/legacy-um -87be962ff sepolicy: NFC: Add support for snxxx AIDL service - - * device/qcom/sepolicy_vndr/sm8450 -54ee7c8f8 sepolicy: NFC: Add support for snxxx AIDL service - - * frameworks/base -26431e55b2300 LocaleTile: Fix crash on LongClick -8260056afcc4c Whitelist Google Photos URIs - - * hardware/interfaces -6d4d419194 cec: Don't spam "Machine is not on the network" - - * hardware/lineage/interfaces -9b60d38 Extend Fastcharge implementation [1/3] - - * lineage-sdk -40032999 sdk: Get rid of lineageos.os.{Build,Concierge} - - * lineage/hudson -e10b30e "Fashionably Tegra-late, but worth the wait!" -a3fe984 5th upgrade for konami, I'm out of ideas - - * lineage/mirror -d8342d4 Updated to 13-Feb-2025 23:01 UTC - - * lineage/scripts -38d1654 reuse_helper: Handle kotlin files - - * lineage/wiki -d38b80c5 wiki: Promote Xiaomi SM8250 devices to 22.1 - - * manifest -a643cc0 Track bionic and art from Alpha - - * packages/apps/Jelly -68e9e9f Jelly: Handle MediaSession For BackgroundShortcut -0d0d674 Jelly: Background Shortcuts - - * packages/apps/TvSettings -d6b23f1f2 TvSettings: Support two button mute - - * packages/apps/Twelve -4edf7e3 Twelve: LocalDataSource: Stop pretending we can have artist thumbnails -69f3c76 Twelve: BaseMediaItemView: Simplify thumbnail handling -53ccfe0 Twelve: Navigate safely! -254cec7 Twelve: Ensure all media items have fallback titles -8e70bf3 Twelve: LocalDataSource: `/audio/albumart/` exists too -1cd5d90 Twelve: LocalDataSource: Use hidden album art database -62db55b Twelve: Switch back to vendored material -33444d7 Twelve: Use a custom BitmapLoader for our service -472b00e Twelve: SubsonicDataSource: Use media item builders -8690156 Twelve: Simplify media item to data source and media type querying - -==================== - 02-13-2025 -==================== - - * lineage/hudson -198f81c Regenerate device dependency mappings - - * lineage/mirror -be0c976 Updated to 12-Feb-2025 23:01 UTC - - * packages/apps/Twelve -f010219 Twelve: Use `ProviderIdentifier` for all fragment arguments -59cea6d Twelve: Hide trailing view for local provider -a7af174 Twelve: Media item builders! -32ff491 Twelve: Use Album thumbnail as Audio thumbnail -b5597d7 Twelve: Lowercase cursor column names -1a2d65a Twelve: Fix double .px in MAX_THUMBNAIL_SIZE - - * vendor/alpha -59835401 Disable memtag for different processes - - * vendor/extra -6148f7f Update Lawnchair to version 15.0.0-20250213 - -==================== - 02-12-2025 -==================== - - * art -77ab69d4e1 Fix the divide-by-zero in odrefresh. -3d9f9226ea Speed up `AppendPrettyDescriptor()`. -15c86e55d4 optimized hprof speed -5af74f19cb Speed up `Class::IsInSamePackage()` even more. -3b9980b6eb Speed up `Class::IsInSamePackage()`. -56dc1ca02c Fix app info code type. -7eb26ef86a Use stp/ldp while calling native functions in arm64 -cd450549e7 ART: dex2oat and instruction_set_features: utilize modified runtime capabilities set -cd4057f5f7 Revert "Add visibility attributes in runtime/arch" -352bd28c70 Revert "Remove strip.keep_symbols from libart defaults" -8ab0280085 art: Add support for Cortex-A510 -3d9322a731 art: add check for __ARM_FEATURE_ATOMICS that indicates LSE atomics availability on target -98ba226aba art: Add Kryo585 support -f1263236cc art: Kryo785 supports dotprod -6da4f8a45d art: Disable debug tracing on production builds -c9ae30684b art: add kryo785 architecture variant. - - * bionic -4fd741f00 Ensure prop has zero padding -3759653a5 Prevent serial of ro props from self increment -eb1da2f49 getaddrinfo: Use Cloudflare DNS instead of Google DNS -d36536ebf libm: Support -ffp-contract=fast -0d98c742a Re-enable LTO for libm -7072cc6a6 libc: Set __bionic_asm_align to 64 for arm and arm64 -002d8d906 bionic: Support wildcards in cached hosts file -08847f3bb bionic: Sort and cache hosts file data for fast lookup -0317e202f Revert "Add better jemalloc stat logging." - - * build/blueprint -e29c960 Use pool for mutatorContext and transition contexts -633ab9e Optimize proptools.CalculateHash allocations - - * build/make -f13fdb0cc0 build_image: get squashfs partition size from image size -ed6768708d build: handle missing files in remove_broken_build_tools -3d130d7637 build: Remove broken prebuilts - - * build/soong -bd349ebae soong: Allow flock for changelog generation -fe003d83e soong: Add out/soong/*.glob* to installclean -ce083663b cc/lto: enable unified LTO -377fe9ff4 cc/lto: add property for not restricting instr limit -16d359249 lto: enable O3 optimizations on explicit lto modules -b9db5a9fe cc/lto: instr limit of 40 for explicit LTO modules -128a56e30 Remove workaround for Qualcomm Kryo 385 -02505dab0 Enable crypto extensions for armv9-a -a16ac2ba8 config: Update cortex a75 flags -22e9a39ac config: do not force cortex-a76 as cortex-a75 -e974e4afd cc: Enable more features when using armv8.2-a+dotprod -4af8b30f9 soong: Add kryo300 variant support -1dc94feec soong: add kryo785 architecture variant for arm64. -e97f354ff Define AArch32 soong variable -80b2c1f4b arm_device: Change cortex-a76 mcpu from a55 to a75 -62501bcbc arm64_device: Change cortex-a76 mcpu from a55 to a75 -5e278dd8a Use -march=armv9-a+nosve for Armv9-A arch variant -718e0fbbc Introduce Cortex-A510 CPU variant -ee2aa776b soong: Allow various path commands - - * device/google/atv -66aed86 Revert "atv: sepolicy: public: Pull in hal_client_domain rule" -7beb6ac atv: sepolicy: public: Pull in hal_client_domain rule - - * frameworks/base -566743b7bf78f don't crash apps that depend on missing Gservices provider -132bcb02c55b2 Redesign seekbar -c53aa47a1ef5c SystemUI: Controllable squiggle animation [1/2] -d684e7eefec15 Statusbar: adjustable max visible notification icons [1/2] -1c18973e63ebe privapp-permissions: Grant missing TelephonyProvider perm. -d2ed4205900c1 config: Allow gms to access persistent data partition -9e27c57d39e57 core: Introduce VibrationUtils - - * manifest -c1ab1ed Update vendor/gms path - - * packages/apps/AlphaSettings -4a4a4bb2 Restore squiggle_animation and max notification icons settings -24908c8f Settings dashboard: disable DoT style for now -e9755476 Restore button settings - - * packages/apps/LineageParts -7ad6770 Disable unused components -01ab40a Nuke LineageStats -a71a55d Ship as AlphaDroid based on LineageOS -0e90313 Use ListPreference for charging control fragment -57d571c Update color mode preview from Android 12 -b34ea4d Make trust interface less boring - - * vendor/extra -904796a Update RiMusic to version v0.6.70 - -==================== - 02-11-2025 -==================== - - * hardware/lineage/interfaces -8f445d1 fingerprint: aidl: Improve documentation on sensor_location -3824e1a fingerprint: aidl: Use soong to decide which arch to build -9d7e862 fingerprint: aidl: Allow setting more than one sensor location -87c6ff2 fingerprint: aidl: Initial legacy libhardware implementation -15024d6 fingerprint: aidl: Initial stub service - - * packages/apps/Settings -5dd8c78f8bd1 Disable 'hide IME' preference when 'show hint' is enabled - -==================== - 02-10-2025 -==================== - - * bootable/recovery -08ca33c5 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_bootable_recovery into alpha-15.1-wip - - * build/make -d32898ad47 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build into alpha-15.1 - - * build/soong -f15fc9e7d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build_soong into alpha-15.1 - - * device/qcom/sepolicy_vndr/legacy-um -d929ad85c sepolicy_vndr: allow sensors HAL to do binder call to system_server - - * device/qcom/sepolicy_vndr/sm8450 -76a576ae7 sepolicy_vndr: allow sensors HAL to do binder call to system_server - - * frameworks/av -6a3bf5ba6f fixup! av: support per-app volume [1/3] -4c2afb493d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_av into alpha-15.1-wip - - * frameworks/base -58047e65355de base: Add a toggle for long press on navbar to search [1/3] -90502e054be97 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_base into alpha-15.1-wip - - * hardware/lineage/interfaces -a90b7f9 light: Add `lcd-backlight-ex` to the list of backlight devices -232ba05 light: Add `panel0-backlight-ex` to the list of backlight devices - - * hardware/samsung/nfc -61bc89f nfc: Rename debug level property - - * lineage/hudson -80fbf9a Flash wasn't fast enough -77c8d6c Japan has their own version of everything -67cc451 Burned at the stake, forever to be remembered - - * lineage/wiki -476a125d devices: add LG V50 ThinQ (flashlmdd) -b20eb9dd wiki: add Japanese LG V30 -992de2e1 joan: promote to 22.1 - - * manifest -c811b92 Merge branch 'lineage-22.1' of https://github.com/lineageos/android into alpha-15.1-wip -479a96c Track pixel overlays - - * packages/apps/AlphaSettings -6f09b0a2 Add network_dashboard_short_title -7b7fc2c1 Add dashboard messages -89a50f43 AlphaDroid 3.1 bringup - - * packages/apps/Launcher3 -0c73ad3ff3 Allow locking tasks to recents [2/2] -1f9fa63ef6 Restore 4x4 workspace -7f05a4af09 Launcher3: Adapt strings to Alphadroid -5a94ae4307 Ship as AlphaDroid based on crDroid - - * packages/apps/Settings -cb00e2b56ef9 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_packages_apps_settings into alpha-15.1 -f50b2d1f8938 Settings: Better check for GSA package -87eb0db1aea7 Settings: Add a toggle for long press on navbar to search [3/3] - - * packages/apps/SetupWizard -5f03725 Merge branch 'lineage-22.1' of https://github.com/LineageOS/android_packages_apps_SetupWizard into alpha-15.1 - - * packages/apps/Twelve -dec2d10 Twelve: Make togglePlayPause() rewind if playback has ended -2c66e7b Twelve: Add some margin to create playlist button -11e6ecb Twelve: Don't open bottom sheet for "create playlist" item -8a0e7de Twelve: Move onPrepareView callbacks using item to onBindView -799a828 Twelve: Merge all media item views - - * vendor/alpha -788ff11c Revert "config: Changes for libfmjni bp conversion" -898c8f0f apns: Update Lebara UK -395656f3 vars: Update qcom tags - -==================== - 02-09-2025 -==================== - - * build/make -083d637741 build: dont include tasks from tests and platform_testing -23727aae3b combo: Add kryo585 architecture to known v8 cores -f07fa05673 combo: Add kryo585|785 architectures to known v8-2a cores -0d3aaba9ef combo: Add cortex-a76 to known v8-2a cores -b8eb00ae74 core: Use $(PRODUCT_DEVICE) for auto generated RRO names -616a2095c2 Revert "Add DeviceAsWebcam to general handheld_system" -11233f9763 envsetup.sh: Setup and enable ccache -c562d1ce5f build: Always use release-keys -5edf5fdbac build: Add backuptool by default - - * frameworks/base -4f1dc41a1e26b display: Add simple RGB color balance transform - - * hardware/qcom-caf/msm8953/audio -1b5ce68f1a visualizer: do not use GNU old-style field designators -1809521b6a voice_processing: do not use GNU old-style field designators -218e835767 audio-effects: Fix out-of-bound read -c7945b3662 audio-hal: Fix kw issue -71c5e51120 audio-hal: oob read when doing the typecase -51cdec106b hal: Update 64-bit vendor HAL path -01be9192c4 soundfx: Convert to blueprint & remove unused effects -ddd4045c35 audio: Remove autoconf/automake files - - * hardware/qcom-caf/msm8998/audio -970b452a3b hal: update audio effects config names -0b702d7ccc post_proc: fix mul-overflow -d6bec2c279 hal: Show cal step for volume listener -8f607d5055 visualizer: dynamically parse the sound card when opening mixer -d396d643bf post_proc: Add USB device support for bass boost -32fe461f1e visualizer: do not use GNU old-style field designators -c7b9f35c22 voice_processing: do not use GNU old-style field designators -15a96f3ad3 audio-effects: Fix out-of-bound read -927a1882cf audio-hal: Fix kw issue -fff6b47b04 audio-hal: oob read when doing the typecase -af7b3277b8 hal: Update 64-bit vendor HAL path -a310768ff9 soundfx: Convert to blueprint & remove unused effects - - * hardware/qcom-caf/sm8250/audio -0547a74443 visualizer: do not use GNU old-style field designators -ce9604d4c6 voice_processing: do not use GNU old-style field designators - - * hardware/qcom-caf/sm8250/media -3bfc8ddfb mm-core: Remove no longer used codecs -c64f23926 mm-core: Convert to blueprint -a47853022 mm-core: Remove unused files & flags -d004c5f44 mm-video-v4l2: Convert to blueprint - - * hardware/qcom-caf/sm8350/audio -452725a165 audio: Drop STT meta test app -b13925e6ee visualizer: do not use GNU old-style field designators -f5b6e037a4 voice_processing: do not use GNU old-style field designators - - * lineage/hudson -0aaaa77 hudson: Promote miatoll to 22.1 - - * lineage/wiki -0f1ec4d5 wiki: devices: Promote miatoll to 22.1 - - * packages/apps/Settings -0042bc16f205 AlphaSettings: hide title -9c25876494c6 Settings: Add Circle To Search [2/2] -17fda7c3a0c1 Don't let profiles open the UserSettings overflow -1aaf5972f2af Block the content scheme intent in AccountTypePreferenceLoader -a3b33971f80f Add missing resources -b2e46175ae37 Beta TAG for now -165bb5354e03 FastChargingPreferenceController: implement dynamic summary to show fastcharge status -50d5aeb09479 Extend Fastcharge implementation [2/3] -627713f5f151 BatteryStateDatabase: Set exportSchema to false -fdc77b3080df Settings Styles redigned - - * packages/apps/Twelve -c95473a Twelve: Reformat code -0836d86 Twelve: Fix/improve intent handling navigation - - * vendor/addons -c1d4d392 BlackTheme: Turn colors_material bg colors to black -1cc41ad7 BlackTheme: Update and move color resources to night -87ddda02 Fix transparent Shishu themes - - * vendor/alpha -001ab1c8 Remove unused makefiles -c71b3137 Guard pixel overlays with WITH_PIXEL_OVERLAYS -b678f22d vars: February 2025 Security update - - * vendor/pixeloverlays -fbfbafd Adapt for Alpha - -==================== - 02-08-2025 -==================== - - * build/make -36c1905749 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * device/qcom/sepolicy_vndr/sm8550 -bbbbed900 sepolicy: NFC: Add support for snxxx AIDL service - - * frameworks/base -8f2748b40ab1b Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 -83cd5c824c57b Nuke black theme overlay - - * hardware/qcom-caf/msm8953/audio -23c50e9f81 audio: Remove OMX components -0f32dcd453 audio: Remove disabled HW accelerated effects -e342823606 audio: Remove unsupported QAHW -2b2841b3bc audio: Remove unused hdmi_in_test -c70ad9ca25 audio: Remove deprecated audio daemon - - * hardware/qcom-caf/msm8953/display -47e27c7418 Revert "gpu_tonemapper: Fix compilation issue." -5345254cfd gpu_tonemapper: Fix loop increment never executed -3a56441266 Convert some display libraries to blueprint -681046fd02 Remove unused libcopybit sources -6d2c56e9d5 qdutils/hwc: Remove unused code surrounding fps calculations -61890b7fff sdm: Remove USE_GRALLOC1 conditionals -12d9f2ca89 sdm: Remove use_hwc2 conditional -0bc83cf81d sdm: Remove display_config_version conditionals -bad9b7af9a Revert "hwc2: Avoid adding default color mode when display PP is unsupported" -c54d77b5ca Revert "hwc2: Remove multi-display support from wearables." -be97b92a6e sdm: Cleanup unused code, round 2 -1e0788c9d3 display: Cleanup unused code -9ae410d70b display: Remove deprecated lights.$(TARGET_BOARD_PLATFORM) -a407397f40 display: Remove libmemtrack library - - * hardware/qcom-caf/msm8998/audio -9164a77fbb audio: Remove autoconf/automake files - - * hardware/qcom-caf/sdm845/audio -d6b236ac74 visualizer: do not use GNU old-style field designators -5bb9c04a33 voice_processing: do not use GNU old-style field designators -0c00f920ca audio-effects: Fix out-of-bound read -a8cefba281 audio-hal: Fix kw issue -0a0ffe2aae audio-hal: oob read when doing the typecase -07a88dcd10 hal: Update 64-bit vendor HAL path -f9c22aba8e soundfx: Convert to blueprint & remove unused effects -1f6606f76e audio: Remove autoconf/automake files - - * hardware/qcom-caf/sm8150/audio -15dc2b0cbc visualizer: do not use GNU old-style field designators -c47189f8b2 voice_processing: do not use GNU old-style field designators -b61b62ecf2 audio-hal: Fix kw issue -56b6afdb40 hal: Update 64-bit vendor HAL path -566fa517c3 soundfx: Convert to blueprint & remove unused effects -1e377baf21 audio: Remove autoconf/automake files - - * lineage/wiki -b904cccc Update info on bootloader unlock for new Xiaomi devices - - * manifest -538c253 manifest: February 2025 Security Update -43cb1e2 manifest: Drop legacy QCOM VR HAL - - * packages/apps/AlphaSettings -471c2820 New Crowdin updates (#1221) -92ead45e crdroid: Add strings for Circle To Search -548fef71 crdroid: Add strings for long press on navbar to search - - * packages/apps/Jelly -649eef6 Jelly: set MainActivity launchMode to singleTask - - * packages/apps/Launcher3 -f159d02318 New Crowdin updates (#480) -afac31d785 Launcher3: Fix up jank with navbar long press -18736a612f Launcher3: Add Circle To Search [1/2] -2e5eeeacec Launcher3: Add a toggle for long press on navbar to search [2/3] -79f2f89d15 Launcher3: Implement long press nav bar to search gesture -bf4be376a8 Revert "Launcher3: Add Circle To Search" - - * packages/apps/Updater -35d7963 New translations (#84) -0560741 Update Crowdin configuration file -2c14d1e Catch exceptions when enabling performance mode -0f9e696 Revert "Updater: layout: activity_updates: add spacing.." -c0f32d5 Updater: Update parsed info whenever data is refreshed -13bc9bf Updater: Add support links and some more info -07a0657 Updater: Use headline font for activity header -238d244 Updater: Nuke Lineage's website on installation blocked dialog -91aa830 Updater: Initial adaption for crdroid -fb990ca Updater: Change package name to avoid conflict -835f24a Ship as crDroid based on LOS - - * packages/modules/Bluetooth -9061231e0a BondStateMachine: Fix NPE on some devices -a8abaaf571 gd: hci: Allow disabling erroneous data reporting -9d22ecdada Fix BT noise issue during startup -619f6ee651 Bluetooth timeout feature - - * vendor/alpha -f76398ca vendor: alpha: update default pif values - -==================== - 02-07-2025 -==================== - - * hardware/qcom-caf/bootctrl -3adebe3 Stricter stat when checking for blockdevices -76c9776 Remove goto statements -32e7614 Add function to get active boot slot -91e6460 bootcontrol: count slots correctly -7f432e0 [LSC] Add LOCAL_LICENSE_KINDS to hardware/qcom/bootctrl -b194dcc Add METADATA to bootctrl: BSD=NOTICE - - * hardware/qcom-caf/sm8350/audio -37b09dbbcd soundfx: Convert to blueprint & remove unused effects -170939e8c9 audio: Remove autoconf/automake files -0c1ac0287d audio-hal: oob read when doing the typecase -6dfdc466ab Remove ndk_platform backend. Use the ndk backend. -ea4962f508 Remove log spam when placing power hint call -0cc4c5da5d Probe PowerHAL HIDL first -37beb7942e Support Power HAL AIDL service - - * lineage/hudson -d6b4269 hudson: Promote nairo to 22.1 -a6834bc Regenerate device dependency mappings - - * lineage/wiki -8324ea23 wiki: devices: Promote nairo to 22.1 -b46924c9 wiki: Use `fastboot reboot-recovery` for sweet -cedaf26a wiki: Use `fastboot reboot-recovery` for Xiaomi SM8350 - - * packages/apps/AlphaSettings -dd33f480 New Crowdin updates (#85, #86, #87, #88, #89, #90, #91) - - * packages/apps/FMRadio -f3eb07a FMRadio: Rework custom jni support - - * packages/apps/Glimpse -c57bcd7 Glimpse: Create a Media out of thin air if not in media provider - - * packages/apps/Launcher3 -78bae21c78 Launcher3: Make zram info in recents optional -5078122b0f Launcher3: Set recent opacity to 100 - - * packages/apps/Twelve -2a492f1 Twelve: Fix-up provider preference store -967f2ab Twelve: New create playlist fragment -23e5e41 Twelve: Convert Serializable users to Parcel -ed57e27 Twelve: Better provider selector dialog -b06afb1 Twelve: Commonize Material 3 dialog fragments - - * vendor/qcom/opensource/libfmjni -c5ace14 libfmjni: Convert it to filegroup and header lib - -==================== - 02-06-2025 -==================== - - * device/qcom/sepolicy_vndr/legacy-um -e40b8c7a6 sepolicy: Add default permission for aidl hal_bootctl - - * device/qcom/sepolicy_vndr/sm8450 -3126539a7 sepolicy: Add default permission for aidl hal_bootctl - - * device/qcom/sepolicy_vndr/sm8550 -704bbd332 sepolicy: Add default permission for aidl hal_bootctl - - * external/gptfdisk -b605061 gptfdisk: Make libgptf available to product/vendor - - * hardware/lineage/interfaces -6063eaf light: Add "sprd_backlight" to the list of backlight devices - - * hardware/qcom-caf/sm8550/dataipa -b482ae4 dataipa: Disable all the debugging - - * lineage/wiki -d749782b fixup! wiki: Update jekyll-search -510d60e9 wiki: surya: Update maintainers -b70c854a wiki: faq: Fix Android capitalization - - * packages/apps/Camelot -8318cbd Camelot: Update androidx.pdf to 1.0.0-alpha06 - - * packages/apps/Launcher3 -809e4b5340 Launcher3: Update folder preview and background color - - * vendor/alpha -48604d44 kernel: sign GKI modules -6b8003d1 kernel: preserve GKI modules in vendor modules.dep -5dfa43f1 kernel: break the build when depmod finds missing symbols -a7488f21 kernel: consider gki modules when running depmod for vendor modules -047f5b78 kernel: reduce the use of find when copying modules -ab3bac8a merge_dtbs: Craft unique name for final saved merged trees -17102fc3 merge_dtbs: Use logging and argparse -1466d988 merge_dtbs.py: Print only basenames of dtb* files - -==================== - 02-05-2025 -==================== - - * build/release -1d3087d9 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/build/release into alpha-15.1 - - * frameworks/av -c2d9d7b479 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * frameworks/base -95950965742df SystemUI: Add DOUBLE_TAP_TO_WAKE to tuner service reset exceptions -279abaab4b08f Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/frameworks/base into alpha-15.1-wip - - * lineage/mirror -96d2d14 Updated aosp-minimal to 04-Feb-2025 23:01 UTC - - * packages/apps/Settings -a0338d65bdd5 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * packages/modules/Bluetooth -c2414be0f4 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * packages/modules/Wifi -44969a2973 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/modules/Wifi into alpha-15.1-wip - - * packages/services/Telecomm -7f43170cd Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/services/Telecomm into alpha-15.1-wip - - * system/core -2e3de5ae8 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/system/core into HEAD - - * vendor/gms -b3761f9 Exclude some exempted location overlays -9358184 Rename some resources for now -680d617 gms: Guard Phone packages for wifionly builds -0bfc7d1 gms: Conditionally build some apps -9a0c09d gms: Update to komodo-ota-ap4a.250205.002-e3270b8a -5d5f45a gms: Automatically extract and update GoogleExtServices from apex -83fd693 gms: Drop quick tap sysconfig -5f53ddc gms: Add Contextual Search sysconfig -ee598ee Setup symlink properly for libpowerstatshaldataprovider - - * vendor/pixel-framework -99e9a05 Revert "Disable burn-in protection and smartpixels for now" - -==================== - 02-04-2025 -==================== - - * frameworks/base -0bab1f1269989 SystemUI: Add ability to toggle bluetooth battery level [1/2] -b5fefaf8b8c85 SystemUI: Fix side scrolling issues with vertical/A11 tile layout -8d7538db0a773 SystemUI: Do not marquee QS label text -dbc77eebf4a61 SystemUI: Allow to change QS tile label text size [1/2] -005dda3bc5672 SystemUI: Add QS tile layout settings [1/2] -82fabe387fc3f Make sensor block package list configurable [1/2] -9aa4674b258a6 base: Add Accelerometer and Linear Acceleration sensors in blocking list -fe1960835aa0a FWB: Sensor block per-package switch (1/2) -97e43209a5bee SystemSensorManager: sensor block per-package -b2be26e7180c1 Checking whether ComponentName with current InputMethod is not null -d81bba678f819 fixup: StringBlock: Prevent SystemUI crash when inflating QS - - * hardware/google/pixel -15b40a4f pixel: Switch to common lineage powershare HAL - - * hardware/google/pixel-sepolicy -3961e30 pixel: Switch to common lineage powershare HAL - - * hardware/qcom-caf/sm8450/data-ipa-cfg-mgr -9bef0c7 data-ipa-cfg-mgr: Disable all the debugging - - * hardware/qcom-caf/sm8550/data-ipa-cfg-mgr -19ea389 data-ipa-cfg-mgr: Disable all the debugging - - * hardware/qcom/data/ipacfg-mgr -816edd3 Remove no longer used Android.mk guard -ef8e1ce data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds -ddc7901 data-ipa-cfg-mgr: Disable all the debugging -1921b32 ipanat: Remove test/Android.mk -e753ce9 ipacm: convert Android.mk files to Android.bp -63a4592 ipacm: Fix compilation error for switch case -e821842 google: Add repo license information. -e12c3ac Add hardware/qcom/data/ipacfg-mgr/msm8998 soong namespace - - * lineage/mirror -a3753f4 Updated aosp-minimal to 03-Feb-2025 23:01 UTC - - * lineage/wiki -f0b13a45 wiki: Update information post-migration to Play Integrity - - * tools/extract-utils -9d8fe9b extract-utils: Don't make extract-factory mutually exclusive - - * vendor/alpha -ee7212ee Build LMO Freeform app and sidebar -8fde2067 soong: Add CAMERA_NEEDS_CLIENT_INFO_LIB{_OPLUS} -665c5fcc soong: Add libcameraservice extension config -f7ff180e crdroid: Disable default frame rate limit for games -ba41c8d9 overlay: Use google-sans for font config overlays -a4688341 crdroid: Move face unlock biometric permission to system_ext -7606d8d7 overlay: Add gms location history to extra location packages -17ae3413 overlay: Add tethering to location exemption -472157db overlay: Add SystemUI to location extra packages -1715c719 overlay: Add OmniJaws to location extra packages -98750035 Build extra packages - - * vendor/qcom/opensource/data-ipa-cfg-mgr-legacy-um -2456d63 data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds -ccd3dc5 data-ipa-cfg-mgr: Disable all the debugging - diff --git a/raphael.json b/raphael.json index 3a47eda..a995dc5 100644 --- a/raphael.json +++ b/raphael.json @@ -6,7 +6,7 @@ "device": "Redmi K20 Pro / Mi 9T Pro", "filename": "AlphaDroid-15.1-20250315-gapps-raphael-v3.1.zip", "download": "https://sourceforge.net/projects/alphadroid-project/files/raphael/AlphaDroid-15.1-20250315-gapps-raphael-v3.1.zip/download", - "timestamp": 1997295638, + "timestamp": 1742050680, "md5": "80633b03c0c724750e99399b1bf2ccd4", "sha256": "850a0d07921d681f2a6a362e3b6782f4853bb8069bdca1e7e322d10b1156599d", "size": 2568235013, diff --git a/rubyx.json b/rubyx.json index 123b084..e1f59a7 100644 --- a/rubyx.json +++ b/rubyx.json @@ -4,13 +4,13 @@ "maintainer": "YagizErdemir", "oem": "Xiaomi", "device": "rubyx", - "filename": "AlphaDroid-15-20250531-gapps-rubyx-v3.2.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/rubyx/AlphaDroid-15-20250531-gapps-rubyx-v3.2.zip/download", - "timestamp": 1748700245, - "md5": "916b60d64f44e675b690c674ffc0156e", - "sha256": "2590283e1fb3253673410fce0577aa490704e92dd24abf7bac8a3c9f03eab0b1", - "size": 2483937588, - "version": "3.2", + "filename": "AlphaDroid-16-20251103-gapps-rubyx-v4.1.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/rubyx/AlphaDroid-16-20251103-gapps-rubyx-v4.1.zip/download", + "timestamp": 1762175571, + "md5": "eef6c2e8d427eaeaeefe28e318300c9a", + "sha256": "85e43331bdb6813f132c729105a09f7963290f08f4aef34277edf4459876e557", + "size": 2523618263, + "version": "4.1", "buildtype": "Official", "buildvariant": "gapps", "forum": "https://t.me/alphadroid_chat", @@ -18,7 +18,7 @@ "firmware": "", "modem": "", "bootloader": "", - "recovery": "https://sourceforge.net/projects/alphadroid-project/files/rubyx/boot-15.2.img/download", + "recovery": "https://sourceforge.net/projects/alphadroid-project/files/rubyx/boot-16-1.img/download", "paypal": "", "telegram": "https://t.me/YagizAOSP", "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_rubyx", @@ -29,13 +29,13 @@ "maintainer": "YagizErdemir", "oem": "Xiaomi", "device": "rubyx", - "filename": "AlphaDroid-15-20250531-vanilla-rubyx-v3.2.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/rubyx/AlphaDroid-15-20250531-vanilla-rubyx-v3.2.zip/download", - "timestamp": 1748695867, - "md5": "acd0766e07548e8aced3541f34ed8978", - "sha256": "4a14b650e571a1c7a7783d7c710f07c41c0ed0d48a6515242defde3249fb2bc4", - "size": 1643191411, - "version": "3.2", + "filename": "AlphaDroid-16-20251103-vanilla-rubyx-v4.1.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/rubyx/AlphaDroid-16-20251103-vanilla-rubyx-v4.1.zip/download", + "timestamp": 1762178761, + "md5": "61b478f05b84fe45b0d8ca06a4a74c17", + "sha256": "22c571cbd06705a9f954e9dc5ba4c77a9fb4e96a070d042df6c2070502df5602", + "size": 1646057571, + "version": "4.1", "buildtype": "Official", "buildvariant": "vanilla", "forum": "https://t.me/alphadroid_chat", @@ -43,32 +43,7 @@ "firmware": "", "modem": "", "bootloader": "", - "recovery": "https://sourceforge.net/projects/alphadroid-project/files/rubyx/boot-15.2.img/download", - "paypal": "", - "telegram": "https://t.me/YagizAOSP", - "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_rubyx", - "common-dt": "", - "kernel": "https://github.com/AlphaDroid-devices/kernel_xiaomi_mt6877" - }, - { - "maintainer": "YagizErdemir", - "oem": "Xiaomi", - "device": "rubyx", - "filename": "AlphaDroid-15-20250531-microg-rubyx-v3.2.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/rubyx/AlphaDroid-15-20250531-microg-rubyx-v3.2.zip/download", - "timestamp": 1748703340, - "md5": "cccff01f3a553210e7062617a8e287ac", - "sha256": "d0a5b7e5248dce2648b518ad37ba22113f0135d3491e0cb96c8b979dad645e7d", - "size": 1742072362, - "version": "3.2", - "buildtype": "Official", - "buildvariant": "microg", - "forum": "https://t.me/alphadroid_chat", - "gapps": "", - "firmware": "", - "modem": "", - "bootloader": "", - "recovery": "https://sourceforge.net/projects/alphadroid-project/files/rubyx/boot-15.2.img/download", + "recovery": "https://sourceforge.net/projects/alphadroid-project/files/rubyx/boot-16-1.img/download", "paypal": "", "telegram": "https://t.me/YagizAOSP", "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_rubyx", diff --git a/shiba_changelog.txt b/shiba_changelog.txt deleted file mode 100644 index 6a48a55..0000000 --- a/shiba_changelog.txt +++ /dev/null @@ -1,980 +0,0 @@ -==================== - 02-23-2025 -==================== - - * vendor/alpha -dbbe9bc6 Update pif overlay -c22d3ca2 Optimize updater logic - -==================== - 02-22-2025 -==================== - - * frameworks/base -6948be020b94b [SQUASH] Integrate Pixel framework hooks and wrappers -d622f29c808b4 PixelPropsUtils: Update fingerprints to February 2025 release - - * packages/apps/AlphaSettings -c6c91c16 New Crowdin updates (#94) -2582c64e Cleanup unused strings - - * packages/apps/Glimpse -7e7ea6d Glimpse: Fix trashed SECURE_REVIEW items not getting removed from screen -dde8aa8 Glimpse: buildList for the win - - * packages/apps/Twelve -ae0a3ea Twelve: NowPlayingFragment: Fix shuffle and repeat marker being cut in half -af4cd4e Twelve: MediaRepositoryTree: Don't crash in case of error -8710915 Twelve: buildList for the win -6f40e59 Twelve: Add support for search queries -0713aed Twelve: Apply player setup after .build() -5e5d43a Twelve: Lyrics fragment -e822e83 Twelve: Add lyrics view -fc7c6c5 Twelve: SubsonicDataSource: Implement lyrics fetching -85bd87e Twelve: JellyfinDataSource: Implement lyrics fetching -27e846a Twelve: Add lyrics method -65c5974 Twelve: MainActivity: Move intent flow handing to the usual `loadData()` -f9fd41c Twelve: Stop using fitsSystemView=true on CoordinatorLayout -1d1424a Twelve: Set edge to edge and transparent navigation bar color attributes -22e2370 Twelve: Remove useless orientation attribute on CoordinatorLayout - - * vendor/alpha -6d92207a Rework `createjson.sh` (#65) -13f3e960 Update charger animation -fe6dbac1 Build charger animation -e4a0329e android: merge_dtbs: Respect miboard-id while merging -2c09be0c Update default wallpaper - -==================== - 02-21-2025 -==================== - - * packages/apps/AlphaSettings -8a90fdc8 Remove 4G icon switch - - * packages/apps/Glimpse -a05d2fa Glimpse: Show warning regarding trash's auto-empty behavior - - * packages/apps/Settings -c269d741f976 Partially Revert "DynamicDenylistManager shall not exist" -8903d3175789 Settings: Update FaceEnroll ActivityDirector and Confirmation -3b5c0ca7ea24 Settings: Create face confirmation activity -6bbbef1c815f Settings: Create a ActivityDirector to optionally use SettingsGoogleFutureFaceEnroll -05ffe93e8dc4 [SQUASH] Settings changes for Pixel Framework -8b5fcc80a584 Revert "[Settings] Start SettingsDumpService to dump the db log after the db is" -078a9ad69e96 Disable SettingsDumpService -8f2bc0a3e870 Settings: Add missing animations from google -1dcf53457817 Settings: Add a toggle to force LTE_CA -4fe44aca3de6 Settings: Whitelist WRITE_DEVICE_CONFIG permission - -==================== - 02-20-2025 -==================== - - * device/qcom/sepolicy_vndr/sm8450 -0624d88e9 sepolicy: NFC: Label NXP NFC 2.0 HIDL - - * device/qcom/sepolicy_vndr/sm8550 -78af5575a sepolicy: NFC: Label NXP NFC 2.0 HIDL - - * frameworks/base -6351de5582baf Set animation scale to 0.75 - - * packages/apps/AlphaSettings -feb1b2e6 Restore QS layout settings -1e36feaa Restore sensor block settings -c5255df5 Hide UDFPS settings if not supported -6e29bda4 New Crowdin updates (#93) - - * packages/apps/Aperture -0fd3ae9 Aperture: Switch to upstream zxing-cpp - - * packages/apps/Glimpse -2162911 Glimpse: Break as soon a valid media type is found - -==================== - 02-19-2025 -==================== - - * lineage/wiki -f2d6f3bf wiki: libvirt-qemu: VirtIO keyboard does not work on the boot menu - - * manifest -c5e76c0 Create alpha-15.1-pixel branch -8c1ba78 Track Backgrounds from Alpha - - * packages/apps/Backgrounds -859ec8a Backgrounds: add AlphaDroid wallpapers - - * packages/apps/Settings -cf3e20604cc7 Remove BETA tag - - * packages/apps/Updater -e613dc7 Updater: adapt to AlphaDroid - -==================== - 02-18-2025 -==================== - - * build/make -417fdce7b8 tools: Introduce AlphaDroid - Bringed back alpha-14 from [1] and adapted to our new props -6f9eb082b0 build: execute changelog generator script - - * packages/apps/Catapult -fb83201 Catapult: String improvements & fixes - - * packages/apps/Settings -f70d438bc3f7 settings styles: sync accent colors with frameworks/base - - * vendor/alpha -be35ccc3 overlay: sync alpha accent colors with frameworks/base -0d70716a Restore createjson and changelog scripts - - * vendor/gms -ffbf6b5 Add Wellbeing overlay -383645e Drop systemui clocks -3c64a55 Optionally build nexus squad - -==================== - 02-17-2025 -==================== - - * external/avb -5986166 avbtool: Add --set_verification_disabled_flag arg - - * lineage/hudson -fdce9c0 hudson: Promote tama to 22.1 - - * lineage/wiki -958d23f3 wiki: Promote tama to 22.1 - - * manifest -9dfc71b Update clang version -ffe48b7 Create alpha-15.1 branch - - * packages/apps/AlphaSettings -ab23110b AlphaSettings: hide toolbar and restore banner - - * packages/apps/FMRadio -168f373 jni: Move customisation to properties -e603ac7 jni: Always build noise floor detect code and make it conditional - - * packages/apps/Settings -f6b50d9fe219 fixup! Settings Styles redigned - - * packages/apps/Twelve -3dcf24e Twelve: Fix visualizer, hopefully for the last time -5053246 Twelve: Take into account the timeline for the queue -ccdd16b Twelve: Add notification shuffle/repeat -eb13860 Twelve: Use Resources when possible to fetch resources -7b7be5f Twelve: Fix some format strings -b503c04 Twelve: Make player/mediaLibrarySession lateinit -5d265a0 Twelve: Reformat code - - * vendor/addons -19ce0e49 Black theme: fixup -3f94ec3b Add AlphaDroid ufps icon (semi-transparent and transparent versions) -111cbdda add AlphaDroid udfps icon - - * vendor/alpha -b2f77028 brunch: build user variant by default -107ab257 Ready for official builds -d11ac319 Enable ThinLTO cache - -==================== - 02-16-2025 -==================== - - * lineage/mirror -e366ec6 Updated to 15-Feb-2025 23:01 UTC - - * lineage/wiki -b3898e71 wiki: Sm-A217M -> SM-A217M -15192f7d devices: Promote NVIDIA to 22.1 - - * manifest -1fb3646 Track crClang - - * packages/apps/AlphaSettings -085e7f1c Add Wellbeing short title -de4fefb8 Use Alpha style on Alpha settings - - * packages/apps/Aperture -59013c8 Aperture: Update kotlin to 1.9.23 -759f8d0 Aperture: Update gradle{,w} to 8.12 -0e49f58 Aperture: Update ZXing-C++ to 2.3.0 -62bc27b Aperture: Update CameraX to 1.5.0-alpha05 -39a00a1 Aperture: Ensure secure URIs are inserted in order -4fc2193 Aperture: Update kotlin to 1.9.10 - - * packages/apps/DeskClock -296e428c0 DeskClock: Convert ListPreferences to SimpleMenuPreferences -5ddac9586 DeskClock: Remove the summaries for AM/PM and bold text -f0f776a74 DeskClock: Hide or disable some screensaver settings -713a91649 DeskClock: Fix formatting in ScreensaverSettingsActivity - - * packages/apps/Glimpse -a0ad138 Glimpse: Split ACTION_REVIEW from ACTION_REVIEW_SECURE - - * packages/apps/Jelly -1f5f1bc Jelly: Save user agreement about protected media - - * packages/apps/Settings -d61bbcea3990 Disable LiveDisplay settings -a5340ca60020 ROM card view: link to firmware version settings - - * packages/apps/Twelve -1120101 Twelve: Handle empty resumption playlist -2a9b749 Twelve: Readd round icon attribute -1e4626b Twelve: Set wake mode to network -7c4ac24 Twelve: Tie CoilBitmapLoader to service scope - -==================== - 02-15-2025 -==================== - - * device/qcom/sepolicy-legacy-um -ff381799 sepolicy: Add default permission for aidl hal_bootctl - - * packages/apps/Aperture -066ea34 Automatic translation import - - * packages/apps/AudioFX -02916e7 Automatic translation import - - * packages/apps/Camelot -23242a1 Automatic translation import - - * packages/apps/Catapult -c114091 Automatic translation import - - * packages/apps/Contacts -77afb19ff Automatic translation import - - * packages/apps/DeskClock -3db9ea707 Automatic translation import - - * packages/apps/Dialer -5bf5719c7 Automatic translation import - - * packages/apps/DocumentsUI -2b776897f Automatic translation import - - * packages/apps/Etar -578b82a5 Automatic translation import - - * packages/apps/FMRadio -7f5188d Automatic translation import - - * packages/apps/FlipFlap -fe2abce Automatic translation import - - * packages/apps/Glimpse -d47de86 Automatic translation import - - * packages/apps/Jelly -3f4c549 Jelly: Include assets -525b66c Automatic translation import - - * packages/apps/Messaging -ff479f4 Automatic translation import - - * packages/apps/Profiles -7455e65 Automatic translation import - - * packages/apps/Recorder -8f65896 Automatic translation import - - * packages/apps/Twelve -38aff6a Automatic translation import - - * packages/inputmethods/LatinIME -79f3aff8c Automatic translation import - - * packages/providers/DownloadProvider -be8b0fb7 Automatic translation import - - * packages/resources/devicesettings -8624d14 Automatic translation import - - * prebuilts/clang/host/linux-x86/clang-latest -d8a8c91 clang 20.0.0 (based on r547379) from build 13065274 - - * vendor/crowdin -fef707d Automatic translation import - - * vendor/qcom/opensource/commonsys/fm -b38a391 Automatic translation import - -==================== - 02-14-2025 -==================== - - * device/qcom/sepolicy_vndr/legacy-um -87be962ff sepolicy: NFC: Add support for snxxx AIDL service - - * device/qcom/sepolicy_vndr/sm8450 -54ee7c8f8 sepolicy: NFC: Add support for snxxx AIDL service - - * frameworks/base -26431e55b2300 LocaleTile: Fix crash on LongClick -8260056afcc4c Whitelist Google Photos URIs - - * hardware/interfaces -6d4d419194 cec: Don't spam "Machine is not on the network" - - * hardware/lineage/interfaces -9b60d38 Extend Fastcharge implementation [1/3] - - * lineage-sdk -40032999 sdk: Get rid of lineageos.os.{Build,Concierge} - - * lineage/hudson -e10b30e "Fashionably Tegra-late, but worth the wait!" -a3fe984 5th upgrade for konami, I'm out of ideas - - * lineage/mirror -d8342d4 Updated to 13-Feb-2025 23:01 UTC - - * lineage/scripts -38d1654 reuse_helper: Handle kotlin files - - * lineage/wiki -d38b80c5 wiki: Promote Xiaomi SM8250 devices to 22.1 - - * manifest -a643cc0 Track bionic and art from Alpha - - * packages/apps/Jelly -68e9e9f Jelly: Handle MediaSession For BackgroundShortcut -0d0d674 Jelly: Background Shortcuts - - * packages/apps/TvSettings -d6b23f1f2 TvSettings: Support two button mute - - * packages/apps/Twelve -4edf7e3 Twelve: LocalDataSource: Stop pretending we can have artist thumbnails -69f3c76 Twelve: BaseMediaItemView: Simplify thumbnail handling -53ccfe0 Twelve: Navigate safely! -254cec7 Twelve: Ensure all media items have fallback titles -8e70bf3 Twelve: LocalDataSource: `/audio/albumart/` exists too -1cd5d90 Twelve: LocalDataSource: Use hidden album art database -62db55b Twelve: Switch back to vendored material -33444d7 Twelve: Use a custom BitmapLoader for our service -472b00e Twelve: SubsonicDataSource: Use media item builders -8690156 Twelve: Simplify media item to data source and media type querying - -==================== - 02-13-2025 -==================== - - * lineage/hudson -198f81c Regenerate device dependency mappings - - * lineage/mirror -be0c976 Updated to 12-Feb-2025 23:01 UTC - - * packages/apps/Twelve -f010219 Twelve: Use `ProviderIdentifier` for all fragment arguments -59cea6d Twelve: Hide trailing view for local provider -a7af174 Twelve: Media item builders! -32ff491 Twelve: Use Album thumbnail as Audio thumbnail - - * vendor/alpha -59835401 Disable memtag for different processes - - * vendor/extra -6148f7f Update Lawnchair to version 15.0.0-20250213 - -==================== - 02-12-2025 -==================== - - * art -77ab69d4e1 Fix the divide-by-zero in odrefresh. -3d9f9226ea Speed up `AppendPrettyDescriptor()`. -15c86e55d4 optimized hprof speed -5af74f19cb Speed up `Class::IsInSamePackage()` even more. -3b9980b6eb Speed up `Class::IsInSamePackage()`. -56dc1ca02c Fix app info code type. -7eb26ef86a Use stp/ldp while calling native functions in arm64 -cd450549e7 ART: dex2oat and instruction_set_features: utilize modified runtime capabilities set -cd4057f5f7 Revert "Add visibility attributes in runtime/arch" -352bd28c70 Revert "Remove strip.keep_symbols from libart defaults" -8ab0280085 art: Add support for Cortex-A510 -3d9322a731 art: add check for __ARM_FEATURE_ATOMICS that indicates LSE atomics availability on target -98ba226aba art: Add Kryo585 support -f1263236cc art: Kryo785 supports dotprod -6da4f8a45d art: Disable debug tracing on production builds -c9ae30684b art: add kryo785 architecture variant. - - * bionic -4fd741f00 Ensure prop has zero padding -3759653a5 Prevent serial of ro props from self increment -eb1da2f49 getaddrinfo: Use Cloudflare DNS instead of Google DNS -d36536ebf libm: Support -ffp-contract=fast -0d98c742a Re-enable LTO for libm -7072cc6a6 libc: Set __bionic_asm_align to 64 for arm and arm64 -002d8d906 bionic: Support wildcards in cached hosts file -08847f3bb bionic: Sort and cache hosts file data for fast lookup -0317e202f Revert "Add better jemalloc stat logging." - - * build/blueprint -e29c960 Use pool for mutatorContext and transition contexts -633ab9e Optimize proptools.CalculateHash allocations - - * build/make -f13fdb0cc0 build_image: get squashfs partition size from image size -ed6768708d build: handle missing files in remove_broken_build_tools -3d130d7637 build: Remove broken prebuilts - - * build/soong -bd349ebae soong: Allow flock for changelog generation -fe003d83e soong: Add out/soong/*.glob* to installclean -ce083663b cc/lto: enable unified LTO -377fe9ff4 cc/lto: add property for not restricting instr limit -16d359249 lto: enable O3 optimizations on explicit lto modules -b9db5a9fe cc/lto: instr limit of 40 for explicit LTO modules -128a56e30 Remove workaround for Qualcomm Kryo 385 -02505dab0 Enable crypto extensions for armv9-a -a16ac2ba8 config: Update cortex a75 flags -22e9a39ac config: do not force cortex-a76 as cortex-a75 -e974e4afd cc: Enable more features when using armv8.2-a+dotprod -4af8b30f9 soong: Add kryo300 variant support -1dc94feec soong: add kryo785 architecture variant for arm64. -e97f354ff Define AArch32 soong variable -80b2c1f4b arm_device: Change cortex-a76 mcpu from a55 to a75 -62501bcbc arm64_device: Change cortex-a76 mcpu from a55 to a75 -5e278dd8a Use -march=armv9-a+nosve for Armv9-A arch variant -718e0fbbc Introduce Cortex-A510 CPU variant -ee2aa776b soong: Allow various path commands - - * device/google/atv -66aed86 Revert "atv: sepolicy: public: Pull in hal_client_domain rule" -7beb6ac atv: sepolicy: public: Pull in hal_client_domain rule - - * frameworks/base -566743b7bf78f don't crash apps that depend on missing Gservices provider -132bcb02c55b2 Redesign seekbar -c53aa47a1ef5c SystemUI: Controllable squiggle animation [1/2] -d684e7eefec15 Statusbar: adjustable max visible notification icons [1/2] -1c18973e63ebe privapp-permissions: Grant missing TelephonyProvider perm. -d2ed4205900c1 config: Allow gms to access persistent data partition -9e27c57d39e57 core: Introduce VibrationUtils - - * manifest -c1ab1ed Update vendor/gms path - - * packages/apps/AlphaSettings -4a4a4bb2 Restore squiggle_animation and max notification icons settings -24908c8f Settings dashboard: disable DoT style for now -e9755476 Restore button settings - - * packages/apps/LineageParts -7ad6770 Disable unused components -01ab40a Nuke LineageStats -a71a55d Ship as AlphaDroid based on LineageOS -0e90313 Use ListPreference for charging control fragment -57d571c Update color mode preview from Android 12 -b34ea4d Make trust interface less boring - - * packages/apps/Twelve -b5597d7 Twelve: Lowercase cursor column names -1a2d65a Twelve: Fix double .px in MAX_THUMBNAIL_SIZE - - * vendor/extra -904796a Update RiMusic to version v0.6.70 - -==================== - 02-11-2025 -==================== - - * hardware/lineage/interfaces -8f445d1 fingerprint: aidl: Improve documentation on sensor_location -3824e1a fingerprint: aidl: Use soong to decide which arch to build -9d7e862 fingerprint: aidl: Allow setting more than one sensor location -87c6ff2 fingerprint: aidl: Initial legacy libhardware implementation -15024d6 fingerprint: aidl: Initial stub service - - * packages/apps/Settings -5dd8c78f8bd1 Disable 'hide IME' preference when 'show hint' is enabled - -==================== - 02-10-2025 -==================== - - * bootable/recovery -08ca33c5 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_bootable_recovery into alpha-15.1-wip - - * build/make -d32898ad47 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build into alpha-15.1 - - * build/soong -f15fc9e7d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_build_soong into alpha-15.1 - - * device/qcom/sepolicy_vndr/legacy-um -d929ad85c sepolicy_vndr: allow sensors HAL to do binder call to system_server - - * device/qcom/sepolicy_vndr/sm8450 -76a576ae7 sepolicy_vndr: allow sensors HAL to do binder call to system_server - - * frameworks/av -6a3bf5ba6f fixup! av: support per-app volume [1/3] -4c2afb493d Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_av into alpha-15.1-wip - - * frameworks/base -58047e65355de base: Add a toggle for long press on navbar to search [1/3] -90502e054be97 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_frameworks_base into alpha-15.1-wip - - * hardware/lineage/interfaces -a90b7f9 light: Add `lcd-backlight-ex` to the list of backlight devices -232ba05 light: Add `panel0-backlight-ex` to the list of backlight devices - - * hardware/samsung/nfc -61bc89f nfc: Rename debug level property - - * lineage/hudson -80fbf9a Flash wasn't fast enough -77c8d6c Japan has their own version of everything -67cc451 Burned at the stake, forever to be remembered - - * lineage/wiki -476a125d devices: add LG V50 ThinQ (flashlmdd) -b20eb9dd wiki: add Japanese LG V30 -992de2e1 joan: promote to 22.1 - - * manifest -c811b92 Merge branch 'lineage-22.1' of https://github.com/lineageos/android into alpha-15.1-wip -479a96c Track pixel overlays - - * packages/apps/AlphaSettings -6f09b0a2 Add network_dashboard_short_title -7b7fc2c1 Add dashboard messages -89a50f43 AlphaDroid 3.1 bringup - - * packages/apps/Launcher3 -0c73ad3ff3 Allow locking tasks to recents [2/2] -1f9fa63ef6 Restore 4x4 workspace -7f05a4af09 Launcher3: Adapt strings to Alphadroid -5a94ae4307 Ship as AlphaDroid based on crDroid - - * packages/apps/Settings -cb00e2b56ef9 Merge branch 'lineage-22.1' of https://github.com/lineageos/android_packages_apps_settings into alpha-15.1 -f50b2d1f8938 Settings: Better check for GSA package -87eb0db1aea7 Settings: Add a toggle for long press on navbar to search [3/3] - - * packages/apps/SetupWizard -5f03725 Merge branch 'lineage-22.1' of https://github.com/LineageOS/android_packages_apps_SetupWizard into alpha-15.1 - - * packages/apps/Twelve -dec2d10 Twelve: Make togglePlayPause() rewind if playback has ended -2c66e7b Twelve: Add some margin to create playlist button -11e6ecb Twelve: Don't open bottom sheet for "create playlist" item -8a0e7de Twelve: Move onPrepareView callbacks using item to onBindView -799a828 Twelve: Merge all media item views - - * vendor/alpha -788ff11c Revert "config: Changes for libfmjni bp conversion" -898c8f0f apns: Update Lebara UK -395656f3 vars: Update qcom tags - -==================== - 02-09-2025 -==================== - - * build/make -083d637741 build: dont include tasks from tests and platform_testing -23727aae3b combo: Add kryo585 architecture to known v8 cores -f07fa05673 combo: Add kryo585|785 architectures to known v8-2a cores -0d3aaba9ef combo: Add cortex-a76 to known v8-2a cores -b8eb00ae74 core: Use $(PRODUCT_DEVICE) for auto generated RRO names -616a2095c2 Revert "Add DeviceAsWebcam to general handheld_system" -11233f9763 envsetup.sh: Setup and enable ccache -c562d1ce5f build: Always use release-keys -5edf5fdbac build: Add backuptool by default - - * frameworks/base -4f1dc41a1e26b display: Add simple RGB color balance transform - - * hardware/qcom-caf/msm8953/audio -1b5ce68f1a visualizer: do not use GNU old-style field designators -1809521b6a voice_processing: do not use GNU old-style field designators -218e835767 audio-effects: Fix out-of-bound read -c7945b3662 audio-hal: Fix kw issue -71c5e51120 audio-hal: oob read when doing the typecase -51cdec106b hal: Update 64-bit vendor HAL path -01be9192c4 soundfx: Convert to blueprint & remove unused effects -ddd4045c35 audio: Remove autoconf/automake files - - * hardware/qcom-caf/sm8250/audio -0547a74443 visualizer: do not use GNU old-style field designators -ce9604d4c6 voice_processing: do not use GNU old-style field designators - - * hardware/qcom-caf/sm8250/media -3bfc8ddfb mm-core: Remove no longer used codecs -c64f23926 mm-core: Convert to blueprint -a47853022 mm-core: Remove unused files & flags -d004c5f44 mm-video-v4l2: Convert to blueprint - - * hardware/qcom-caf/sm8350/audio -452725a165 audio: Drop STT meta test app -b13925e6ee visualizer: do not use GNU old-style field designators -f5b6e037a4 voice_processing: do not use GNU old-style field designators - - * lineage/hudson -0aaaa77 hudson: Promote miatoll to 22.1 - - * lineage/wiki -0f1ec4d5 wiki: devices: Promote miatoll to 22.1 - - * packages/apps/Settings -0042bc16f205 AlphaSettings: hide title -9c25876494c6 Settings: Add Circle To Search [2/2] -17fda7c3a0c1 Don't let profiles open the UserSettings overflow -1aaf5972f2af Block the content scheme intent in AccountTypePreferenceLoader -a3b33971f80f Add missing resources -b2e46175ae37 Beta TAG for now -165bb5354e03 FastChargingPreferenceController: implement dynamic summary to show fastcharge status -50d5aeb09479 Extend Fastcharge implementation [2/3] -627713f5f151 BatteryStateDatabase: Set exportSchema to false -fdc77b3080df Settings Styles redigned - - * packages/apps/Twelve -c95473a Twelve: Reformat code -0836d86 Twelve: Fix/improve intent handling navigation - - * vendor/addons -c1d4d392 BlackTheme: Turn colors_material bg colors to black -1cc41ad7 BlackTheme: Update and move color resources to night -87ddda02 Fix transparent Shishu themes - - * vendor/alpha -001ab1c8 Remove unused makefiles -c71b3137 Guard pixel overlays with WITH_PIXEL_OVERLAYS -b678f22d vars: February 2025 Security update - - * vendor/pixeloverlays -fbfbafd Adapt for Alpha - -==================== - 02-08-2025 -==================== - - * build/make -36c1905749 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * device/qcom/sepolicy_vndr/sm8550 -bbbbed900 sepolicy: NFC: Add support for snxxx AIDL service - - * frameworks/base -8f2748b40ab1b Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 -83cd5c824c57b Nuke black theme overlay - - * hardware/qcom-caf/msm8953/audio -23c50e9f81 audio: Remove OMX components -0f32dcd453 audio: Remove disabled HW accelerated effects -e342823606 audio: Remove unsupported QAHW -2b2841b3bc audio: Remove unused hdmi_in_test -c70ad9ca25 audio: Remove deprecated audio daemon - - * hardware/qcom-caf/msm8953/display -47e27c7418 Revert "gpu_tonemapper: Fix compilation issue." -5345254cfd gpu_tonemapper: Fix loop increment never executed -3a56441266 Convert some display libraries to blueprint -681046fd02 Remove unused libcopybit sources -6d2c56e9d5 qdutils/hwc: Remove unused code surrounding fps calculations -61890b7fff sdm: Remove USE_GRALLOC1 conditionals -12d9f2ca89 sdm: Remove use_hwc2 conditional -0bc83cf81d sdm: Remove display_config_version conditionals -bad9b7af9a Revert "hwc2: Avoid adding default color mode when display PP is unsupported" -c54d77b5ca Revert "hwc2: Remove multi-display support from wearables." -be97b92a6e sdm: Cleanup unused code, round 2 -1e0788c9d3 display: Cleanup unused code -9ae410d70b display: Remove deprecated lights.$(TARGET_BOARD_PLATFORM) -a407397f40 display: Remove libmemtrack library - - * hardware/qcom-caf/msm8998/audio -970b452a3b hal: update audio effects config names -0b702d7ccc post_proc: fix mul-overflow -d6bec2c279 hal: Show cal step for volume listener -8f607d5055 visualizer: dynamically parse the sound card when opening mixer -d396d643bf post_proc: Add USB device support for bass boost -32fe461f1e visualizer: do not use GNU old-style field designators -c7b9f35c22 voice_processing: do not use GNU old-style field designators -15a96f3ad3 audio-effects: Fix out-of-bound read -927a1882cf audio-hal: Fix kw issue -fff6b47b04 audio-hal: oob read when doing the typecase -af7b3277b8 hal: Update 64-bit vendor HAL path -a310768ff9 soundfx: Convert to blueprint & remove unused effects -9164a77fbb audio: Remove autoconf/automake files - - * hardware/qcom-caf/sdm845/audio -d6b236ac74 visualizer: do not use GNU old-style field designators -5bb9c04a33 voice_processing: do not use GNU old-style field designators -0c00f920ca audio-effects: Fix out-of-bound read -a8cefba281 audio-hal: Fix kw issue -0a0ffe2aae audio-hal: oob read when doing the typecase -07a88dcd10 hal: Update 64-bit vendor HAL path -f9c22aba8e soundfx: Convert to blueprint & remove unused effects -1f6606f76e audio: Remove autoconf/automake files - - * hardware/qcom-caf/sm8150/audio -15dc2b0cbc visualizer: do not use GNU old-style field designators -c47189f8b2 voice_processing: do not use GNU old-style field designators -b61b62ecf2 audio-hal: Fix kw issue -56b6afdb40 hal: Update 64-bit vendor HAL path -566fa517c3 soundfx: Convert to blueprint & remove unused effects -1e377baf21 audio: Remove autoconf/automake files - - * lineage/wiki -b904cccc Update info on bootloader unlock for new Xiaomi devices - - * manifest -538c253 manifest: February 2025 Security Update -43cb1e2 manifest: Drop legacy QCOM VR HAL - - * packages/apps/AlphaSettings -471c2820 New Crowdin updates (#1221) -92ead45e crdroid: Add strings for Circle To Search -548fef71 crdroid: Add strings for long press on navbar to search - - * packages/apps/Jelly -649eef6 Jelly: set MainActivity launchMode to singleTask - - * packages/apps/Launcher3 -f159d02318 New Crowdin updates (#480) -afac31d785 Launcher3: Fix up jank with navbar long press -18736a612f Launcher3: Add Circle To Search [1/2] -2e5eeeacec Launcher3: Add a toggle for long press on navbar to search [2/3] -79f2f89d15 Launcher3: Implement long press nav bar to search gesture -bf4be376a8 Revert "Launcher3: Add Circle To Search" - - * packages/apps/Updater -35d7963 New translations (#84) -0560741 Update Crowdin configuration file -2c14d1e Catch exceptions when enabling performance mode -0f9e696 Revert "Updater: layout: activity_updates: add spacing.." -c0f32d5 Updater: Update parsed info whenever data is refreshed -13bc9bf Updater: Add support links and some more info -07a0657 Updater: Use headline font for activity header -238d244 Updater: Nuke Lineage's website on installation blocked dialog -91aa830 Updater: Initial adaption for crdroid -fb990ca Updater: Change package name to avoid conflict -835f24a Ship as crDroid based on LOS - - * packages/modules/Bluetooth -9061231e0a BondStateMachine: Fix NPE on some devices -a8abaaf571 gd: hci: Allow disabling erroneous data reporting -9d22ecdada Fix BT noise issue during startup -619f6ee651 Bluetooth timeout feature - - * vendor/alpha -f76398ca vendor: alpha: update default pif values - -==================== - 02-07-2025 -==================== - - * hardware/qcom-caf/sm8350/audio -37b09dbbcd soundfx: Convert to blueprint & remove unused effects -170939e8c9 audio: Remove autoconf/automake files -0c1ac0287d audio-hal: oob read when doing the typecase -6dfdc466ab Remove ndk_platform backend. Use the ndk backend. -ea4962f508 Remove log spam when placing power hint call -0cc4c5da5d Probe PowerHAL HIDL first -37beb7942e Support Power HAL AIDL service - - * lineage/hudson -d6b4269 hudson: Promote nairo to 22.1 -a6834bc Regenerate device dependency mappings - - * lineage/wiki -8324ea23 wiki: devices: Promote nairo to 22.1 -b46924c9 wiki: Use `fastboot reboot-recovery` for sweet -cedaf26a wiki: Use `fastboot reboot-recovery` for Xiaomi SM8350 - - * packages/apps/AlphaSettings -dd33f480 New Crowdin updates (#85, #86, #87, #88, #89, #90, #91) - - * packages/apps/FMRadio -f3eb07a FMRadio: Rework custom jni support - - * packages/apps/Glimpse -c57bcd7 Glimpse: Create a Media out of thin air if not in media provider - - * packages/apps/Launcher3 -78bae21c78 Launcher3: Make zram info in recents optional -5078122b0f Launcher3: Set recent opacity to 100 - - * packages/apps/Twelve -2a492f1 Twelve: Fix-up provider preference store -967f2ab Twelve: New create playlist fragment -23e5e41 Twelve: Convert Serializable users to Parcel -ed57e27 Twelve: Better provider selector dialog -b06afb1 Twelve: Commonize Material 3 dialog fragments - - * vendor/qcom/opensource/libfmjni -c5ace14 libfmjni: Convert it to filegroup and header lib - -==================== - 02-06-2025 -==================== - - * device/qcom/sepolicy_vndr/legacy-um -e40b8c7a6 sepolicy: Add default permission for aidl hal_bootctl - - * device/qcom/sepolicy_vndr/sm8450 -3126539a7 sepolicy: Add default permission for aidl hal_bootctl - - * device/qcom/sepolicy_vndr/sm8550 -704bbd332 sepolicy: Add default permission for aidl hal_bootctl - - * external/gptfdisk -b605061 gptfdisk: Make libgptf available to product/vendor - - * hardware/lineage/interfaces -6063eaf light: Add "sprd_backlight" to the list of backlight devices - - * hardware/qcom-caf/bootctrl -3adebe3 Stricter stat when checking for blockdevices -76c9776 Remove goto statements -32e7614 Add function to get active boot slot -91e6460 bootcontrol: count slots correctly -7f432e0 [LSC] Add LOCAL_LICENSE_KINDS to hardware/qcom/bootctrl -b194dcc Add METADATA to bootctrl: BSD=NOTICE - - * hardware/qcom-caf/sm8550/dataipa -b482ae4 dataipa: Disable all the debugging - - * lineage/wiki -d749782b fixup! wiki: Update jekyll-search -510d60e9 wiki: surya: Update maintainers -b70c854a wiki: faq: Fix Android capitalization - - * packages/apps/Camelot -8318cbd Camelot: Update androidx.pdf to 1.0.0-alpha06 - - * packages/apps/Launcher3 -809e4b5340 Launcher3: Update folder preview and background color - - * vendor/alpha -48604d44 kernel: sign GKI modules -6b8003d1 kernel: preserve GKI modules in vendor modules.dep -5dfa43f1 kernel: break the build when depmod finds missing symbols -a7488f21 kernel: consider gki modules when running depmod for vendor modules -047f5b78 kernel: reduce the use of find when copying modules -ab3bac8a merge_dtbs: Craft unique name for final saved merged trees -17102fc3 merge_dtbs: Use logging and argparse -1466d988 merge_dtbs.py: Print only basenames of dtb* files - -==================== - 02-05-2025 -==================== - - * build/release -1d3087d9 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/build/release into alpha-15.1 - - * frameworks/av -c2d9d7b479 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * frameworks/base -95950965742df SystemUI: Add DOUBLE_TAP_TO_WAKE to tuner service reset exceptions -279abaab4b08f Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/frameworks/base into alpha-15.1-wip - - * lineage/mirror -96d2d14 Updated aosp-minimal to 04-Feb-2025 23:01 UTC - - * packages/apps/Settings -a0338d65bdd5 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * packages/modules/Bluetooth -c2414be0f4 Merge tag 'android-15.0.0_r14' into staging/lineage-22.1_merge-android-15.0.0_r14 - - * packages/modules/Wifi -44969a2973 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/modules/Wifi into alpha-15.1-wip - - * packages/services/Telecomm -7f43170cd Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/packages/services/Telecomm into alpha-15.1-wip - - * system/core -2e3de5ae8 Merge tag 'android-15.0.0_r14' of https://android.googlesource.com/platform/system/core into HEAD - - * vendor/gms -b3761f9 Exclude some exempted location overlays -9358184 Rename some resources for now -680d617 gms: Guard Phone packages for wifionly builds -0bfc7d1 gms: Conditionally build some apps -9a0c09d gms: Update to komodo-ota-ap4a.250205.002-e3270b8a -5d5f45a gms: Automatically extract and update GoogleExtServices from apex -83fd693 gms: Drop quick tap sysconfig -5f53ddc gms: Add Contextual Search sysconfig -ee598ee Setup symlink properly for libpowerstatshaldataprovider - - * vendor/pixel-framework -99e9a05 Revert "Disable burn-in protection and smartpixels for now" - -==================== - 02-04-2025 -==================== - - * frameworks/base -0bab1f1269989 SystemUI: Add ability to toggle bluetooth battery level [1/2] -b5fefaf8b8c85 SystemUI: Fix side scrolling issues with vertical/A11 tile layout -8d7538db0a773 SystemUI: Do not marquee QS label text -dbc77eebf4a61 SystemUI: Allow to change QS tile label text size [1/2] -005dda3bc5672 SystemUI: Add QS tile layout settings [1/2] -82fabe387fc3f Make sensor block package list configurable [1/2] -9aa4674b258a6 base: Add Accelerometer and Linear Acceleration sensors in blocking list -fe1960835aa0a FWB: Sensor block per-package switch (1/2) -97e43209a5bee SystemSensorManager: sensor block per-package -b2be26e7180c1 Checking whether ComponentName with current InputMethod is not null -d81bba678f819 fixup: StringBlock: Prevent SystemUI crash when inflating QS - - * hardware/google/pixel -15b40a4f pixel: Switch to common lineage powershare HAL - - * hardware/google/pixel-sepolicy -3961e30 pixel: Switch to common lineage powershare HAL - - * hardware/qcom-caf/sm8450/data-ipa-cfg-mgr -9bef0c7 data-ipa-cfg-mgr: Disable all the debugging - - * hardware/qcom-caf/sm8550/data-ipa-cfg-mgr -19ea389 data-ipa-cfg-mgr: Disable all the debugging - - * hardware/qcom/data/ipacfg-mgr -816edd3 Remove no longer used Android.mk guard -ef8e1ce data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds -ddc7901 data-ipa-cfg-mgr: Disable all the debugging -1921b32 ipanat: Remove test/Android.mk -e753ce9 ipacm: convert Android.mk files to Android.bp -63a4592 ipacm: Fix compilation error for switch case -e821842 google: Add repo license information. -e12c3ac Add hardware/qcom/data/ipacfg-mgr/msm8998 soong namespace - - * lineage/mirror -a3753f4 Updated aosp-minimal to 03-Feb-2025 23:01 UTC - - * lineage/wiki -f0b13a45 wiki: Update information post-migration to Play Integrity - - * tools/extract-utils -9d8fe9b extract-utils: Don't make extract-factory mutually exclusive - - * vendor/alpha -ee7212ee Build LMO Freeform app and sidebar -8fde2067 soong: Add CAMERA_NEEDS_CLIENT_INFO_LIB{_OPLUS} -665c5fcc soong: Add libcameraservice extension config -f7ff180e crdroid: Disable default frame rate limit for games -ba41c8d9 overlay: Use google-sans for font config overlays -a4688341 crdroid: Move face unlock biometric permission to system_ext -7606d8d7 overlay: Add gms location history to extra location packages -17ae3413 overlay: Add tethering to location exemption -472157db overlay: Add SystemUI to location extra packages -1715c719 overlay: Add OmniJaws to location extra packages -98750035 Build extra packages - - * vendor/qcom/opensource/data-ipa-cfg-mgr-legacy-um -2456d63 data-ipa-cfg-mgr: Disable NAT_DUMP on non-debug builds -ccd3dc5 data-ipa-cfg-mgr: Disable all the debugging - diff --git a/stone.json b/stone.json index 02eb257..cab91bb 100644 --- a/stone.json +++ b/stone.json @@ -4,13 +4,13 @@ "maintainer": "KamiKaonashi", "oem": "Xiaomi", "device": "stone", - "filename": "AlphaDroid-15-20250621-gapps-stone-v3.2.1.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/stone/AlphaDroid-15-20250621-gapps-stone-v3.2.1.zip/download", - "timestamp": 1750515491, - "md5": "6f2d53e2cf8882614fb556a9217f6f7e", - "sha256": "30a55beb71d00301bf16231e73e9f0dd5c7234371b394f687fec0221543f5f85", - "size": 2066152830, - "version": "3.2.1", + "filename": "AlphaDroid-16-20251206-gapps-stone-v4.2.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/stone/AlphaDroid-16-20251206-gapps-stone-v4.2.zip/download", + "timestamp": 1765008644, + "md5": "8f28aa91b9b4bfcc25e0112df917aa26", + "sha256": "08b485e41c1ca32bf92e345328b81ecc90a465e959f672553249bb799b9c4341", + "size": 2017176689, + "version": "4.2", "buildtype": "Official", "buildvariant": "gapps", "forum": "", @@ -29,13 +29,13 @@ "maintainer": "KamiKaonashi", "oem": "Xiaomi", "device": "stone", - "filename": "AlphaDroid-15-20250621-vanilla-stone-v3.2.1.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/stone/AlphaDroid-15-20250621-vanilla-stone-v3.2.1.zip/download", - "timestamp": 1750511224, - "md5": "1b5a0281b7d27ac7ed0e97f53123de84", - "sha256": "0f96104788b9af8187548e61299c1ccab77fc1a2275af4480b868d290b9a787d", - "size": 1237041866, - "version": "3.2.1", + "filename": "AlphaDroid-16-20251206-vanilla-stone-v4.2.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/stone/AlphaDroid-16-20251206-vanilla-stone-v4.2.zip/download", + "timestamp": 1765018638, + "md5": "7f143b10070a609f3a0da4a00b5a8137", + "sha256": "b01ed396fa4124217a388ca8c09b4f274d3ceac0bd99764841d8f2c96fbb572f", + "size": 1210648529, + "version": "4.2", "buildtype": "Official", "buildvariant": "vanilla", "forum": "", diff --git a/sweet.json b/sweet.json index cebec5e..5dd18da 100644 --- a/sweet.json +++ b/sweet.json @@ -1,30 +1,28 @@ { "response": [ { - "maintainer": "sweet_builds", + "maintainer": "javi", "oem": "Xiaomi", - "device": "Redmi Note 10 Pro", - "filename": "AlphaDroid-15-20250909-gapps-sweet-v3.2.1.zip", - "download": "https://sourceforge.net/projects/alphadroid-project/files/sweet/AlphaDroid-15-20250909-gapps-sweet-v3.2.1.zip/download", - "timestamp": 1757429085, - "md5": "034fdefb719575df8b42b6ac4e60d8e4", - "sha256": "a6a40c17f36e643f58478bf0d61acdccd3ca7c35c23eae0dd1ffc03041c6901e", - "size": 2783264508, - "version": "3.2.1", + "device": "sweet", + "filename": "AlphaDroid-16-20251123-gapps-sweet-v4.1.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/sweet/AlphaDroid-16-20251123-gapps-sweet-v4.1.zip/download", + "timestamp": 1763910780, + "md5": "1ff119f1bc7e7bc7e2f7dcf2783fb2bc", + "sha256": "53e8e410946281ec88ef7adfa481d4df7011fad59772032629ce44971b22b136", + "size": 2707536715, + "version": "4.1", "buildtype": "Official", "buildvariant": "gapps", "forum": "", "gapps": "", - "firmware": "https://xmfirmwareupdater.com/firmware/sweet/", + "firmware": "", "modem": "", "bootloader": "", - "recovery": "https://github.com/basamaryan/android_device_xiaomi_sweet-TWRP/releases/tag/R11.1_7", - "paypal": "", + "recovery": "https://gofile.io/d/wQhfuv", + "paypal": "https://www.paypal.com/donate/?hosted_button_id=UKKSXJYZDMH58", "telegram": "https://t.me/RedmiNote10ProCHAT", - "dt": "https://github.com/AlphaDroid-devices/device_xiaomi_sweet", + "dt": "https://github.com/AlphaDroid-devices/device_xiaom_sweet", "common-dt": "https://github.com/AlphaDroid-devices/device_xiaomi_sm6150-common", - "vendor": "https://github.com/AlphaDroid-devices/vendor_xiaomi_sweet", - "common-vendor": "https://github.com/AlphaDroid-devices/vendor_xiaomi_sm6150-common", "kernel": "https://github.com/AlphaDroid-devices/kernel_xiaomi_sm6150" } ] diff --git a/waffle.json b/waffle.json new file mode 100644 index 0000000..3a11af8 --- /dev/null +++ b/waffle.json @@ -0,0 +1,29 @@ +{ + "response": [ + { + "maintainer": "javi", + "oem": "OnePlus", + "device": "waffle", + "filename": "AlphaDroid-16-20251026-gapps-waffle-v4.1.zip", + "download": "https://sourceforge.net/projects/alphadroid-project/files/waffle/AlphaDroid-16-20251026-gapps-waffle-v4.1.zip/download", + "timestamp": 1761463540, + "md5": "3937528316ac83805216e29601daff17", + "sha256": "7600ac035b86962152fb9e59926b567b128dcb9669ef81c298c96b293ec3feda", + "size": 3634248953, + "version": "4.1", + "buildtype": "Official", + "buildvariant": "gapps", + "forum": "", + "gapps": "", + "firmware": "", + "modem": "", + "bootloader": "", + "recovery": "", + "paypal": "https://www.paypal.com/donate/?hosted_button_id=UKKSXJYZDMH58", + "telegram": "https://t.me/OnePlus_12_Custom/11451", + "dt": "https://github.com/AlphaDroid-devices/device_oneplus_waffle", + "common-dt": "https://github.com/AlphaDroid-devices/device_oneplus_sm8650-common", + "kernel": "https://github.com/Waffle-Backdoor/android_kernel_oneplus_sm8650" + } + ] +}