mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-11-25 03:39:44 +01:00
Fixed keep screen on default value
The `TermuxPreferenceConstants` classes has been updated to `v0.6.0`. Check its Changelog sections for info on changes.
This commit is contained in:
parent
2b3f681723
commit
3e0f74a894
1 changed files with 5 additions and 2 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
package com.termux.app.settings.preferences;
|
package com.termux.app.settings.preferences;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Version: v0.5.0
|
* Version: v0.6.0
|
||||||
*
|
*
|
||||||
* Changelog
|
* Changelog
|
||||||
*
|
*
|
||||||
|
|
@ -26,6 +26,9 @@ package com.termux.app.settings.preferences;
|
||||||
* - 0.5.0 (2021-03-24)
|
* - 0.5.0 (2021-03-24)
|
||||||
* - Added following to `TERMUX_APP`:
|
* - Added following to `TERMUX_APP`:
|
||||||
* `KEY_LAST_NOTIFICATION_ID` and `DEFAULT_VALUE_KEY_LAST_NOTIFICATION_ID`.
|
* `KEY_LAST_NOTIFICATION_ID` and `DEFAULT_VALUE_KEY_LAST_NOTIFICATION_ID`.
|
||||||
|
*
|
||||||
|
* - 0.6.0 (2021-03-24)
|
||||||
|
* - Change `DEFAULT_VALUE_KEEP_SCREEN_ON` value to `false` in `TERMUX_APP`.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -53,7 +56,7 @@ public final class TermuxPreferenceConstants {
|
||||||
* Defines the key for whether to always keep screen on
|
* Defines the key for whether to always keep screen on
|
||||||
*/
|
*/
|
||||||
public static final String KEY_KEEP_SCREEN_ON = "screen_always_on";
|
public static final String KEY_KEEP_SCREEN_ON = "screen_always_on";
|
||||||
public static final boolean DEFAULT_VALUE_KEEP_SCREEN_ON = true;
|
public static final boolean DEFAULT_VALUE_KEEP_SCREEN_ON = false;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue