-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into writebackupToTemp
* upstream/master: Enable Merging of BibDatabases (#6689) Refactor file preferences (#6779) Interrupt all running tasks during shutdown (#6118) Fixes #6705 , added icon for multiple identifiers (#6809) Apply css files correctly to dialogs (#6828) Fix link Make template more explicit
- Loading branch information
Showing
61 changed files
with
1,517 additions
and
1,034 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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Mutable preferences objects | ||
|
||
## Context and Problem Statement | ||
|
||
To create an immutable preferences object every time seems to be a waste of time and computer memory. | ||
|
||
## Considered Options | ||
|
||
* Create a new object every time a preferences object should be altered by a with*-method, similar to a Builder. | ||
* Alter the existing object and return it. | ||
|
||
## Decision Outcome | ||
|
||
Chosen option: 1, because the preferences objects are just wrappers around the basic preferences framework of JDK. They | ||
should be mutable on-the-fly similar to objects with a Builder inside and to be stored immediatly again in the | ||
preferences. |
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,73 +1,67 @@ | ||
# \[short title of solved problem and solution\] | ||
# MADR Templae | ||
|
||
* Status: \[proposed \| rejected \| accepted \| deprecated \| … \| superseded by [ADR-0005](0005-fully-support-utf8-only-for-latex-files.md)\] | ||
* Deciders: \[list everyone involved in the decision\] | ||
* Date: \[YYYY-MM-DD when the decision was last updated\] | ||
The template of [MADR](https://adr.github.io/madr/) is available at <https://github.com/adr/madr#the-template>. | ||
You can omit the `<-- optional -->` parts, which lead to a very minimal ADR: | ||
|
||
Technical Story: \[description \| ticket/issue URL\] | ||
```markdown | ||
# [short title of solved problem and solution] | ||
|
||
## Context and Problem Statement | ||
|
||
\[Describe the context and problem statement, e.g., in free form using two to three sentences. You may want to articulate the problem in form of a question.\] | ||
|
||
## Decision Drivers | ||
|
||
* \[driver 1, e.g., a force, facing concern, …\] | ||
* \[driver 2, e.g., a force, facing concern, …\] | ||
* … | ||
[Describe the context and problem statement, e.g., in free form using two to three sentences. You may want to articulate the problem in form of a question.] | ||
|
||
## Considered Options | ||
|
||
* \[option 1\] | ||
* \[option 2\] | ||
* \[option 3\] | ||
* … | ||
* [option 1] | ||
* [option 2] | ||
* [option 3] | ||
* … <!-- numbers of options can vary --> | ||
|
||
## Decision Outcome | ||
|
||
Chosen option: "\[option 1\]", because \[justification. e.g., only option, which meets k.o. criterion decision driver \| which resolves force force \| … \| comes out best \(see below\)\]. | ||
|
||
### Positive Consequences | ||
Chosen option: "[option 1]", because [justification. e.g., only option, which meets k.o. criterion decision driver | which resolves force force | … ]. | ||
``` | ||
|
||
* \[e.g., improvement of quality attribute satisfaction, follow-up decisions required, …\] | ||
* … | ||
In case you want to include the pros and cons of the options, the template is as follows: | ||
|
||
### Negative Consequences | ||
```markdown | ||
# [short title of solved problem and solution] | ||
|
||
* \[e.g., compromising quality attribute, follow-up decisions required, …\] | ||
* … | ||
|
||
## Pros and Cons of the Options | ||
## Context and Problem Statement | ||
|
||
### \[option 1\] | ||
[Describe the context and problem statement, e.g., in free form using two to three sentences. You may want to articulate the problem in form of a question.] | ||
|
||
\[example \| description \| pointer to more information \| …\] | ||
## Considered Options | ||
|
||
* Good, because \[argument a\] | ||
* Good, because \[argument b\] | ||
* Bad, because \[argument c\] | ||
* … | ||
* [option 1] | ||
* [option 2] | ||
* [option 3] | ||
* … <!-- numbers of options can vary --> | ||
|
||
### \[option 2\] | ||
## Decision Outcome | ||
|
||
\[example \| description \| pointer to more information \| …\] | ||
Chosen option: "[option 1]", because comes out best (see below). | ||
|
||
* Good, because \[argument a\] | ||
* Good, because \[argument b\] | ||
* Bad, because \[argument c\] | ||
* … | ||
## Pros and Cons of the Options | ||
|
||
### \[option 3\] | ||
### [option 1] | ||
|
||
\[example \| description \| pointer to more information \| …\] | ||
* Good, because [argument a] | ||
* Good, because [argument b] | ||
* Bad, because [argument c] | ||
* … <!-- numbers of pros and cons can vary --> | ||
|
||
* Good, because \[argument a\] | ||
* Good, because \[argument b\] | ||
* Bad, because \[argument c\] | ||
* … | ||
### [option 2] | ||
|
||
## Links | ||
* Good, because [argument a] | ||
* Good, because [argument b] | ||
* Bad, because [argument c] | ||
* … <!-- numbers of pros and cons can vary --> | ||
|
||
* \[Link type\] \[Link to ADR\] | ||
* … | ||
### [option 3] | ||
|
||
* Good, because [argument a] | ||
* Good, because [argument b] | ||
* Bad, because [argument c] | ||
* … <!-- numbers of pros and cons can vary --> | ||
``` |
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
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
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
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
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.