Skip to content

Commit

Permalink
**v2021.11.3 (202111030)**
Browse files Browse the repository at this point in the history
- Fixed installation issues
- Improved support for the current Magisk canary.
  • Loading branch information
VR-25 committed Nov 3, 2021
1 parent 84956ba commit e7e3ca6
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions META-INF/com/google/android/update-binary
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ set -eu
srcDir="$(cd "${0%/*}" 2>/dev/null || :; echo "$PWD")"

# extract flashable zip if source code is unavailable
[ -f $srcDir/$id ] || {
[ -d $srcDir/$id ] || {
srcDir=/dev/.$domain.${id}-install
rm -rf $srcDir 2>/dev/null || :
mkdir $srcDir
unzip "${3:-${ZIPFILE}}" -d $srcDir/ >&2
unzip "${APK:-${ZIPFILE:-$3}}" -d $srcDir/ >&2
}


Expand Down
10 changes: 5 additions & 5 deletions README.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,6 @@ <h2 id="links">LINKS</h2>
</ul>
<hr>
<h2 id="latest-changes">LATEST CHANGES</h2>
<p><strong>v2021.8.26 (202108260)</strong></p>
<ul>
<li>Fixed daemon startup issue.</li>
<li>Updated framework (it uses acc's) and documentation</li>
</ul>
<p><strong>v2021.9.3 (202109030)</strong></p>
<ul>
<li>Fixed &quot;boot schedules not working&quot; (thanks, @rhayy)</li>
Expand All @@ -245,6 +240,11 @@ <h2 id="latest-changes">LATEST CHANGES</h2>
<p><strong>v2021.10.30 (202110300)</strong></p>
<ul>
<li>General fixes &amp; optimizations</li>
</ul>
<p><strong>v2021.11.3 (202111030)</strong></p>
<ul>
<li>Fixed installation issues</li>
<li>Improved support for the current Magisk canary.</li>
</ul>

</body>
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,13 +243,13 @@ Always provide as much information as possible.
---
## LATEST CHANGES

**v2021.8.26 (202108260)**
- Fixed daemon startup issue.
- Updated framework (it uses acc's) and documentation

**v2021.9.3 (202109030)**
- Fixed "boot schedules not working" (thanks, @rhayy)
- Updated config examples

**v2021.10.30 (202110300)**
- General fixes & optimizations

**v2021.11.3 (202111030)**
- Fixed installation issues
- Improved support for the current Magisk canary.
4 changes: 2 additions & 2 deletions customize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ set -eu
srcDir="$(cd "${0%/*}" 2>/dev/null || :; echo "$PWD")"

# extract flashable zip if source code is unavailable
[ -f $srcDir/$id ] || {
[ -d $srcDir/$id ] || {
srcDir=/dev/.$domain.${id}-install
rm -rf $srcDir 2>/dev/null || :
mkdir $srcDir
unzip "${3:-${ZIPFILE}}" -d $srcDir/ >&2
unzip "${APK:-${ZIPFILE:-$3}}" -d $srcDir/ >&2
}


Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ set -eu
srcDir="$(cd "${0%/*}" 2>/dev/null || :; echo "$PWD")"

# extract flashable zip if source code is unavailable
[ -f $srcDir/$id ] || {
[ -d $srcDir/$id ] || {
srcDir=/dev/.$domain.${id}-install
rm -rf $srcDir 2>/dev/null || :
mkdir $srcDir
unzip "${3:-${ZIPFILE}}" -d $srcDir/ >&2
unzip "${APK:-${ZIPFILE:-$3}}" -d $srcDir/ >&2
}


Expand Down
4 changes: 2 additions & 2 deletions module.prop
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id=djs
name=Daily Job Scheduler (DJS)
version=v2021.10.30
versionCode=202110300
version=v2021.11.3
versionCode=202111030
author=VR25
description=Runs commands and scripts on boot and at HH:MM. Any root solution is supported. The installation is always "system-less", whether or not the system is rooted with Magisk.

0 comments on commit e7e3ca6

Please sign in to comment.