forked from Silverfish/proton-bridge
Other: release notes: rename: early -> beta.
This commit is contained in:
@ -1,12 +1,13 @@
|
|||||||
## v2.0.0
|
## v2.0.1
|
||||||
- 2021-12-14
|
- 2021-12-15
|
||||||
|
|
||||||
### New
|
### New
|
||||||
|
|
||||||
New Bridge GUI
|
New Bridge GUI
|
||||||
- Added a Status View in addition to the Main Bridge Window
|
|
||||||
- Added storage information per signed in account
|
* Added a Status View in addition to the Main Bridge Window
|
||||||
- Refactor of sign in flows
|
* Added storage information per signed in account
|
||||||
|
* Refactor of sign in flows
|
||||||
- Refactor of Helps and Settings section
|
- Refactor of Helps and Settings section
|
||||||
- Refactor of bug reports
|
- Refactor of bug reports
|
||||||
- Refactor of Bridge update flows for beta and stable channeles
|
- Refactor of Bridge update flows for beta and stable channeles
|
||||||
@ -14,13 +15,13 @@ New Bridge GUI
|
|||||||
- Introduce local cache configuration
|
- Introduce local cache configuration
|
||||||
|
|
||||||
New local cache
|
New local cache
|
||||||
- Refactor of message.BodyStructure
|
|
||||||
- Refactor of local store
|
* Refactor of message.BodyStructure
|
||||||
- Allow to store full encrypted message bodies on dysk
|
* Refactor of local store
|
||||||
|
* Allow to store full encrypted message bodies on dysk
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Blurry system icons with multiple monitor setup
|
- Blurry system icons with multiple monitor setup
|
||||||
-
|
|
||||||
|
|
||||||
|
|
||||||
## v1.8.12
|
## v1.8.12
|
||||||
|
|||||||
@ -23,16 +23,16 @@
|
|||||||
INFILE=$1
|
INFILE=$1
|
||||||
OUTFILE=${INFILE//.md/.html}
|
OUTFILE=${INFILE//.md/.html}
|
||||||
|
|
||||||
CHANNEL=early
|
CHANNEL=beta
|
||||||
if [[ "$INFILE" =~ stable ]]; then
|
if [[ "$INFILE" =~ stable ]]; then
|
||||||
CHANNEL=stable
|
CHANNEL=stable
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check dependencies
|
# Check dependencies
|
||||||
if ! which pandoc; then
|
if ! which pandoc; then
|
||||||
printf "PANDOC NOT FOUND!\nPlease install pandoc in order to build release notes."
|
printf "PANDOC NOT FOUND!\nPlease install pandoc in order to build release notes.\n"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Build release notes
|
# Build release notes
|
||||||
pandoc "$INFILE" -f markdown -t html -s -o "$OUTFILE" -c utils/release_notes.css --self-contained --section-divs --metadata title="Release notes - ProtonMail Bridge - $CHANNEL"
|
pandoc "$INFILE" -f markdown -t html -s -o "$OUTFILE" -c utils/release_notes.css --self-contained --section-divs --metadata title="Release notes - Proton Mail Bridge - $CHANNEL"
|
||||||
|
|||||||
Reference in New Issue
Block a user