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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Long press gesture to play videos at 2x speed ([#666])

### Fixed
- Fixed opening JXL files from other apps ([#568])

## [1.9.1] - 2025-11-25
### Changed
- Updated translations
Expand Down Expand Up @@ -233,6 +236,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#525]: https://github.com/FossifyOrg/Gallery/issues/525
[#529]: https://github.com/FossifyOrg/Gallery/issues/529
[#565]: https://github.com/FossifyOrg/Gallery/issues/565
[#568]: https://github.com/FossifyOrg/Gallery/issues/568
[#567]: https://github.com/FossifyOrg/Gallery/issues/567
[#621]: https://github.com/FossifyOrg/Gallery/issues/621
[#622]: https://github.com/FossifyOrg/Gallery/issues/622
Expand Down
12 changes: 12 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,18 @@

<data android:mimeType="image/*" />
</intent-filter>

<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="content" />
<data android:host="*" />
<data android:pathPattern=".*\\.jxl" />
<data android:mimeType="application/octet-stream" />
</intent-filter>
</activity>

<activity
Expand Down
Loading