Max Gialanella Max
Max opened issue Max/SolidScribe#42 2020-04-02 02:36:28 -07:00
Add option to delete Attachment thumbnail
Max opened issue Max/SolidScribe#41 2020-03-31 15:22:30 -07:00
Open Note Bug
Max commented on issue Max/SolidScribe#16 2020-03-29 15:33:59 -07:00
New Title card view

Scale Note card size based on screen resolution.

Max closed issue Max/SolidScribe#11 2020-03-29 15:33:36 -07:00
Prevent new Tabs - Create service worker
Max commented on issue Max/SolidScribe#20 2020-03-29 15:33:10 -07:00
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.

Max pushed to dev at Max/SolidScribe 2020-03-29 15:32:23 -07:00
0b5675e000 Added package lock
9309ea0821 * More aggressive dark theme styles, changing default icon colors and notification colors
Compare 2 commits »
Max closed issue Max/SolidScribe#30 2020-03-29 09:08:38 -07:00
Update Squire
Max pushed to dev at Max/SolidScribe 2020-03-29 09:08:38 -07:00
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
Compare 3 commits »
Max opened issue Max/SolidScribe#40 2020-03-29 08:59:11 -07:00
Disable Delete on Encrypted notes
Max opened issue Max/SolidScribe#39 2020-03-26 02:20:57 -07:00
Show last edit on note title display card
Max closed issue Max/SolidScribe#32 2020-03-25 15:08:00 -07:00
Notes do not always display little green down caret
Max closed issue Max/SolidScribe#17 2020-03-25 15:07:51 -07:00
Search Results and Title Display Issues
Max closed issue Max/SolidScribe#26 2020-03-25 15:07:51 -07:00
Blur after pressing enter on search on mobile to get rid of keyboard
Max pushed to dev at Max/SolidScribe 2020-03-25 14:45:34 -07:00
1b14a8fd31 Added rate limiting and server security
Max opened issue Max/SolidScribe#38 2020-03-25 02:34:09 -07:00
Encryption Audit
Max opened issue Max/SolidScribe#37 2020-03-25 02:32:10 -07:00
Searchable Encryption Implementation
Max opened issue Max/SolidScribe#36 2020-03-24 14:26:42 -07:00
JSON Web Token Security Enhancement
Max commented on issue Max/SolidScribe#34 2020-03-22 07:24:07 -07:00
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;
    }
Max opened issue Max/SolidScribe#35 2020-03-22 03:50:13 -07:00
Catch All Errors