Compare commits

..

3 Commits

Author SHA1 Message Date
24f9aeb229 arm images 2021-05-19 11:29:33 +02:00
976413e11b limit min height 2021-05-17 09:45:01 +02:00
2480d875b4 about page 2021-05-16 12:47:52 +02:00
4 changed files with 16 additions and 5 deletions

View File

@@ -14,6 +14,8 @@ jobs:
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1 uses: docker/setup-buildx-action@v1
with:
install: true
- name: Docker Labels - name: Docker Labels
id: meta id: meta
uses: crazy-max/ghaction-docker-meta@v2 uses: crazy-max/ghaction-docker-meta@v2
@@ -32,7 +34,7 @@ jobs:
id: docker_build id: docker_build
uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
with: with:
# platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
- name: Image digest - name: Image digest

View File

@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.1.1] - 2021-05-17
### Fixed
- Height on big displays
- About page
## [1.1.0] - 2021-05-16 ## [1.1.0] - 2021-05-16
### Security ### Security

View File

@@ -13,7 +13,7 @@
<style> <style>
textarea { textarea {
width: 100%; width: 100%;
min-height: calc(100vh - 30rem); min-height: min(calc(100vh - 30rem), 30rem);
margin: 0; margin: 0;
border: 2px solid var(--ui-bg-1); border: 2px solid var(--ui-bg-1);
resize: vertical; resize: vertical;

View File

@@ -20,11 +20,13 @@
<p> <p>
<b>▶ how does it work?</b> <b>▶ how does it work?</b>
<br /> <br />
each note has a 512bit generated <i>id</i> that is used to retrieve the note. data is stored in memory each note has a 512bit generated <i>id</i> that is used to retrieve the note. the note is then encrypted
and never persisted to disk. with aes in gcm mode on the client side and then sent to the server. data is stored in memory and
never persisted to disk. the server never sees the encryption key and cannot decrypt the contents
of the notes even if it tried to.
</p> </p>
<b>Features</b> <b>features</b>
<ul> <ul>
<li>server cannot decrypt contents due to client side encryption</li> <li>server cannot decrypt contents due to client side encryption</li>
<li>view and time constraints</li> <li>view and time constraints</li>