File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments