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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,16 @@ The format is a modified version of [Keep a Changelog](https://keepachangelog.co
- `Fixed` - for any bug fixes.
- `Other` - for technical stuff.

## Unreleased

### Added

- Added a description for the horizontal seek gesture setting ([@kenkoro](https://github.com/kenkoro)) ([#2224](https://github.com/aniyomiorg/aniyomi/pull/2224))

## [v0.18.1.2] - 2025-10-28
### Fixed

- Fix Hosters feature detection (again) ([@hollowshiroyuki](https://github.com/hollowshiroyuki)) ([#2195](https://github.com/aniyomiorg/aniyomi/pull/2216))
- Fix Hosters feature detection (again) ([@hollowshiroyuki](https://github.com/hollowshiroyuki)) ([#2216](https://github.com/aniyomiorg/aniyomi/pull/2216))

## [v0.18.1.1] - 2025-10-26
### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ object PlayerSettingsGesturesScreen : SearchableSettings {
Preference.PreferenceItem.SwitchPreference(
preference = enableHorizontalSeekGesture,
title = stringResource(AYMR.strings.enable_horizontal_seek_gesture),
subtitle = stringResource(AYMR.strings.enable_horizontal_seek_gesture_summary),
),
Preference.PreferenceItem.SwitchPreference(
preference = showSeekbar,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
<string name="pref_controls_swap_vol_brightness">Swap volume and brightness slider</string>
<string name="pref_category_player_seeking">Seeking</string>
<string name="enable_horizontal_seek_gesture">Enable Horizontal Seek Gesture</string>
<string name="enable_horizontal_seek_gesture_summary">Swipe left or right to rewind or fast-forward</string>
<string name="pref_show_seekbar">Show seekbar when seeking</string>
<string name="pref_default_intro_length">Default skip intro length</string>
<string name="pref_intro_length">Skip intro length</string>
Expand Down