1
0
mirror of https://github.com/makew0rld/amfora.git synced 2024-12-04 14:46:29 -05:00

Cleanup config and README

This commit is contained in:
makeworld 2020-12-24 16:52:04 -05:00
parent 7c2f59fcdc
commit 9ed1c638a4
3 changed files with 46 additions and 36 deletions

View File

@ -138,8 +138,6 @@ Features in *italics* are in the master branch, but not in the latest release.
- Disabled by default, enable in config - Disabled by default, enable in config
- [x] Proxying - [x] Proxying
- Schemes like Gopher or HTTP can be proxied through a Gemini server - Schemes like Gopher or HTTP can be proxied through a Gemini server
- [x] *Configure applications to open particular mediatypes*
- [ ] Allow piping/streaming content instead of downloading it first
- [x] Client certificate support - [x] Client certificate support
- [ ] Full client certificate UX within the client - [ ] Full client certificate UX within the client
- Create transient and permanent certs within the client, per domain - Create transient and permanent certs within the client, per domain
@ -149,6 +147,8 @@ Features in *italics* are in the master branch, but not in the latest release.
- [x] Subscriptions - [x] Subscriptions
- Subscribing to RSS, Atom, and [JSON Feeds](https://jsonfeed.org/) are all supported - Subscribing to RSS, Atom, and [JSON Feeds](https://jsonfeed.org/) are all supported
- So is subscribing to a page, to know when it changes - So is subscribing to a page, to know when it changes
- [x] *Open non-text files in another application*
- [ ] Allow piping/streaming content instead of downloading it first
- [ ] Stream support - [ ] Stream support
- [ ] Table of contents for pages - [ ] Table of contents for pages
- [ ] Search in pages with <kbd>Ctrl-F</kbd> - [ ] Search in pages with <kbd>Ctrl-F</kbd>

View File

@ -154,44 +154,49 @@ emoji_favicons = false
other = 'off' other = 'off'
# [[mediatype-handlers]] # [[mediatype-handlers]] section
# ---------------------------------
#
# Specify what applications will open certain media types. # Specify what applications will open certain media types.
# By default your default application will be used to open the file when you select "Open". # By default your default application will be used to open the file when you select "Open".
# You only need to configure this section if you want to override your default application, # You only need to configure this section if you want to override your default application,
# or do special things like streaming. # or do special things like streaming.
# #
# To open jpeg files with the feh command: # To open jpeg files with the feh command:
# [[mediatype-handlers]] #
# cmd = ["feh"] # [[mediatype-handlers]]
# types = ["image/jpeg"] # cmd = ["feh"]
# types = ["image/jpeg"]
# #
# Each command that you specify must come under its own [[mediatype-handlers]]. You may # Each command that you specify must come under its own [[mediatype-handlers]]. You may
# specify as many [[mediatype-handlers]] as you want to setup multiple commands. # specify as many [[mediatype-handlers]] as you want to setup multiple commands.
# #
# If the subtype is omitted then the specified command will be used for the # If the subtype is omitted then the specified command will be used for the
# entire type: # entire type:
# [[mediatype-handlers]] #
# command = ["vlc", "--flag"] # [[mediatype-handlers]]
# types = ["audio", "video"] # command = ["vlc", "--flag"]
# types = ["audio", "video"]
# #
# A catch-all handler can by specified with "*". # A catch-all handler can by specified with "*".
# Note that there are already catch-all handlers in place for all OSes, # Note that there are already catch-all handlers in place for all OSes,
# that open the file using your default application. This is only if you # that open the file using your default application. This is only if you
# want to override that. # want to override that.
# [[mediatype-handlers]] #
# cmd = ["some-command"] # [[mediatype-handlers]]
# types = [ # cmd = ["some-command"]
# "application/pdf", # types = [
# "*", # "application/pdf",
# ] # "*",
# ]
# #
# If you want to always open a type in its viewer without the download or open # If you want to always open a type in its viewer without the download or open
# prompt appearing, you can add no_prompt = true # prompt appearing, you can add no_prompt = true
# #
# [[mediatype-handlers]] # [[mediatype-handlers]]
# cmd = ["feh"] # cmd = ["feh"]
# types = ["image"] # types = ["image"]
# no_prompt = true # no_prompt = true
# #
# Note: Multiple handlers cannot be defined for the same full media type, but # Note: Multiple handlers cannot be defined for the same full media type, but
# still there needs to be an order for which handlers are used. The following # still there needs to be an order for which handlers are used. The following

View File

@ -151,44 +151,49 @@ emoji_favicons = false
other = 'off' other = 'off'
# [[mediatype-handlers]] # [[mediatype-handlers]] section
# ---------------------------------
#
# Specify what applications will open certain media types. # Specify what applications will open certain media types.
# By default your default application will be used to open the file when you select "Open". # By default your default application will be used to open the file when you select "Open".
# You only need to configure this section if you want to override your default application, # You only need to configure this section if you want to override your default application,
# or do special things like streaming. # or do special things like streaming.
# #
# To open jpeg files with the feh command: # To open jpeg files with the feh command:
# [[mediatype-handlers]] #
# cmd = ["feh"] # [[mediatype-handlers]]
# types = ["image/jpeg"] # cmd = ["feh"]
# types = ["image/jpeg"]
# #
# Each command that you specify must come under its own [[mediatype-handlers]]. You may # Each command that you specify must come under its own [[mediatype-handlers]]. You may
# specify as many [[mediatype-handlers]] as you want to setup multiple commands. # specify as many [[mediatype-handlers]] as you want to setup multiple commands.
# #
# If the subtype is omitted then the specified command will be used for the # If the subtype is omitted then the specified command will be used for the
# entire type: # entire type:
# [[mediatype-handlers]] #
# command = ["vlc", "--flag"] # [[mediatype-handlers]]
# types = ["audio", "video"] # command = ["vlc", "--flag"]
# types = ["audio", "video"]
# #
# A catch-all handler can by specified with "*". # A catch-all handler can by specified with "*".
# Note that there are already catch-all handlers in place for all OSes, # Note that there are already catch-all handlers in place for all OSes,
# that open the file using your default application. This is only if you # that open the file using your default application. This is only if you
# want to override that. # want to override that.
# [[mediatype-handlers]] #
# cmd = ["some-command"] # [[mediatype-handlers]]
# types = [ # cmd = ["some-command"]
# "application/pdf", # types = [
# "*", # "application/pdf",
# ] # "*",
# ]
# #
# If you want to always open a type in its viewer without the download or open # If you want to always open a type in its viewer without the download or open
# prompt appearing, you can add no_prompt = true # prompt appearing, you can add no_prompt = true
# #
# [[mediatype-handlers]] # [[mediatype-handlers]]
# cmd = ["feh"] # cmd = ["feh"]
# types = ["image"] # types = ["image"]
# no_prompt = true # no_prompt = true
# #
# Note: Multiple handlers cannot be defined for the same full media type, but # Note: Multiple handlers cannot be defined for the same full media type, but
# still there needs to be an order for which handlers are used. The following # still there needs to be an order for which handlers are used. The following