-
Notifications
You must be signed in to change notification settings - Fork 374
New Crowdin updates #1286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
gwolf2u
wants to merge
1,728
commits into
16.0
Choose a base branch
from
16.0-translations
base: 16.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
New Crowdin updates #1286
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Squashed:
From: someone5678 <someone5678@users.noreply.github.com>
Date: Sun, 30 Jun 2024 18:35:59 +0900
Subject: fixup! Allow to suppress notifications sound/vibration if screen is ON [1/2]
* Also apply it to NotificationAttentionHelper
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Pranav Vashi <neobuddy89@gmail.com>
Date: Tue, 23 Jul 2024 01:12:58 +0530
Subject: fixup! Allow to suppress notifications
sound/vibration if screen is ON [1/2]
* We forgot to load settings on boot.
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Change-Id: I279b202682939d797d3116089f50d65e3dd3eb01
Signed-off-by: Jabiyeff <cebiyevanar@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Forward ported to marshmallow/nougat By: BeansTown106
this was basically a rewrite as everything about it changed
Squashed:
From: Pranav Vashi <neobuddy89@gmail.com>
Date: Fri, 15 Apr 2022 21:20:04 +0530
Subject: HeadsUp: Change heads up timeout to seconds
Change-Id: I9c88d67d25440dff8f545e1330da672be5d36913
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Change-Id: Id2c2f3259ae2ff45ab28288375bc14148a0e9f1e Co-authored-by: Pranav Vashi <neobuddy89@gmail.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Change-Id: Ia755ca9021468a53c8f17413ca3faa787b00ceea
Analysis: 1.The mapping structure of mUsesPermissionToUids and mPermissionToUids in AppsFilterImpl that stores permission to uid is Map<String, ArraySet<Integer>>, ArraySet<Integer> stores int data in boxing, which takes up slightly more memory than IntArray. Due to the large number of permissions, which is about 2000, Map<String, ArraySet<Integer>> occupies a large amount of memory 2.IntArray stores int data without boxing, which saves more memory 3.The efficiency of adding, deleting and checking 10,000 data is not lower than that of ArraySet<Integer> 4.Use IntArray instead of ArraySet<Integer> to store uid int data Change-Id: I69a5cbc6eaecb4a0de8d2143291aefc115ea9afe Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
* Now we can always enable it Change-Id: Ia27310b05df6b7ec222d91c0e46a068e4e8004e7 Co-authored-by: Pranav Vashi <neobuddy89@gmail.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
- shares the screenshot taken to Google Lens
- informs the user to install Google Lens if it is not installed
Squashed:
From: cjh1249131356 <cjh1249131356@gmail.com>
Date: Wed, 6 Jul 2022 15:35:31 +0800
Subject: SystemUI: Make Lens work without independent package installed
Reference: crdroidandroid/android_packages_apps_Launcher3@35169a6
Signed-off-by: cjh1249131356 <cjh1249131356@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Pranav Vashi <neobuddy89@gmail.com>
Date: Sun, 26 Feb 2023 00:16:39 +0530
Subject: SystemUI: Do not add lens screenshot without google package enabled
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: someone5678 <someone5678@users.noreply.github.com>
Date: Thu, 27 Jun 2024 09:33:41 +0900
Subject: LensScreenshotReceiver: Return when failed to start activity
Change-Id: Iab29516dae6414a5c36168af3643e23006b99ac9
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: someone5678 <someone5678@users.noreply.github.com>
Date: Fri, 12 Jul 2024 13:39:38 +0900
Subject: fixup! SystemUI: Integrate Google Lens into Screenshot UI
* Make Lens activity works on Work Profile
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Co-authored-by: Pranav Vashi <neobuddy89@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Devices with OLED display suffer from
status-bar's notification items and nagivation bar's software keys
causing permanent burn-ins when used long-term.
Moving all items in the area
both horizontally and vertically workarounds this problem.
SystemUI: rework statusbar burn-in protection controller
* Turns out that this controller was instantiated twice resulting in two timers running simultaneously which resulted in views to shift abruptly.
Since the shift amount was too low it was not noticeable at all. So now we instantiate it once with all final dependencies and inject PhoneStatusBarView in fragment transaction.
* Finalized many instance variables and a reference to the main handler is kept instead of creating new ones in each cycle
* simplified / generalised the shift algorithm a bit so that it's easily configurable
* added a callback to reload shift vars on screen density changes
* additional changes:
* use the same controller for navigation handle, saves some cpu time
Signed-off-by: jhonboy121 <alfredmathew05@gmail.com>
SystemUI: inject BurnInProtectionController
Signed-off-by: jhonboy121 <alfredmathew05@gmail.com>
[jhonboy121]: use the scoped SysUISingleton annotation
SystemUI: BurnInProtectionController: rewrite in kotlin and improvements
* ditched TimerTask in favor of coroutines
Signed-off-by: jhonboy121 <alfredmathew05@gmail.com>
[jhonboy121]:
* adapted to A13
* use BurnInHelper util functions for calculating offset
Squashed:
From: jhonboy121 <alfredmathew05@gmail.com>
Date: Sun, 11 Sep 2022 20:36:57 +0530
Subject: SystemUI: BurnInProtectionController: offset less aggressively
Change-Id: Ib37b0fde6edfc34cad8876d2e01ba4f37f323036
Signed-off-by: jhonboy121 <alfredmathew05@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Fabian Leutenegger <fabian.leutenegger@bluewin.ch>
Date: Wed, 2 Aug 2023 20:06:20 +0200
Subject: SystemUI: Make setNavigationBarView and setPhoneStatusBarView nullable
* this fixes a potential npe on devices without navbar or statusbar
Change-Id: Ia8e0ff844e24f67685ba20ac61a88d3256c9c648
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Co-authored-by: jhonboy121 <alfredmathew05@gmail.com>
Co-authored-by: Pranav Vashi <neobuddy89@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
@neobuddy89: Use same toggle for wireless charging animation too. Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Squashed:
From: Hikari-no-Tenshi <kyryljan.serhij@gmail.com>
Date: Fri, 7 Feb 2020 23:39:42 +0200
Subject: [PATCH] Allow devices to set proximity sensor type for ambient display [1/2]
true - wake-up
false - non wake-up
From: Pranav Vashi <neobuddy89@gmail.com>
Date: Wed, 29 Dec 2021 11:30:11 +0530
Subject: [PATCH] Allow to wake the screen instead of pulsing [1/2]
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
* Disabled by default Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Inspired by MIUI and Essential CutoutFullscreenController: Adapted from https://github.com/LineageOS/android_lineage-sdk/blob/lineage-16.0/sdk/src/java/org/lineageos/internal/applications/LongScreen.java Change-Id: I37a6c0a29e7a5fbd9bded530f5de947cce5c7c25 Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Disables a percentage of pixels on screen to reduce power consumption.
If enabled with battery saver, don't scale brightness at 0.5f for UX.
Includes:
- Option to enable on battery saver
- User chosen grid
- Burn-in protection
Configurable via overlay and disabled by defualt:
"config_supportSmartPixels"
Squashed:
From: Sergii Pylypenko <x.pelya.x@gmail.com>
Date: Sun, 8 Apr 2018 17:55:02 -0700
Subject: SystemUI: Screen-dimmer-pixel-filter
Major credits to Sergii Pylypenko
Change-Id: Ib2d7e18ad8fe2313dbf7593bf55a2cfec03ce567
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Adin Kwok <adin.kwok@carbonrom.org>
Date: Wed, 18 Apr 2018 01:05:27 -0700
Subject: Smart Pixels: Switch to registered receiver
Switching to a registered receiver allows to properly handle updates
on enabling of battery saver mode and switching of users.
Also only update screen filter with burn-in protection when the
device is in an interactive state.
Test: Service starts after rebooting with it enabled
Service starts on battery saver mode (user toggle)
Service starts on battery saver mode (auto-enabled)
Service re-adjusts on user switch to current user settings
Filter updates after selected timeout
Change-Id: Iced17fd5cc49e0163754bf75782f8465b54e859b
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Adin Kwok <adin.kwok@carbonrom.org>
Date: Sat, 21 Apr 2018 01:46:50 -0700
Subject: Smart Pixels: Dynamically register receiver
Don't keep the receiver registered if it isn't enabled.
Change-Id: If6975df536598ee19d0ee17ec4150ae1b055e18c
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Pranav Vashi <neobuddy89@gmail.com>
Date: Sun, 26 Mar 2023 11:49:54 +0530
Subject: SmartPixels: Use CoreStartable interface for receiver
* Also clean up and add check whether smart pixels is supported.
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Adin Kwok <adin.kwok@carbonrom.org>
Date: Mon, 22 Oct 2018 13:00:13 -0700
Subject: Smart Pixels: Update default grid pattern
Change-Id: I826a5a2fdc3aaa9c64f59fbe8b28c8757ca31c58
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Anay Wadhera <anay1018@gmail.com>
Date: Mon, 28 Feb 2022 17:03:54 -0800
Subject: SystemUI: mark smartpixels as a trusted overlay
Change-Id: I1b5e17f5b4397e61350746b161d58366a19a1fc9
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Change-Id: Id3c78548cb090ab2da11f543da31c5a408fb9fe9
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
With SmartPixels enabled, UDFPS does not work well. The higher the percentage of pixels to be disabled, the worse UDFPS works. Fix this by disabling SmartPixels when UDFPS is working. Change-Id: Ic478aa5d3a541d1ce533cfce7dacfd8ddec99ad0 Co-authored-by: Pranav Vashi <neobuddy89@gmail.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Fade (default), CRT, and Scale Credit and respect to xplodwild for paving the way back in the KitKat days! History of the ElectronBeam class can be found here https://github.com/DirtyUnicorns/android_frameworks_base/commits/kitkat/services/java/com/android/server/power/ElectronBeam.java *** Changes for Android 10 by bigrushdog *** Various updates needed for Surface related API in the ElectronBeam animation class [AgentFabulous | POSP] - Rebase and rewrite ElectronBeam class on top of ColorFade - Add usage of class-common Transaction instance - Add support for respecting wide-color and protected-content - Fixup for new API @neobuddy89: Updated for Android 14. Change-Id: I58d269d44c901a8c0471807e3cf05c2054205d28 Co-Authored-By: Pranav Vashi <neobuddy89@gmail.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
…nimation * Kind of an oddly specific use case here but to reproduce: - Enable CRT Screen Off Animation - Start playing a video from Netflix - Turn off screen using power key, you should see the crash then Co-authored by: Pranav Vashi <neobuddy89@gmail.com> Signed-off-by: Matt Filetto <matt.filetto@gmail.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
* Move logic to RotationButtonController rather defining in NavigationBarView. Co-authored-by: Ido Ben-Hur <idoybh2@gmail.com> Change-Id: I870ce1dd54a97d85c418e5c4f1d00023871a2ec5 Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
@idoybh edits: Adapted to A11's settings backup [jhonboy121]: adapt to A12 changes in DozeParameters. Also in the og commit DOZE_ALWAYS_ON was being read from System namespace instead of Secure, fixed it here. Make use of SettingsProxy utlity classes for settings / getting values Change-Id: I831583fde68de15788e3d7ecab55d864726d140f Commit message #2: base: check whether device is charging when alwaysOnChargingEnabled is called * Using settings for this is quite redundant. And if you toggle aod on charge after plugging in then aod won't turn on unless you unplug and plug again (since DOZE_ON_CHARGE_NOW is set only if aod on charge is enabled and device is plugged in" Signed-off-by: jhonboy121 <alfredmathew05@gmail.com> Commit message #3: base: fix deadlock between activity manager and power manager * Using the battery manager intent to query plugged in status was the root cause of deadlock, so inside power manager, user mIsPowered and setting value instead of using the intent based power status Signed-off-by: jhonboy121 <alfredmathew05@gmail.com> [jhonboy121]: adapted to A13 Co-authored-by: jhonboy121 <alfredmathew05@gmail.com> Signed-off-by: jhonboy121 <alfredmathew05@gmail.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
* Update detection logic when device is plugged in and is charging. * Fix issue in PowerManagerService - mIsPowered is updated dynamically and so it should be checked everytime, not just in init. * When plugging out, let device wake up. This should fix odd blinking issues in some devices. * Add DOZE_ON_CHARGE to content observer, duh. Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From sunset to sunrise or at a custom time
Squashed:
From: Ido Ben-Hur <idoybh2@gmail.com>
Date: Tue, 16 Mar 2021 13:53:27 +0200
Subject: AutoAODService: Add support for mixed time & sun modes [1/2]
Also refactor some code
Change-Id: I3a78dec88f532766d00e0d1d276c27dc9d3dc68f
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Ido Ben-Hur <idoybh2@gmail.com>
Date: Fri, 26 Mar 2021 08:45:31 +0300
Subject: AutoAODService: Account for disabled doze
Change-Id: I30f52c4e3db2a27f9cde01662a25eee33e225414
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Ido Ben-Hur <idoybh2@gmail.com>
Date: Fri, 9 Apr 2021 13:33:41 +0300
Subject: AutoAODService: Slightly improve code and docs
* Correctly link local vars and functions in docs
* Make vars we can final
* Don't use String.valueOf() where we don't have to
* Should be Integer.parseInt() and not Integer.valueOf()
Change-Id: I5892858c7142113ad3c9c87ddf00e58b18508207
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Ido Ben-Hur <idoybh2@gmail.com>
Date: Wed, 2 Mar 2022 19:05:43 +0200
Subject: AutoAODService: Improve some code
And call using the right handler on settings change
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Ido Ben-Hur <idoybh2@gmail.com>
Date: Thu, 31 Mar 2022 20:59:38 +0300
Subject: AutoAODService: Use Calendar.add instead of Calendar.roll
Roll doesn't always give the intended result which can cause an alarm to be set to the distance past/future on the end of the month
Also make sure we cancel previous alarms before setting new ones, just incase
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: cjh1249131356 <cjh1249131356@gmail.com>
Date: Fri, 20 May 2022 22:41:49 +0800
Subject: base: Fix scheduled AOD
- Always init state when settings change observed, as we need to update scheduled time, not only auto mode.
- Fix an edge case which can be reproduced with following steps:
Set phone to 00:00
Set an overnight schedule time (23:00 ~ 07:00 etc)
Then three Calendar instances hold following dates:
current: 2022/05/20 00:00
since: 2022/05/20 23:00
till: 2022/05/20 07:00
According to the first if condition, till date will be 2022/05/21 07:00
Then issue comes, till time can never be reached until you set a till time after since time.
Signed-off-by: cjh1249131356 <cjh1249131356@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Ido Ben-Hur <idoybh2@gmail.com>
Date: Sun, 11 Dec 2022 15:52:01 +0200
Subject: AutoAODService: Properly handle reboots & fix some logic
Use shared preferences to find whether the user aborted current scheduled session
In case that happens - don't automatically toggle AOD on boot until we passed the next alarm
In addition:
* Don't toggle AOD onTwilightStateChanged nor in mTimeChangedReceiver - they should just change the alarms
* Properly re-init on ALL setting changes, not just mode
* Never disable AOD on boot just because the setting is disabled
* Never trigger doze / screen on when interactive
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
From: Ido Ben-Hur <idoybh2@gmail.com>
Date: Mon, 9 Jan 2023 06:55:56 +0200
Subject: AutoAODService: Better check for doze enablement
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Change-Id: Ib76ecb1855ac215de6d7cd2f2346abfce6cc2214
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Automatically pause media when muted. Resume if unmuted within a minute. Co-Authored-By: Stylogey <stylogey@gmail.com> Change-Id: I5d37478b3739309dcaae4eb6a0e4aac6c87f120f Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
- Allow overriding device configs while using GMS as device configurator package Change-Id: Ie7327610feca7a390915511088dfef831c946853 DeviceConfigUtils: Make debug optional Change-Id: I65ffac8fd0a9971297b8d721d860face571a2d44 (cherry picked from commit 9f54af5392d7ca70e1e495fc97560538459844e7) DeviceConfig: Change setProperties behavior Change-Id: I7cf1574f423c7362e6a7c9d8a002e4b20e5e7f87 (cherry picked from commit f94a2c97e7bf53ee6681183f2394878369e99470) * Adapt to Android 14 Change-Id: I6ece899c13f12ee299ba24b02f2b4ab96f3d92fb Signed-off-by: someone5678 <someone5678@users.noreply.github.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
* @neobuddy89: Forward Port to Android 11/12/13/14/16 neobuddy89: * Remove now playing package usage. Rely on metadata changes. * Improve doze pulse broadcast usage. * Add minor fixes and NPE guards. * Use BG executor for smooth UX. Co-authored-by: Pranav Vashi <neobuddy89@gmail.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Thanks to prochy-exe for pointing it out. Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
* Currently, it disables only if Animator scale is 0. Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
[SahilSonar - POSP]: Forward port to android-12.0.0 idoybh: Adapt to A13 Change-Id: I381c351131241e45ddb6049706d6c302c2eee946 base: allow disable of screenshot shutter sound [1/2] [SahilSonar - POSP] - Forward port to android-12.0.0 idoybh: Adapt to A13 Change-Id: I47d52bba21170118af87d35376d81d7569587a2f SystemUI: Screenshots: Refactor shutter sound logic * Commit 2f09bac introduced some duplicated code * Move it to an own method to reduce the footprint in the AOSP code parts and to reduce duplication [SahilSonar - POSP] - Forward port to androi-12.0.0 idoybh: Adapt to A13 Change-Id: I57eaaee4db401d16cc6ef65c68604cdb4053ca01 Signed-off-by: Anushek Prasal <anushekprasal@gmail.com> SystemUI: Fix shutter sound * When shutter sound for camera is forced on as required in some states, (config_camera_sound_forced, set via mcc/mnc), we also want to (or should) play it when a screenshot is taken from the preview instead of an actual picture * This change is loosely based on https://android-review.googlesource.com/c/platform/frameworks/base/+/1517742/ but uses publicly available APIs Testing: - Set config_camera_sound_forced to true and push a build to device - Turn down all stream volumes to muted - Take screenshot of any normal screen -> No sound played - Open camera, take screenshot -> Sound played - Turn up volume and repeat the screenshots -> Sound played in all cases [SahilSonar - POSP] - Forward port to android-12.0.0 idoybh: Adapt to A13 @neobuddy89: * Remove enforcing shutter sound via prop. * Adapt for A15 QPR1 new screenshot controller Change-Id: I381c351131241e45ddb6049706d6c302c2eee946 Signed-off-by: Omkar Chandorkar <gotenksIN@aospa.co> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
This reverts commit a226111. Just no. Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
applying ImageView's CenterCrop style of cropping to media bitmap Change-Id: I219142f5c9addbbfc08bfda0d23c8e3f71139139 Signed-off-by: rmp22 <195054967+rmp22@users.noreply.github.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
* made from scratch from BP4A * Idea taken from original impl [Project-Mica/frameworks_base@ff2d4f2] Co-authored-by: Alvin Francis <nivlafx@gmail.com> Co-Authored-By: ralph950412 <ralph950412@gmail.com> Co-Authored-By: Adithya R <gh0strider.2k18.reborn@gmail.com> Change-Id: I7b26e82aabe440e57e4fbdfef3eea16c4cc811bc Signed-off-by: aswin7469 <aswinas@pixysos.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
* make sure to disable the default view if smartspace impl provides decoupled date and weather Signed-off-by: aswin7469 <aswinas@pixysos.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
This does not need to be disabled for smartspace, and breaks non smartspace slices Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
…aPlugin API Change-Id: Ide3b74b921b2ca07d670baf5db81a688bacf786b Signed-off-by: Kleidione Freitas <kleidione@gmail.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Change-Id: I2e948393b3cf2c59a7221355b43c129a329bee08 Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Since smartspace weather activity won't open due to caller package (Launcher3) not being google signed, hijack the intent to open the google app's exported weather activity, which behaves in the same fashion. Change-Id: Ic01ede73ab6253bcb301ac794985c3720c5beda3 [cyberknight777: Adapt for BP4A smartspace] Signed-off-by: Cyber Knight <cyberknight755@gmail.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Signed-off-by: cjh1249131356 <cjh1249131356@gmail.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
… time after a SystemUI restart or hot reload.
**Phenomenon:**
After a SystemUI process restart that is not a full device reboot, the lockscreen clock (Flex Clock) would display a time based on the GMT/UTC timezone, not the user's local
timezone. For example, on a device in GMT+8 at 4:00 PM (16:00), the lockscreen clock would incorrectly show 8:00 AM.
The status bar clock would also briefly show the incorrect time but would quickly correct itself. The lockscreen clock, however, would remain incorrect until the next full device
reboot.
**Root Cause:**
The issue was a race condition during SystemUI initialization.
1. On process start, the default timezone is GMT.
2. An `ACTION_TIMEZONE_CHANGED` broadcast is sent shortly after to propagate the correct local timezone.
3. The status bar clock uses a direct `BroadcastReceiver`, which is lightweight and successfully catches this initial broadcast.
4. The lockscreen clock, however, receives its timezone updates via `ClockEventController` -> `KeyguardUpdateMonitor`. This path is slower to initialize and would often miss the
first critical `ACTION_TIMEZONE_CHANGED` broadcast.
5. As a result, the lockscreen clock's `TimeKeeper` would remain stuck in the default GMT timezone.
**Solution:**
This commit makes the lockscreen clock's timezone handling more robust by mirroring the proactive approach of the status bar clock.
In `ClockEventController.kt`, within the `registerListeners()` method, we now proactively fetch the system's default timezone and dispatch it to the current clock. This ensures
that even if the initial broadcast is missed, the clock's timezone is synchronized as soon as its event system is ready, thus resolving the race condition.
Change-Id: Ib0793850570cba7a8922b94f8c2e555939ed85f0
[Description] Bluetooth remote shows disconnected status on Dashboard after successful reconnection post power cycle. [Root Cause] Service connection listeners were not called, causing incorrect status display. [Solution] - Add calls to service connection and disconnection listeners in HidDeviceProfile and HidProfile. [Test Report] build pass CR-Id: DTV04734746 Change-Id: Ib8b02c5705864575ac4f4bdbd607b688804cfe20 (cherry picked from commit 1757f11a89364e00a0db7ca1d3aa7768998bd6ac)
…icException and triggering a reboot. Test: monkey test Flag: EXEMPT bugfix Bug: 453934442 Change-Id: I68fad8b85e19547a748563592653dc03ca9cf0a4 Signed-off-by: luanzhuang <luanzhuang@xiaomi.corp-partner.google.com>
Test: Manual Change-Id: Iddc3583d6c5529daedbacdb10aa01b8505286be5
If a display does not set time limitation for HBM, it means it can safely run at HBM for as long as it wants. With this in mind, we can allow HBM in manual brightness too for such displays. This still obeys the thermal throttling and battery saver conditions for obvious reasons. Change-Id: I18ca7748c1f32dca1e70497afd0b6df8ed81ad5d Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
8:03.430 2440 2440 E ShadeDialogContextRepo: Couldn't get dialog context for displayId=0. Returning default one 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: java.lang.IllegalStateException: This should be instantiated only when either StatusBarConnectedDisplays or ShadeWindowGoesAround or cursorHotCorner are enabled. 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.display.data.repository.DisplayWindowPropertiesRepositoryImpl.<init>(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:35) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.dagger.DaggerReferenceGlobalRootComponent$ReferenceSysUIComponentImpl$SwitchingProvider.get3(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:715) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.dagger.DaggerReferenceGlobalRootComponent$ReferenceSysUIComponentImpl$SwitchingProvider.get(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:96) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at dagger.internal.DoubleCheck.get(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:14) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.shade.domain.interactor.ShadeDialogContextInteractorImpl.getContextOrDefault(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:46) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.shade.domain.interactor.ShadeDialogContextInteractorImpl.getContext(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:33) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl.getContext$1(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:3) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl$startActivityDismissingKeyguard$runnable$1$$ExternalSyntheticLambda0.invoke(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:14) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.animation.ActivityTransitionAnimator.startIntentWithAnimation(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:307) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl$startActivityDismissingKeyguard$runnable$1.run(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:80) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at android.os.Handler.handleCallback(Handler.java:1041) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at android.os.Handler.dispatchMessage(Handler.java:103) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.dispatchMessage(Looper.java:315) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.loopOnce(Looper.java:251) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.loop(Looper.java:349) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at android.app.ActivityThread.main(ActivityThread.java:9067) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at java.lang.reflect.Method.invoke(Native Method) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:593) 01-06 12:58:03.430 2440 2440 E ShadeDialogContextRepo: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:929) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: Couldn't get dialog context for displayId=0. Returning default one 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: java.lang.IllegalStateException: This should be instantiated only when either StatusBarConnectedDisplays or ShadeWindowGoesAround or cursorHotCorner are enabled. 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.display.data.repository.DisplayWindowPropertiesRepositoryImpl.<init>(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:35) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.dagger.DaggerReferenceGlobalRootComponent$ReferenceSysUIComponentImpl$SwitchingProvider.get3(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:715) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.dagger.DaggerReferenceGlobalRootComponent$ReferenceSysUIComponentImpl$SwitchingProvider.get(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:96) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at dagger.internal.DoubleCheck.get(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:14) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.shade.domain.interactor.ShadeDialogContextInteractorImpl.getContextOrDefault(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:46) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.shade.domain.interactor.ShadeDialogContextInteractorImpl.getContext(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:33) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl.getContext$1(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:3) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl$startActivityDismissingKeyguard$runnable$1$$ExternalSyntheticLambda0.invoke(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:84) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.animation.ActivityTransitionAnimator.startIntentWithAnimation(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:307) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl$startActivityDismissingKeyguard$runnable$1.run(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:80) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at android.os.Handler.handleCallback(Handler.java:1041) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at android.os.Handler.dispatchMessage(Handler.java:103) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.dispatchMessage(Looper.java:315) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.loopOnce(Looper.java:251) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.loop(Looper.java:349) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at android.app.ActivityThread.main(ActivityThread.java:9067) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at java.lang.reflect.Method.invoke(Native Method) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:593) 01-06 12:58:03.434 2440 2440 E ShadeDialogContextRepo: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:929) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: Couldn't get dialog context for displayId=0. Returning default one 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: java.lang.IllegalStateException: This should be instantiated only when either StatusBarConnectedDisplays or ShadeWindowGoesAround or cursorHotCorner are enabled. 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.display.data.repository.DisplayWindowPropertiesRepositoryImpl.<init>(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:35) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.dagger.DaggerReferenceGlobalRootComponent$ReferenceSysUIComponentImpl$SwitchingProvider.get3(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:715) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.dagger.DaggerReferenceGlobalRootComponent$ReferenceSysUIComponentImpl$SwitchingProvider.get(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:96) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at dagger.internal.DoubleCheck.get(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:14) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.shade.domain.interactor.ShadeDialogContextInteractorImpl.getContextOrDefault(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:46) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.shade.domain.interactor.ShadeDialogContextInteractorImpl.getContext(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:33) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl.getContext$1(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:3) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl$startActivityDismissingKeyguard$runnable$1$$ExternalSyntheticLambda0.invoke(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:92) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.animation.ActivityTransitionAnimator.startIntentWithAnimation(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:307) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl$startActivityDismissingKeyguard$runnable$1.run(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:80) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at android.os.Handler.handleCallback(Handler.java:1041) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at android.os.Handler.dispatchMessage(Handler.java:103) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.dispatchMessage(Looper.java:315) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.loopOnce(Looper.java:251) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.loop(Looper.java:349) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at android.app.ActivityThread.main(ActivityThread.java:9067) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at java.lang.reflect.Method.invoke(Native Method) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:593) 01-06 12:58:03.438 2440 2440 E ShadeDialogContextRepo: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:929) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: Couldn't get dialog context for displayId=0. Returning default one 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: java.lang.IllegalStateException: This should be instantiated only when either StatusBarConnectedDisplays or ShadeWindowGoesAround or cursorHotCorner are enabled. 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.display.data.repository.DisplayWindowPropertiesRepositoryImpl.<init>(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:35) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.dagger.DaggerReferenceGlobalRootComponent$ReferenceSysUIComponentImpl$SwitchingProvider.get3(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:715) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.dagger.DaggerReferenceGlobalRootComponent$ReferenceSysUIComponentImpl$SwitchingProvider.get(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:96) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at dagger.internal.DoubleCheck.get(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:14) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.shade.domain.interactor.ShadeDialogContextInteractorImpl.getContextOrDefault(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:46) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.shade.domain.interactor.ShadeDialogContextInteractorImpl.getContext(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:33) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl.getContext$1(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:3) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl$startActivityDismissingKeyguard$runnable$1$$ExternalSyntheticLambda0.invoke(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:100) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.animation.ActivityTransitionAnimator.startIntentWithAnimation(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:307) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at com.android.systemui.statusbar.phone.LegacyActivityStarterInternalImpl$startActivityDismissingKeyguard$runnable$1.run(go/retraceme 72c579ceb01122ff1cb014d1b6f305a3c734b2a386d5105a246f105cfb7379b4:80) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at android.os.Handler.handleCallback(Handler.java:1041) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at android.os.Handler.dispatchMessage(Handler.java:103) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.dispatchMessage(Looper.java:315) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.loopOnce(Looper.java:251) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at android.os.Looper.loop(Looper.java:349) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at android.app.ActivityThread.main(ActivityThread.java:9067) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at java.lang.reflect.Method.invoke(Native Method) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:593) 01-06 12:58:03.442 2440 2440 E ShadeDialogContextRepo: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:929) Change-Id: I0819895e20ee4abc326920f84f741bb01cdbc070 Signed-off-by: rmp22 <195054967+rmp22@users.noreply.github.com> Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Change-Id: I480874825319e35d340fc719f8c729bc1a33ed97 Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Fixes: crdroidandroid/issue_tracker#840 Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
The background now has fixed dimentions and is aligned against the bottom right corner of the motion layout instead of the children Flag: EXEMPT TRIVIAL FIX Fixes: 428163872 Test: manual on folable. Set display scale to max and compare screenshots with a max scale. Test: atest VolumeDialogRingerDrawerScreenshotTest Change-Id: I068301e933e0b05af9ad96c94e479e6d31ba8a5b
Flag: EXEMPT BUG_FIX Fixes: 434364540 Test: manual on foldable Test: atest VolumeDialogScreenshotTest Change-Id: I227a4afc30643dbb6c54c498eb3dbe47dde3a488
Flag: EXEMPT BUGFIX Fixes: 443643390 Test: Checked UI - expand/collapse on landscape mode. Change-Id: Ib7f0e0447c9d47f753969cb456ef381fa400fbac
The problem is the window behaves differently depending on the navigation mode enabled. When there is a 3-btn navigation enabled the window was some minimum width it fills despite being WRAP_CONTENT. This also fixed the navigation scrim overlay appearing for 3-btn navigation by disabling it in the theme. Flag: com.android.systemui.volume_redesign Fixes: 406620015 Test: atest VolumeDialogScreenshotTest Test: manula on phone. Force fullscreen volume dialog window and observe its position Change-Id: I0761ea04e46312377c504f10b335a59d68df5d92
prevent clipping of landscape ringer dialog Signed-off-by: Dmitrii <bankersenator@gmail.com>
Fixes: crdroidandroid/issue_tracker#878 Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
* New translations cr_strings.xml (Spanish) * New translations cr_strings.xml (Turkish) * New translations cr_strings.xml (Bulgarian) * New translations cr_strings.xml (Bulgarian) * New translations cr_strings.xml (Bulgarian) * New translations cr_strings.xml (Indonesian)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.