minor changes

This commit is contained in:
Go Johansson 2022-12-17 00:23:38 +01:00
parent 06790f5ce6
commit 841230530d
5 changed files with 17 additions and 5144 deletions

View File

@ -1,9 +1,9 @@
# Uguu
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nokonoko_Uguu&metric=alert_status)](https://sonarcloud.io/dashboard?id=nokonoko_Uguu)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
[![Documentation Status](https://docs.uguu.se/img/flat.svg)](https://docs.uguu.se)
# What is Uguu?
Uguu is a simple lightweight temporary file hosting and sharing platform, but can also be used as a permanent file host.
@ -14,10 +14,10 @@ Uguu is a simple lightweight temporary file hosting and sharing platform, but ca
- A minimal, modern web interface
- Drag & Drop & Paste supported
- Upload API with multiple response choices
- JSON
- HTML
- Text
- CSV
- JSON
- HTML
- Text
- CSV
- Supports [ShareX](https://getsharex.com/) and other screenshot tools
### Demo
@ -26,7 +26,7 @@ See the real world site at [uguu.se](https://uguu.se).
## Requirements
Tested and working with Nginx + PHP-8.0/8.1 + SQLite/MySQL.
Tested and working with Nginx + PHP-8.0/8.1 + SQLite/MySQL.
Node is used to compile Uguu, after that it runs on PHP.
@ -51,6 +51,14 @@ coding style guides. We use ESLint and PHPCS tools to enforce these standards.
You can also help by sending us feature requests or writing documentation and
tests.
## Upcoming Features
* PostgreSQL Support
* S3 Bucket Support
* Azure File Storage Support
* Temporal/RR Support
*
## Credits
Uguu is based on [Pomf](http://github.com/pomf/pomf) which was written by Emma Lejack & Go Johansson (nekunekus) and with help from the open source community.

5133
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "uguu",
"version": "1.6.0",
"version": "1.6.2",
"description": "Uguu is a simple lightweight temporary file host with support for drop, paste, click and API uploading.",
"homepage": "https://uguu.se",
"repository": {
@ -16,7 +16,7 @@
"bugs": {
"url": "https://github.com/nokonoko/uguu/issues"
},
"devDependencies" : {
"devDependencies": {
"ejs": "^3.1.8",
"minify-all-cli": "^1.0.13",
"node-jq": "^2.3.3",

View File

@ -24,7 +24,6 @@
"phpunit/phpunit": "^9.5.27",
"squizlabs/php_codesniffer": "^3.7.1",
"phpmd/phpmd": "^2.13.0",
"friendsofphp/php-cs-fixer": "^v2.19.3",
"phpstan/phpstan": "^1.9.3",
"vimeo/psalm": "^5.2.0"
},

View File

@ -24,7 +24,6 @@
try {
(new UploadGateway())->handleFile($_GET['output'], $_FILES['files']);
}
catch (Exception $e) {
} catch (Exception $e) {
throw new Exception($e->getMessage(), 500);
}