Skip to content

Commit

Permalink
v2021.12.2.1 (202112021)
Browse files Browse the repository at this point in the history
- Auto-mount hotfix
  • Loading branch information
VR-25 committed Dec 2, 2021
1 parent 8a7f62f commit fe1295a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 22 deletions.
14 changes: 4 additions & 10 deletions README.html
Original file line number Diff line number Diff line change
Expand Up @@ -275,16 +275,6 @@ <h2 id="links">LINKS</h2>
</ul>
<hr>
<h2 id="latest-changes">LATEST CHANGES</h2>
<p>v2021.11.17-beta (202111170)</p>
<ul>
<li>Enhanced storage paths fallbacks logic</li>
<li><code>fbind -v|--version</code> prints version code (integer)</li>
<li>Fixed auto-mount</li>
<li>Full Android 11 support (XDA Recognized Contributor, @jimbo77 tirelessly tested fbind on Android 11, kernel 5.4. Worship this man and get him drunk!)</li>
<li>General fixes &amp; optimizations</li>
<li>Increased loop timeout to 5 minutes to accommodate long boot times</li>
<li>Updated documentation</li>
</ul>
<p>v2021.11.22-beta (202111220)</p>
<ul>
<li><code>-t|--test-prefixes</code>: test internal storage prefixes (views) and automatically update the config.</li>
Expand All @@ -298,6 +288,10 @@ <h2 id="latest-changes">LATEST CHANGES</h2>
<li>Improved partition and image file mount logics;</li>
<li>Preliminary work on the <em>appdata</em> binding wizard;</li>
<li>Reordered emulated storage prefix fallbacks to cover another Android 11+ quirk.</li>
</ul>
<p>v2021.12.2.1 (202112021)</p>
<ul>
<li>Auto-mount hotfix</li>
</ul>

</body>
Expand Down
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,15 +283,6 @@ If `/sbin` is missing (many Android 11 based systems lack it), use the `/dev/.vr
---
## LATEST CHANGES

v2021.11.17-beta (202111170)
- Enhanced storage paths fallbacks logic
- `fbind -v|--version` prints version code (integer)
- Fixed auto-mount
- Full Android 11 support (XDA Recognized Contributor, @jimbo77 tirelessly tested fbind on Android 11, kernel 5.4. Worship this man and get him drunk!)
- General fixes & optimizations
- Increased loop timeout to 5 minutes to accommodate long boot times
- Updated documentation

v2021.11.22-beta (202111220)
- `-t|--test-prefixes`: test internal storage prefixes (views) and automatically update the config.
- Changed the priorities of emulated storage views to better accommodate Android 11+.
Expand All @@ -303,3 +294,6 @@ v2021.12.2 (202112020)
- Improved partition and image file mount logics;
- Preliminary work on the _appdata_ binding wizard;
- Reordered emulated storage prefix fallbacks to cover another Android 11+ quirk.

v2021.12.2.1 (202112021)
- Auto-mount hotfix
4 changes: 2 additions & 2 deletions module.prop
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id=vr25.fbind
name=fbind
version=v2021.12.2
versionCode=202112020
version=v2021.12.2.1
versionCode=202112021
author=VR25 @ xda-developers
description=fbind is a versatile mounting utility for folders, disk images, LUKS/LUKS2 encrypted volumes, regular partitions and more.
2 changes: 1 addition & 1 deletion system/bin/fbind
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ wait_storage() {

wait_until_true() {
local _=
([ -n "$1" ] || set -- grep -Eq ' /storage/emulated (fuse|sdcardfs) ' /proc/mounts
([ -n "$1" ] || set -- grep -Eq "' /storage/emulated (fuse|sdcardfs) '" /proc/mounts
for _ in $(seq 100); do
eval "$@" && break || {
$interactiveMode && return 1
Expand Down

0 comments on commit fe1295a

Please sign in to comment.