Skip to content

Commit 07125ee

Browse files
authored
fix: add intent-filter for jxl files (#821)
Refs: #568
1 parent d6fbc68 commit 07125ee

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### Added
99
- Long press gesture to play videos at 2x speed ([#666])
1010

11+
### Fixed
12+
- Fixed opening JXL files from other apps ([#568])
13+
1114
## [1.9.1] - 2025-11-25
1215
### Changed
1316
- Updated translations
@@ -233,6 +236,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
233236
[#525]: https://github.com/FossifyOrg/Gallery/issues/525
234237
[#529]: https://github.com/FossifyOrg/Gallery/issues/529
235238
[#565]: https://github.com/FossifyOrg/Gallery/issues/565
239+
[#568]: https://github.com/FossifyOrg/Gallery/issues/568
236240
[#567]: https://github.com/FossifyOrg/Gallery/issues/567
237241
[#621]: https://github.com/FossifyOrg/Gallery/issues/621
238242
[#622]: https://github.com/FossifyOrg/Gallery/issues/622

app/src/main/AndroidManifest.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,18 @@
202202

203203
<data android:mimeType="image/*" />
204204
</intent-filter>
205+
206+
<intent-filter>
207+
<action android:name="android.intent.action.VIEW" />
208+
209+
<category android:name="android.intent.category.DEFAULT" />
210+
<category android:name="android.intent.category.BROWSABLE" />
211+
212+
<data android:scheme="content" />
213+
<data android:host="*" />
214+
<data android:pathPattern=".*\\.jxl" />
215+
<data android:mimeType="application/octet-stream" />
216+
</intent-filter>
205217
</activity>
206218

207219
<activity

0 commit comments

Comments
 (0)