[PR #321] [CLOSED] added manual sleep timer dialog #1402

Closed
opened 2026-04-24 23:58:12 +02:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/advplyr/audiobookshelf-app/pull/321
Author: @jakob42
Created: 8/18/2022
Status: Closed

Base: masterHead: master


📝 Commits (10+)

📊 Changes

342 files changed (+47387 additions, -11370 deletions)

View changed files

.github/ISSUE_TEMPLATE/bug_report.md (+37 -0)
.github/ISSUE_TEMPLATE/feature_request.md (+18 -0)
LICENSE (+674 -0)
Server.js (+0 -241)
📝 android/app/build.gradle (+64 -24)
📝 android/app/capacitor.build.gradle (+3 -3)
📝 android/app/src/main/AndroidManifest.xml (+62 -40)
📝 android/app/src/main/assets/capacitor.plugins.json (+10 -10)
android/app/src/main/java/com/audiobookshelf/app/AudioDownloader.kt (+0 -533)
android/app/src/main/java/com/audiobookshelf/app/Audiobook.kt (+0 -69)
android/app/src/main/java/com/audiobookshelf/app/CastOptionsProvider.kt (+30 -0)
📝 android/app/src/main/java/com/audiobookshelf/app/MainActivity.kt (+52 -37)
android/app/src/main/java/com/audiobookshelf/app/MyNativeAudio.kt (+0 -204)
android/app/src/main/java/com/audiobookshelf/app/NewAppWidget.kt (+96 -0)
android/app/src/main/java/com/audiobookshelf/app/PlayerNotificationService.kt (+0 -713)
android/app/src/main/java/com/audiobookshelf/app/data/AudioProbeResult.kt (+74 -0)
android/app/src/main/java/com/audiobookshelf/app/data/DataClasses.kt (+431 -0)
android/app/src/main/java/com/audiobookshelf/app/data/DbManager.kt (+245 -0)
android/app/src/main/java/com/audiobookshelf/app/data/DeviceClasses.kt (+112 -0)
android/app/src/main/java/com/audiobookshelf/app/data/FolderScanResult.kt (+15 -0)

...and 80 more files

📄 Description

Not much to say, removed the 1 minute sleep timer preset to make room for a new manual sleep timer entry. It will open a dialog to set the number of minutes for the sleep timer.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/advplyr/audiobookshelf-app/pull/321 **Author:** [@jakob42](https://github.com/jakob42) **Created:** 8/18/2022 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`ce2be97`](https://github.com/advplyr/audiobookshelf-app/commit/ce2be9743ad9dae6043e5662f5efce8a3b88bdeb) Merge branch 'master' into master - [`1e552de`](https://github.com/advplyr/audiobookshelf-app/commit/1e552de13820430173c265c1ae18dc52c680fd48) Merge pull request #118 from rasmuslos/master - [`5d68f6e`](https://github.com/advplyr/audiobookshelf-app/commit/5d68f6ecec594be6919bfb6698aa02bd5518fb72) Fix mobile ereader for new data model - [`7b0cfaa`](https://github.com/advplyr/audiobookshelf-app/commit/7b0cfaa43e2c36dc1c8d7f912db277302dfacb45) iOS fix infinite loop in AVPlayer observer - [`96b6e20`](https://github.com/advplyr/audiobookshelf-app/commit/96b6e20cf9b87f4bfd238a516b99b51b33ae5cf4) Add android graceful fallback to transcode & onPlaybackFailed event - [`aae9949`](https://github.com/advplyr/audiobookshelf-app/commit/aae9949d72ca50fa5001faf0a9f0004b1a0517a8) Merge branch 'master' of https://github.com/advplyr/audiobookshelf-app - [`fece522`](https://github.com/advplyr/audiobookshelf-app/commit/fece522fa248969da99c7e6f39a96b1cb13641cd) Add chromecast support for android, update package versions - [`e9870f6`](https://github.com/advplyr/audiobookshelf-app/commit/e9870f6a1a32e701b594e8a974d19629ee9402e5) Minor UI fixes, hide cast button when not connected to server, update sort options - [`1a54ded`](https://github.com/advplyr/audiobookshelf-app/commit/1a54ded1bbb2d45ee0c88cff5e62b0c4b0385be9) Update cast button on fullscreen player - [`4b4d1a4`](https://github.com/advplyr/audiobookshelf-app/commit/4b4d1a4c6476e0a2264a698ae77d415c449df8ee) Fixed closePlayback ### 📊 Changes **342 files changed** (+47387 additions, -11370 deletions) <details> <summary>View changed files</summary> ➕ `.github/ISSUE_TEMPLATE/bug_report.md` (+37 -0) ➕ `.github/ISSUE_TEMPLATE/feature_request.md` (+18 -0) ➕ `LICENSE` (+674 -0) ➖ `Server.js` (+0 -241) 📝 `android/app/build.gradle` (+64 -24) 📝 `android/app/capacitor.build.gradle` (+3 -3) 📝 `android/app/src/main/AndroidManifest.xml` (+62 -40) 📝 `android/app/src/main/assets/capacitor.plugins.json` (+10 -10) ➖ `android/app/src/main/java/com/audiobookshelf/app/AudioDownloader.kt` (+0 -533) ➖ `android/app/src/main/java/com/audiobookshelf/app/Audiobook.kt` (+0 -69) ➕ `android/app/src/main/java/com/audiobookshelf/app/CastOptionsProvider.kt` (+30 -0) 📝 `android/app/src/main/java/com/audiobookshelf/app/MainActivity.kt` (+52 -37) ➖ `android/app/src/main/java/com/audiobookshelf/app/MyNativeAudio.kt` (+0 -204) ➕ `android/app/src/main/java/com/audiobookshelf/app/NewAppWidget.kt` (+96 -0) ➖ `android/app/src/main/java/com/audiobookshelf/app/PlayerNotificationService.kt` (+0 -713) ➕ `android/app/src/main/java/com/audiobookshelf/app/data/AudioProbeResult.kt` (+74 -0) ➕ `android/app/src/main/java/com/audiobookshelf/app/data/DataClasses.kt` (+431 -0) ➕ `android/app/src/main/java/com/audiobookshelf/app/data/DbManager.kt` (+245 -0) ➕ `android/app/src/main/java/com/audiobookshelf/app/data/DeviceClasses.kt` (+112 -0) ➕ `android/app/src/main/java/com/audiobookshelf/app/data/FolderScanResult.kt` (+15 -0) _...and 80 more files_ </details> ### 📄 Description Not much to say, removed the 1 minute sleep timer preset to make room for a new manual sleep timer entry. It will open a dialog to set the number of minutes for the sleep timer. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2026-04-24 23:58:12 +02:00
adam closed this issue 2026-04-24 23:58:12 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/audiobookshelf-app#1402