Skip to content

Commit

Permalink
updated screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
ybizeul committed Sep 6, 2024
1 parent 60e0a07 commit 46f7db0
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion hupload/demo/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,12 @@ storage:
auth:
type: file
options:
path: users.yml
path: users.yml
messages:
- title: Welcome to Hupload
message: |
Hupload is a simple file sharing service.
You can upload files up to 3MB and share up to 5MB.
Enjoy!
2 changes: 1 addition & 1 deletion hupload/internal/storage/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ func (b *FileBackend) ListShares(ctx context.Context) ([]Share, error) {
if os.Getenv("DEMO") == "true" {
referenceDate := time.Date(2024, time.September, 1, 16, 48, 0, 0, time.UTC)
delta := time.Since(referenceDate)
m.DateCreated = m.DateCreated.Add(-delta)
m.DateCreated = m.DateCreated.Add(delta)
}
r = append(r, *m)
}
Expand Down
Binary file modified readme_images/properties-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified readme_images/properties-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified readme_images/properties-preview-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified readme_images/properties-preview-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 46f7db0

Please sign in to comment.