mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-10 12:34:08 +08:00
Added: Add MAX_PHANTOM_PROCESSES
and DEVICE_CONFIG_SYNC_DISABLED
value to device info output like shown in Termux About page
Related commit b6963035
This commit is contained in:
@@ -106,6 +106,10 @@ public class MarkdownUtils {
|
||||
|
||||
|
||||
|
||||
public static String getLiteralSingleLineMarkdownStringEntry(String label, Object object, String def) {
|
||||
return "**" + label + "**: " + (object != null ? object.toString() : def) + " ";
|
||||
}
|
||||
|
||||
public static String getSingleLineMarkdownStringEntry(String label, Object object, String def) {
|
||||
if (object != null)
|
||||
return "**" + label + "**: " + getMarkdownCodeForString(object.toString(), false) + " ";
|
||||
|
Reference in New Issue
Block a user