Skip to content

Commit 975a820

Browse files
committed
Update README.md, descriptions and metadata
1 parent 984f288 commit 975a820

24 files changed

Lines changed: 52 additions & 26 deletions

File tree

AntiBrightnessChange/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
This module prevents selected apps from overwriting the screen brightness.
44

5-
If applied to System Framework (`android`)
5+
If applied to System Framework (`android`),
66
it will prevent every app from changing the screen brightness.

AntiBrightnessChange/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/>
1010
<meta-data
1111
android:name="xposeddescription"
12-
android:value="Prevent apps from changing display brightness."
12+
android:value="Prevent apps from changing display brightness"
1313
/>
1414
<meta-data
1515
android:name="xposedminversion"

AutomaticAdvancedSettingsExpander/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Automatic Advanced Settings Expander
22

33
Automatically expands the advanced settings in the Settings app by hooking `setInitialExpandedChildrenCount` in PreferenceGroup.
4-
I hate to always expand them myself every-time.
4+
I hate to always expand them myself every time.
55

66
Should work on all Android versions where the Settings app uses one of
77

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Better Bluetooth device sort
22

33
Sorts Bluetooth devices by name instead of whatever it does.
4-
Does not always work but please don't ask me why.
4+
It does not always work, but please don't ask me why.

BetterVerboseWiFiLogging/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Better Verbose WiFi Logging
22

3-
This makes the verbose wifi information (enabled in the developer settings) more readable, adds some and hides some useless information.
3+
This makes the verbose Wi-Fi information (enabled in the developer settings) more readable, adds some and hides some useless information.
44

55
*Before:*
66

@@ -20,7 +20,7 @@ Connected / 2422 MHz (3), bssid:aa:bb:cc:dd:ee:ff, standard=4, rssi=-35dBm, hasI
2020
```
2121

2222
This one is split into multiple lines: one for the general status info, one for _each_ network.
23-
In parentheses you find the channel number because that is usually more interesting than the frequency itself.
23+
In parentheses, you find the channel number because that is usually more interesting than the frequency itself.
2424
Everything that has units now displays those units.
25-
What you don't see that elements that belong together have no break spaces between them
25+
What you don't see is that elements that belong together have no break spaces between them
2626
so that they are always displayed in one line next to each other.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Don't reset if booted and connected
22

33
This module solves a rather exotic problem. When a special condition related to storage partitions
4-
(somehow related to mounting/unmounting/decrypting), all apps that are actively using those partitions it get killed.
5-
In my case this always happened a minute or so after I unlocked my phone the first time after booting,
4+
(somehow related to mounting/unmounting/decrypting), all apps that are actively using those partitions get killed.
5+
In my case, this always happened a minute or so after I unlocked my phone the first time after booting,
66
basically resulting in a hard reset of all apps that already managed to start.
77
This module replaces the resetIfBootedAndConnected with a NOOP.
88

9-
One side-effect is that direct access to `/sdcard` and alike, and work profiles can (temporarily) break because storage isn't available.
9+
One side effect is that direct access to `/sdcard` and alike, and work profiles can (temporarily) break because storage isn't available.
1010

1111
Clean flashing my phone eventually "solved" the issue.

DontResetIfBootedAndConnected/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<manifest
33
xmlns:android="http://schemas.android.com/apk/res/android">
44

5-
<application android:label="DontResetIfBootedAndConnected">
5+
<application android:label="Don'tResetIfBootedAndConnected">
66
<meta-data
77
android:name="xposedmodule"
88
android:value="true"
99
/>
1010
<meta-data
1111
android:name="xposeddescription"
12-
android:value="DontResetIfBootedAndConnected"
12+
android:value="Don't reset if booted and connected"
1313
/>
1414
<meta-data
1515
android:name="xposedminversion"

MotionEventMod/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A simple XPosed mod to disable touch input for some seconds after the stylus was
77
When using a stylus, usually the touch display is disabled.
88
When putting the stylus aside, the touch display gets active again
99
and your palm may activate the touch panel, flinging the page away.
10-
This makes continous writing impossible.
10+
This makes continuous writing impossible.
1111

1212
This module disables touch input for some seconds after stylus usage
1313
to prevent the palm from flinging the page away

MotionEventMod/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/>
1414
<meta-data
1515
android:name="xposeddescription"
16-
android:value="Disable touch input for some seconds after the stylus was in use."
16+
android:value="Disable touch input for some seconds after the stylus was in use"
1717
/>
1818
<meta-data
1919
android:name="xposedminversion"

MuteSlf4jWarnings/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# MuteSlf4jWarnings
2+
3+
Mute those annoying SLF4J warnings:
4+
5+
```log
6+
System.err W SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
7+
System.err W SLF4J: Defaulting to no-operation (NOP) logger implementation
8+
System.err W SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
9+
```
10+
11+
Enable for all the modules that produce this unnecessary warning.
12+
13+
Especially useful for people reading logcat that need to see System.err but get confused by SLF4J warnings from other apps.

0 commit comments

Comments
 (0)