Compare commits

...

16 Commits

Author SHA1 Message Date
d63d529d2b Merge branch 'main' of https://github.com/cupcakearmy/cryptgeon 2021-05-02 18:28:48 +02:00
c4f545d1e8 styling 2021-05-02 18:28:46 +02:00
b94588ead4 Delete FUNDING.yml 2021-05-02 17:19:55 +02:00
96657b89d2 Create FUNDING.yml 2021-05-02 17:19:45 +02:00
d05b090252 Create FUNDING.yml 2021-05-02 17:18:48 +02:00
d262a37db6 logo 2021-05-02 17:15:28 +02:00
a66e8033df logo 2021-05-02 17:14:03 +02:00
95ba8d1fed typo 2021-05-02 17:12:12 +02:00
f93be44449 Merge branch 'main' of https://github.com/cupcakearmy/cryptgeon 2021-05-02 17:11:26 +02:00
f73aa1bcf8 screens 2021-05-02 17:11:24 +02:00
6e25bb697f Update README.md 2021-05-02 16:57:56 +02:00
5a105a7b29 changelog 2021-05-02 16:25:11 +02:00
c8dfeaec12 Merge branch 'main' of https://github.com/cupcakearmy/cryptgeon 2021-05-02 16:24:33 +02:00
bf2c95bfb6 move svg from lfs to repo 2021-05-02 16:24:31 +02:00
4aef5a1b04 checkout with lfs 2021-05-02 16:20:08 +02:00
7520b6b1da Update README.md 2021-05-02 16:02:57 +02:00
19 changed files with 140 additions and 35 deletions

1
.gitattributes vendored
View File

@@ -1,2 +1 @@
*.afdesign filter=lfs diff=lfs merge=lfs -text
*.svg filter=lfs diff=lfs merge=lfs -text

12
.github/FUNDING.yml vendored Normal file
View File

@@ -0,0 +1,12 @@
# These are supported funding model platforms
github: cupcakearmy
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

View File

@@ -5,6 +5,19 @@ 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/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.3] - 2021-05-02
### Fixed
- Higher default text area
- Mobile touchups
## [1.0.2] - 2021-05-02
### Fixed
- SVG Icons
## [1.0.1] - 2021-05-02
### Added

View File

@@ -1,7 +1,11 @@
<p align="center">
<img src="./design/github.svg">
<img src="./design/Github.png">
</p>
![Docker pulls badge](https://img.shields.io/docker/pulls/cupcakearmy/cryptgeon)
![Docker image size badge](https://img.shields.io/docker/image-size/cupcakearmy/cryptgeon)
![Latest version](https://img.shields.io/github/v/release/cupcakearmy/cryptgeon)
## About?
_cryptgeon_ is an secure, open source sharing note service inspired by [_PrivNote_](https://privnote.com)
@@ -15,6 +19,7 @@ Check out the demo and see for yourself https://cryptgeon.nicco.io.
- view and time constrains
- in memory, no persistence
- in browser encryption → server cannot decrypt contents
- obligatory dark mode support
## How does it work?
@@ -22,11 +27,11 @@ each note has a 512bit generated <i>id</i> that is used to retrieve the note. da
## Screenshot
![screenshot](./design/screen.jpg)
![screenshot](./design/Screens.png)
## Deployment
Docker is the easiest way.
Docker is the easiest way. There is the [official image here](https://hub.docker.com/r/cupcakearmy/cryptgeon).
```yaml
# docker-compose.yml

View File

@@ -13,15 +13,20 @@
<style>
textarea {
width: 100%;
min-height: 8rem;
min-height: calc(100vh - 30rem);
margin: 0;
padding: 0;
border: 2px solid var(--ui-bg-1);
resize: vertical;
outline: none;
padding: 0.5rem;
}
@media screen and (max-width: 30rem) {
textarea {
min-height: calc(100vh - 25rem);
}
}
textarea:hover,
textarea:focus {
border-color: var(--ui-clr-primary);

BIN
client/src/lib/views/Header/Logo.svg (Stored with Git LFS)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 129 B

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -62,8 +62,19 @@
header {
text-align: center;
margin-top: calc(min(15vh, 6rem));
margin-bottom: 4rem;
margin-top: 4rem;
margin-bottom: 2rem;
}
@media screen and (max-width: 30rem) {
header {
margin-top: 1rem;
margin-bottom: 1rem;
}
header svg {
max-height: 4rem;
}
}
header svg {

BIN
client/static/icons/copy-sharp.svg (Stored with Git LFS)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 B

After

Width:  |  Height:  |  Size: 313 B

BIN
client/static/icons/dice-sharp.svg (Stored with Git LFS)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 B

After

Width:  |  Height:  |  Size: 728 B

BIN
client/static/icons/eye-off-sharp.svg (Stored with Git LFS)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 B

After

Width:  |  Height:  |  Size: 720 B

BIN
client/static/icons/eye-sharp.svg (Stored with Git LFS)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 B

After

Width:  |  Height:  |  Size: 474 B

BIN
client/static/icons/lock-closed-sharp.svg (Stored with Git LFS)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 B

After

Width:  |  Height:  |  Size: 275 B

BIN
design/Github.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

BIN
design/Logo.svg (Stored with Git LFS)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 129 B

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
design/Screens.afdesign (Stored with Git LFS) Normal file

Binary file not shown.

BIN
design/Screens.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

BIN
design/dove.svg (Stored with Git LFS)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 129 B

After

Width:  |  Height:  |  Size: 3.3 KiB

BIN
design/github.svg (Stored with Git LFS)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 129 B

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB