-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ari Selseng <[email protected]>
- Loading branch information
1 parent
2038499
commit 6b1c033
Showing
5 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*.js] | ||
charset = utf-8 | ||
indent_style = tab | ||
indent_size = 4 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
/vendor/ | ||
/build/ | ||
/build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
<name>Camera RAW Previews</name> | ||
<summary>Preview and show camera RAW files in Nextcloud/ownCloud</summary> | ||
<description><![CDATA[This app will make previews of "RAW" files from cameras in Nextcloud/ownCloud.]]></description> | ||
<version>0.6.5</version> | ||
<version>0.7.0</version> | ||
<licence>agpl</licence> | ||
<author mail="[email protected]" >Ari Selseng</author> | ||
<namespace>CameraRawPreviews</namespace> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
document.addEventListener("DOMContentLoaded", function() { | ||
if (OCA.Viewer) { | ||
OCA.Viewer.registerHandler({ | ||
id: 'camerarawpreviews', | ||
mimesAliases: { | ||
'image/x-dcraw': 'image/jpeg' | ||
} | ||
}) | ||
} | ||
}); |