Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Fixed
- Fixed an issue where sound/vibration preferences were ignored after reboot ([#372])

## [1.8.0] - 2025-12-29
### Added
Expand Down Expand Up @@ -150,6 +152,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#274]: https://github.com/FossifyOrg/Keyboard/issues/274
[#335]: https://github.com/FossifyOrg/Keyboard/issues/335
[#356]: https://github.com/FossifyOrg/Keyboard/issues/356
[#372]: https://github.com/FossifyOrg/Keyboard/issues/372

[Unreleased]: https://github.com/FossifyOrg/Keyboard/compare/1.8.0...HEAD
[1.8.0]: https://github.com/FossifyOrg/Keyboard/compare/1.7.0...1.8.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ import org.fossify.keyboard.extensions.safeStorageContext
*/
class KeyboardFeedbackManager(private val context: Context) {

private val config = context.safeStorageContext.config
private val config: Config
get() = context.safeStorageContext.config

private val audioManager by lazy {
context.getSystemService(Context.AUDIO_SERVICE) as AudioManager
}
Expand Down
Loading