Block a user
Add option to delete Attachment thumbnail
Prevent new Tabs - Create service worker
Pin + Archive Issue
Good Work!
Archived notes now disappear but if they are pinned, they move to the top of the section. Good work, it just needs a little more love.
0b5675e000
Added package lock
9309ea0821
* More aggressive dark theme styles, changing default icon colors and notification colors
5975ab6d68
Update to latest version of squire. fixes #30
3d6e527e3a
Small change to make user all note option menus fade in
88a0c7b26a
Removed Semantic Added Fomantic
Show last edit on note title display card
Notes do not always display little green down caret
Search Results and Title Display Issues
Blur after pressing enter on search on mobile to get rid of keyboard
Ensure encryption on all channels
Nginx config looks like this
location /api {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy true;
proxy_pass http://expressapp;
proxy_redirect off;
}
location /socket {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_http_version 1.1;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:3001;
}