Skip to content

Commit 3f98d3e

Browse files
committed
fix minor UI issues and release!
1 parent 70b3846 commit 3f98d3e

6 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/docker-build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,4 @@ jobs:
6262

6363

6464

65+

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,3 +149,4 @@ jobs:
149149
150150
151151
152+

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@
44
<h1 align="center">Scatola Magica</h1><br/>
55
</p>
66

7-
A simple, self-hosted file storage and management app.
7+
A simple, self-hosted file storage/transfer app.
88

9-
Tired of bloated, EXPENSIVE cloud storage solutions? [Scatola Magica](https://scatola-magica.example.com) is a lightweight alternative for managing your personal files and folders. It's built with Next.js 14, is easy to deploy, and keeps all your data on your own server.
9+
[Scatola Magica](https://www.youtube.com/watch?v=pvn0KHxzesE) is a privacy first, lightweight alternative to overcomplicated, bloated file storage solutions, to transfer, manage, encrypt/decrypt your personal files and folders. It's built with Next.js 14, is easy to deploy, and keeps all your data on your own server.
10+
11+
It features optional PGP encryption for stored items and optional AES-256-GCM encryption for file transfer. Read more about how encryption works in the [howto/ENCRYPTION.md](howto/ENCRYPTION.md) guide.
12+
13+
Watch a quick demo of some of the app functionality [here](https://www.youtube.com/watch?v=pvn0KHxzesE) (enable subtitles!!)
1014

1115
---
1216

app/_components/FeatureComponents/FilesPage/EmptyState.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ export default function EmptyState() {
2424

2525

2626

27+

app/_components/FeatureComponents/FilesPage/SearchAndSortBar.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ export default function SearchAndSortBar() {
2020

2121

2222

23+

app/_components/GlobalComponents/Cards/E2EInfoCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const E2EInfoCard = ({ shouldUseE2E }: E2EInfoCardProps) => {
88
return (
99
<>
1010
{shouldUseE2E && (
11-
<div className="mb-4 p-3 bg-primary-container text-on-primary-container rounded-lg text-sm flex items-center gap-2">
11+
<div className="mb-4 p-3 bg-primary-container text-on-primary rounded-lg text-sm flex items-center gap-2">
1212
<Icon icon="lock" size="md" />
1313
<span>
1414
Transfer Encryption enabled - files will be encrypted during

0 commit comments

Comments
 (0)