-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into add-profile-image-upload
- Loading branch information
Showing
13 changed files
with
586 additions
and
219 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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"language": "en", | ||
"words": [ | ||
"AGPL", | ||
"EACCESS", | ||
"Argyris", | ||
"Hintjens", | ||
"Kata", | ||
|
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,3 +1,5 @@ | ||
**What's the problem you want solved?** | ||
## What's the problem you want solved? | ||
|
||
**Is there a solution you'd like to recommend?** | ||
## Is there a solution you'd like to recommend? | ||
|
||
## What version or commit of Oasis are you using? |
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,3 +1,3 @@ | ||
**What's the problem you solved?** | ||
## What's the problem you solved? | ||
|
||
**What solution are you recommending?** | ||
## What solution are you recommending? |
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
Christian Bundy <christianbundy@fraction.io> | ||
Cinnamon <cinnamon_oasis@fastmail.com> |
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,28 @@ | ||
# Configuring | ||
|
||
The default options can be permanently set with a configuration file found in a | ||
standard folder for configuration, depending on your operating system: | ||
|
||
- Linux: `$XDG_CONFIG_HOME/oasis/default.json`. | ||
Usually this is `/home/<your username>/.config/oasis/default.json` | ||
<!-- cspell:disable-next-line --> | ||
- Windows `%APPDATA%\oasis\default.json`. | ||
- Mac OS, `/Users/<your username>/Library/Preferences/oasis/default.json` | ||
|
||
The configuration file can override any or all of the command-line _defaults_. | ||
Here is an example customizing the port number and the "open" settings: | ||
|
||
```json | ||
{ | ||
"open": false, | ||
"port": 19192 | ||
} | ||
``` | ||
|
||
## Semantics | ||
|
||
Which value is given is decided like this: | ||
|
||
1. If an argument is given on the command-line, use that value. | ||
2. Otherwise, use the value from the configuration file if present. | ||
3. If neither command-line nor configuration file are given, use the built-in default value. |
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
Oops, something went wrong.