Skip to content
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

data/font: fix unicode show up boxes on Javanese #2

Open
wants to merge 2 commits into
base: 11
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions core/java/android/os/IPowerManager.aidl
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,4 @@ interface IPowerManager
// update the uids being synchronized by network socket request manager
void updateBlockedUids(int uid, boolean isBlocked);

// temporarily overrides the button brightness settings to allow the user to
// see the effect of a settings change without applying it immediately
void setTemporaryButtonBrightnessSettingOverride(int brightness);
}
39 changes: 0 additions & 39 deletions core/java/android/provider/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -5187,40 +5187,6 @@ public static void setShowGTalkServiceStatusForUser(ContentResolver cr, boolean
*/
public static final String KEY_CAMERA_DOUBLE_TAP_ACTION = "key_camera_double_tap_action";

/**
* Custom button brightness value for manual mode
*
* @hide
*/
public static final String CUSTOM_BUTTON_BRIGHTNESS = "custom_button_brightness";

/**
* use same value for buttons as for screen (manual and auto mode)
*
* @hide
*/
public static final String CUSTOM_BUTTON_USE_SCREEN_BRIGHTNESS =
"custom_button_use_screen_brightness";

/**
* disable all button brightness (manual and auto mode)
*
* @hide
*/
public static final String BUTTON_BACKLIGHT_ENABLE = "button_backlight_enable";

/**
* Timeout value for button lights. 0 = disabled
* @hide
*/
public static final String BUTTON_BACKLIGHT_TIMEOUT = "button_backlight_timeout";

/**
* @hide
*/
public static final String BUTTON_BACKLIGHT_ON_TOUCH_ONLY =
"button_backlight_on_touch_only";

/**
* @hide
*/
Expand Down Expand Up @@ -5988,11 +5954,6 @@ public static void setShowGTalkServiceStatusForUser(ContentResolver cr, boolean
PRIVATE_SETTINGS.add(KEY_APP_SWITCH_DOUBLE_TAP_ACTION);
PRIVATE_SETTINGS.add(KEY_CAMERA_LONG_PRESS_ACTION);
PRIVATE_SETTINGS.add(KEY_CAMERA_DOUBLE_TAP_ACTION);
PRIVATE_SETTINGS.add(CUSTOM_BUTTON_BRIGHTNESS);
PRIVATE_SETTINGS.add(CUSTOM_BUTTON_USE_SCREEN_BRIGHTNESS);
PRIVATE_SETTINGS.add(BUTTON_BACKLIGHT_ENABLE);
PRIVATE_SETTINGS.add(BUTTON_BACKLIGHT_TIMEOUT);
PRIVATE_SETTINGS.add(BUTTON_BACKLIGHT_ON_TOUCH_ONLY);
PRIVATE_SETTINGS.add(FORCE_SHOW_NAVBAR);
PRIVATE_SETTINGS.add(ACCENT_COLOR);
PRIVATE_SETTINGS.add(SHOW_FOURG);
Expand Down
4 changes: 0 additions & 4 deletions core/res/res/values/nad_config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@
<integer name="config_longPressOnCameraKeyBehavior">0</integer>
<integer name="config_doubleTapOnCameraKeyBehavior">0</integer>

<!-- Button brightness -->
<bool name="config_button_brightness_support">false</bool>
<integer name="config_button_brightness_default">128</integer>

<!-- Older rotation sensors are not setting event.timestamp correctly. Setting to
true will use SystemClock.elapsedRealtimeNanos() to set timestamp. -->
<bool name="config_useSystemClockforRotationSensor">false</bool>
Expand Down
4 changes: 0 additions & 4 deletions core/res/res/values/nad_symbols.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,6 @@
<java-symbol type="integer" name="config_longPressOnAppSwitchKeyBehavior" />
<java-symbol type="integer" name="config_longPressOnCameraKeyBehavior" />

<!-- Button brightness -->
<java-symbol type="bool" name="config_button_brightness_support" />
<java-symbol type="integer" name="config_button_brightness_default" />

<java-symbol type="bool" name="config_useSystemClockforRotationSensor" />

<!-- Gaming mode -->
Expand Down
6 changes: 3 additions & 3 deletions data/fonts/fonts.xml
Original file line number Diff line number Diff line change
Expand Up @@ -447,9 +447,6 @@
<family lang="und-Prti">
<font weight="400" style="normal">NotoSansInscriptionalParthian-Regular.ttf</font>
</family>
<family lang="und-Java">
<font weight="400" style="normal">NotoSansJavanese-Regular.ttf</font>
</family>
<family lang="und-Kthi">
<font weight="400" style="normal">NotoSansKaithi-Regular.ttf</font>
</family>
Expand Down Expand Up @@ -625,6 +622,9 @@
<family lang="und-Hatr">
<font weight="400" style="normal">NotoSansHatran-Regular.otf</font>
</family>
<family lang="und-Java">
<font weight="400" style="normal">NotoSansJavanese-Regular.otf</font>
</family>
<family lang="und-Lina">
<font weight="400" style="normal">NotoSansLinearA-Regular.otf</font>
</family>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,6 @@ public class SystemSettings {
Settings.System.QS_SHOW_BATTERY_PERCENT,
Settings.System.VOLUME_ROCKER_WAKE,
Settings.System.NAVIGATION_BAR_ARROW_KEYS,
Settings.System.CUSTOM_BUTTON_BRIGHTNESS,
Settings.System.CUSTOM_BUTTON_USE_SCREEN_BRIGHTNESS,
Settings.System.BUTTON_BACKLIGHT_ENABLE,
Settings.System.BUTTON_BACKLIGHT_TIMEOUT,
Settings.System.BUTTON_BACKLIGHT_ON_TOUCH_ONLY,
Settings.System.FORCE_SHOW_NAVBAR,
Settings.System.ACCENT_COLOR,
Settings.System.STATUS_BAR_CUSTOM_HEADER,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,6 @@ public boolean validate(@Nullable String value) {
VALIDATORS.put(System.QS_PANEL_BG_USE_NEW_TINT, ANY_INTEGER_VALIDATOR);
VALIDATORS.put(System.VOLUME_ROCKER_WAKE, BOOLEAN_VALIDATOR);
VALIDATORS.put(System.NAVIGATION_BAR_ARROW_KEYS, BOOLEAN_VALIDATOR);
VALIDATORS.put(System.CUSTOM_BUTTON_BRIGHTNESS, ANY_INTEGER_VALIDATOR);
VALIDATORS.put(System.CUSTOM_BUTTON_USE_SCREEN_BRIGHTNESS, BOOLEAN_VALIDATOR);
VALIDATORS.put(System.BUTTON_BACKLIGHT_ENABLE, BOOLEAN_VALIDATOR);
VALIDATORS.put(System.BUTTON_BACKLIGHT_TIMEOUT, ANY_INTEGER_VALIDATOR);
VALIDATORS.put(System.BUTTON_BACKLIGHT_ON_TOUCH_ONLY, BOOLEAN_VALIDATOR);
VALIDATORS.put(System.FORCE_SHOW_NAVBAR, ANY_INTEGER_VALIDATOR);
VALIDATORS.put(System.ACCENT_COLOR, ANY_INTEGER_VALIDATOR);
VALIDATORS.put(System.STATUS_BAR_CUSTOM_HEADER, BOOLEAN_VALIDATOR);
Expand Down
Loading