summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added home on longpress back optionreplicant-2.3PaulK2012-07-093-1/+16
| | | | Change-Id: Ibb5f4a6e8756b393f9d4f5ef5060aaf60bcaeade
* Set slider bars as default unlock stylePaulK2012-07-092-0/+4
|
* Corrected instructions to disable screen-on and screen-off animations.PaulK2012-07-091-9/+7
|
* Disabled screen-on and screen-off animations by default.PaulK2012-07-092-1/+11
|
* Allow MOBILE_DATA to have a configuration value so it can be used to disable ↵PaulK2012-07-092-1/+6
| | | | | | | data by default. This was imported to Replicant 2.3 from commit: https://gitorious.org/replicant/android_frameworks_base/commit/0817e4634116b7c8e574f9b72693c2b50098a508
* Fixed white screen on Nexus S CameraService with liboverlay disabled.PaulK2012-07-091-5/+1
|
* Previous fix was incorrect.Cuong2012-06-111-1/+11
| | | | | | | Timestamp doesn't contain date info, therefore we need to construct it and adjust it if daylight savings applies. Change-Id: Ic6b5b3e2d773f637a99a80ef0998ee4f9989a8eb
* Back out persistent storage of lock screen disable state.Danny Baumann2012-06-082-14/+1
| | | | | This also disables the SIM PIN entry screen, which is an unwanted behaviour change that should be avoided before release.
* Frameworks/base: move translations in arrays.xml into strings.xmlJohn Hsing2012-06-072-6/+3
| | | | | | Move Simplified Chinese about shutdown opitions into strings.xml Change-Id: I2894b19bd573bea54ae4038f46a1e0cb5437d809
* Use full weekday for PT lock screen date.Danny Baumann2012-06-072-12/+12
|
* Send RTSP control connection keep-alive requestsAndreas Huber2012-06-071-3/+93
| | | | | | | default to 60 secs unless overridden by server's session-id response. Change-Id: I7c3aff5b787dbb57cc0dccf9db3c75e5cf7e778c related-to-bug: 5562303
* Czech: updated translationOndrej Zima2012-06-071-8/+26
| | | | | | String unification, added messages for fingerprint usage. Change-Id: I7e04c4db734ceec2a7ec31c1f8f4cb985825783a
* Fix lockscreen button behaviour.Danny Baumann2012-06-0722-280/+276
| | | | | | | | | | | | | | | | | | | | | Unlike the other buttons, the lockscreen disable button keeps the state (disabled/enabled) in it instead of just displaying it, so in order to make it reliable, a few things needed to be fixed: - The actual lockscreen blocker was a member variable while the state information was static. This could lead to the two variables getting out of sync. - On orientation or theme change, all widgets were destroyed and recreated. If that happened while the lockscreen was disabled, the blocker instance was lost, thus, there was no way to enable the lockscreen again. Fix that by only recreating the views, not the whole widgets. - The lockscreen disable state wasn't stored persistently, thus didn't survive a reboot. Fixes http://code.google.com/p/cyanogenmod/issues/detail?id=2978. Change-Id: I6f619740659cfedec3a3c9517fb55275f601d792
* fixed external BT gps date/time issue reported by Jason LynchCuong2012-06-071-11/+1
| | | | Change-Id: I466f623a9f6066228d0749be0b3afeec91502197
* Fix medium month name list, 'Mai' ist not an abbreviation.Danny Baumann2012-06-071-1/+1
|
* Send out a MOBILE_DATA_CHANGED intent.Danny Baumann2012-06-072-2/+10
| | | | The settings app widget expects that to be done for working properly.
* Restore ringer mode properly after cancelling dialog.Danny Baumann2012-06-071-2/+14
|
* don't set the reserved bits0 and 1 for UCS2 encoded messagesPavel Kucera2012-06-071-2/+2
| | | | | fixes SMS troubles for Chinese users 0x0b was not a Class 3 specification as the bit 4 was set to 0
* Fix race condition in DNS resolving.Danny Baumann2012-06-071-1/+1
| | | | | | | | | | | | | | | If the querying thread was faster than the DNS resolving thread startup, resolving would crash with the following stacktrace: FATAL EXCEPTION: WebViewCoreThread E/AndroidRuntime(7160): java.lang.NullPointerException E/AndroidRuntime(7160): at android.webkit.DnsResolver.resolveDnsForHostMap(DnsResolver.java:187) E/AndroidRuntime(7160): at android.webkit.BrowserFrame.startDnsPrefetch(BrowserFrame.java:248) E/AndroidRuntime(7160): at android.webkit.WebViewCore$EventHub$1.handleMessage(WebViewCore.java:1400) E/AndroidRuntime(7160): at android.os.Handler.dispatchMessage(Handler.java:99) E/AndroidRuntime(7160): at android.os.Looper.loop(Looper.java:130) E/AndroidRuntime(7160): at android.webkit.WebViewCore$WebCoreThread.run(WebViewCore.java:645) E/AndroidRuntime(7160): at java.lang.Thread.run(Thread.java:1019)
* Add missing software audio codecs for OMAP devices.Danny Baumann2012-05-301-0/+6
| | | | Fixes http://code.google.com/p/cyanogenmod/issues/detail?id=5290.
* Restore audio effect connections after binder death.Danny Baumann2012-05-241-1/+24
|
* Manage buttons inside of PowerWidget instead of a static map.Danny Baumann2012-05-207-350/+267
| | | | | | | | | Fixes disappearing widgets on theme change due to clashing accesses to the static map by the old and the new widget instance. Also convert static to member variables at a few other places. Change-Id: I42b4ad02c4eb8b57a2f4cf51a31148c4b0546b81
* Fix for disappearing status bar power widgets after changing themeRicardo Cerqueira2012-05-202-1/+14
| | | | | | | | | | Backported from CM9: Clean up existing widgets before creating new ones to prevent dangling references to the previous dialog's context, which broke the insertion of a new widget set into recently created ExpandedDialog views. Change-Id: I16a3bab85bcc07dcdb3b189809f5dae528eff66a
* Revert "Fix for disappearing status bar power widgets after changing T-Mo ↵Ricardo Cerqueira2012-05-201-41/+40
| | | | | | | | themes." This reverts commit 42234e0a683b180b7be418d9f491d5c7dca23388. Change-Id: I6ee2f3f57c8608a82896c14d6e168c6c1875b7a0
* Fix percentage bar not appearing on first try to enable it.Danny Baumann2012-05-161-2/+8
|
* Make absolutely sure the theme change receivers are only unregistered ifDanny Baumann2012-05-152-12/+27
| | | | they were registered before.
* Applying theming to more framework items.Danny Baumann2012-05-029-27/+158
| | | | | | All dialogs and notifications should be covered now. Change-Id: If93f81991361165a00b5b1b03ffc323e3ab42c0b
* Fixed Proprietary info feild skipping in Samuel Berube's voicemail ↵Ahron Train2012-04-141-1/+2
| | | | | | notification patch (#11318) Change-Id: I783b438449a63134ba0f6ae332dd7dc3ddbd5c81
* Quick unlock : Fix bugDanesh M2012-04-011-11/+3
| | | | | | | | | | | | There is an issue where users whose passwords are greater than 8 chars and have quick unlock enabled will be unable to unlock their lockscreen. This is due to the logic evaluating anything beyond 3chars as a password attempt. This change modifies the quick unlock behavior so that when typing the password, each character is considered an attempt, however if incorrect, is not reported as a failed attempt. Only when the user presses enter is it considered an "explicit" attempt and a failed attempt is reported. Change-Id: I02d436184d63c6880c7b1dc6b4b6119fba76e9a7
* Allow theming of framework UI elements.Danny Baumann2012-03-3113-27/+292
| | | | | | | | | | | As the theme engine works by replacing resources while loading the APK, framework UI couldn't be themed so far. Workaround that by manually creating a com.android.systemui package context and using that for showing the UI. This attempt is a bit hacky, but should be safe as a) systemui should always be present b) if it isn't, we fall back to no theming Change-Id: I644e2e8d7d4abf07bae639b606197d691f16adac
* Revert "Fix wrong 'USB debugging connected' notify color"rmcc@arcee-kang12012-03-301-8/+1
| | | | This reverts commit e952e69b3177d3324696901a644160d4b24423be.
* policy: fix "Skip on security" functionalityEmilio López2012-03-301-6/+3
| | | | | | It was only working for fingerprint and pattern lockscreens. Change-Id: Ib4d4d28f80256fbe669aeb5681ef6056b8f5f3d4
* Fix wrong 'USB debugging connected' notify colorAdrianoC2012-03-301-1/+8
| | | | Change-Id: I8ad4ce8652325e2e10dd529a934c8928ee0b149c
* Sanity check item for being non-null.Danny Baumann2012-03-261-6/+8
| | | | | | | | | | | This normally shouldn't happen, but experience has shown that there are some rare corner cases where it indeed happens. The exact conditions are unclear, but it's likely related to an ACTION_CANCEL event being sent out before the ACTION_UP event. In order to not crash in weird, hard-to-debug corner cases, just check whether we actually have an item to process. This fixes http://code.google.com/p/cyanogenmod/issues/detail?id=4985.
* Merge "Create Kineto-compatible AudioTrack::set and AudioRecord::set ↵Ricardo Cerqueira2012-03-132-0/+70
|\ | | | | | | methods." into gb-release-7.2
| * Create Kineto-compatible AudioTrack::set and AudioRecord::set methods.Danny Baumann2012-03-122-0/+70
| |
* | Show PIN entry screen even if lockscreen is disabled.Danny Baumann2012-03-071-5/+6
|/
* Merge "policy: do not count invalid fingerprint swipes as bad tries" into ↵Ricardo Cerqueira2012-03-031-33/+17
|\ | | | | | | gingerbread
| * policy: do not count invalid fingerprint swipes as bad triesVitaly Kramskikh2012-03-031-33/+17
| | | | | | | | Change-Id: I8179aadaf78a3d492524c9aeadce09b32ae992b6
* | Merge "frameworks: Added Dutch translations" into gingerbreadRicardo Cerqueira2012-03-031-2/+22
|\ \
| * | frameworks: Added Dutch translationsMarco Brohet2012-02-231-2/+22
| | | | | | | | | | | | Change-Id: Iedf357afd93611bf6e33f6513c69cdd914b625a6
* | | Merge "Fix battery charging detection in NotificationManagerService" into ↵Ricardo Cerqueira2012-03-031-4/+10
|\ \ \ | | | | | | | | | | | | gingerbread
| * | | Fix battery charging detection in NotificationManagerServiceDavid Morgan2012-02-131-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Battery charging should be detected via the status intent extra instead of merely checking to see if the phone is plugged. See r.cyanogenmod.com/7986 Change-Id: I39f6caf6183a866d6061b07e0f62c21a4df71aef
* | | | Merge "Add Motorola Wrigley 3G RIL." into gingerbreadRicardo Cerqueira2012-03-032-0/+72
|\ \ \ \
| * | | | Add Motorola Wrigley 3G RIL.Danny Baumann2012-02-162-0/+72
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The RIL of those devices signals incoming forwarded calls incorrectly. Instead of sending a supplementary service notification with type = MT and code2 = 0, it sends code2 = 10. This RIL class works around that. Change-Id: I8654663daab084c486fe787e50b9dde01e67895f
* | | | Merge "telephony: Display Supplementary Service Notifications." into gingerbreadRicardo Cerqueira2012-03-031-0/+33
|\ \ \ \ | |_|_|/ |/| | |
| * | | telephony: Display Supplementary Service Notifications.Shruthi N.K2012-02-121-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | telephony: Display Supplementary Service Notifications. CallManager registers for supplementary service notifications with Phone to notify Phone App. Change-Id: I20c1c908200a9a2ced017e14821cb65249521708
* | | | Add more CDMA SamsungRIL fixes.Mike Kasick2012-02-281-1/+77
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds a collection of CDMA device fixes to SamsungRIL. They include: - Overriding ERROR_UNSPECIFIED fail cause with NORMAL_CLEARING, to prevent far-end hangups from displaying the "Call Lost" dialog. - Adding, and ignoring the RIL_UNSOL_GPS_NOTI request, which is also ignored in the TW RIL, to keep the radio log clean of exceptions when the GPS is active. - Workaround for Samsung CDMA "ring of death" bug. See source comments for details on this problem. Change-Id: Ida4797718ad3463d073a6fc27246cc916526d487
* | | | policy: don't lock users out if they wipe their fingerprint databaseEmilio López2012-02-261-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If users delete their fingerprint database and proceed to lock the screen, let them in so they can configure another lock method. Also fixes a typo Change-Id: I006a86e5e0f72a3d08d5c0b3a96cc659fecbeede
* | | | Merge "Implement basic framework for fingerprint lockscreen" into gingerbreadKoushik Dutta2012-02-2623-51/+2598
|\ \ \ \