diff options
author | Nicholas Hollett <niax@niax.co.uk> | 2020-05-16 14:43:01 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-18 11:27:27 +0200 |
commit | 02cc3ac21fe09836ccd8f8c14dcd624d0e28809c (patch) | |
tree | 4645e050dac1b207ff9d9098b2b0229134dad407 | |
parent | 3c5f75ed5347668d09c8cc488c601f5d6b1b7bd3 (diff) | |
download | serenity-02cc3ac21fe09836ccd8f8c14dcd624d0e28809c.zip |
Base: Add file type & protocol definitions for known handlers.
This matches the existing user configuration in /home/anon/LaunchServer.ini
-rw-r--r-- | Base/res/apps/Browser.af | 2 | ||||
-rw-r--r-- | Base/res/apps/FontEditor.af | 3 | ||||
-rw-r--r-- | Base/res/apps/IRCClient.af | 3 | ||||
-rw-r--r-- | Base/res/apps/QuickShow.af | 3 | ||||
-rw-r--r-- | Base/res/apps/SoundPlayer.af | 3 | ||||
-rw-r--r-- | Base/res/apps/TextEditor.af | 2 | ||||
-rw-r--r-- | Base/res/apps/VisualBuilder.af | 3 |
7 files changed, 17 insertions, 2 deletions
diff --git a/Base/res/apps/Browser.af b/Base/res/apps/Browser.af index 895d570f00..02a97b1e70 100644 --- a/Base/res/apps/Browser.af +++ b/Base/res/apps/Browser.af @@ -8,5 +8,5 @@ Category=Internet 32x32=/res/icons/32x32/app-browser.png [Launcher] -FileTypes=html,md +FileTypes=html,htm,md Protocols=http,https diff --git a/Base/res/apps/FontEditor.af b/Base/res/apps/FontEditor.af index f1f2c671b2..e61846d211 100644 --- a/Base/res/apps/FontEditor.af +++ b/Base/res/apps/FontEditor.af @@ -6,3 +6,6 @@ Category=Development [Icons] 16x16=/res/icons/16x16/app-font-editor.png 32x32=/res/icons/32x32/app-font-editor.png + +[Launcher] +FileTypes=font diff --git a/Base/res/apps/IRCClient.af b/Base/res/apps/IRCClient.af index a18f4c6f9f..ceba74e591 100644 --- a/Base/res/apps/IRCClient.af +++ b/Base/res/apps/IRCClient.af @@ -6,3 +6,6 @@ Category=Internet [Icons] 16x16=/res/icons/16x16/app-irc-client.png 32x32=/res/icons/32x32/app-irc-client.png + +[Launcher] +Protocols=irc diff --git a/Base/res/apps/QuickShow.af b/Base/res/apps/QuickShow.af index 6bcfc57ea1..aa39ce62f3 100644 --- a/Base/res/apps/QuickShow.af +++ b/Base/res/apps/QuickShow.af @@ -6,3 +6,6 @@ Category=Graphics [Icons] 16x16=/res/icons/16x16/filetype-image.png 32x32=/res/icons/32x32/filetype-image.png + +[Launcher] +FileTypes=png,gif diff --git a/Base/res/apps/SoundPlayer.af b/Base/res/apps/SoundPlayer.af index 5b7ec5d99b..43a10d4c61 100644 --- a/Base/res/apps/SoundPlayer.af +++ b/Base/res/apps/SoundPlayer.af @@ -6,3 +6,6 @@ Category=Sound [Icons] 16x16=/res/icons/16x16/app-sound-player.png 32x32=/res/icons/32x32/app-sound-player.png + +[Launcher] +FileTypes=wav diff --git a/Base/res/apps/TextEditor.af b/Base/res/apps/TextEditor.af index 4916d03e26..8bf0ab827e 100644 --- a/Base/res/apps/TextEditor.af +++ b/Base/res/apps/TextEditor.af @@ -8,4 +8,4 @@ Category=Utilities 32x32=/res/icons/32x32/app-texteditor.png [Launcher] -FileTypes=txt,md,html +FileTypes=txt,md,html,htm,js,json,ini diff --git a/Base/res/apps/VisualBuilder.af b/Base/res/apps/VisualBuilder.af index d001c3b217..c7f9e0fcae 100644 --- a/Base/res/apps/VisualBuilder.af +++ b/Base/res/apps/VisualBuilder.af @@ -6,3 +6,6 @@ Category=Development [Icons] 16x16= 32x32=/res/icons/32x32/app-visual-builder.png + +[Launcher] +FileTypes=frm |