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 # Uguu
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nokonoko_Uguu&metric=alert_status)](https://sonarcloud.io/dashboard?id=nokonoko_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) [![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) [![Documentation Status](https://docs.uguu.se/img/flat.svg)](https://docs.uguu.se)
# What is Uguu? # What is Uguu?
Uguu is a simple lightweight temporary file hosting and sharing platform, but can also be used as a permanent file host. 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 - A minimal, modern web interface
- Drag & Drop & Paste supported - Drag & Drop & Paste supported
- Upload API with multiple response choices - Upload API with multiple response choices
- JSON - JSON
- HTML - HTML
- Text - Text
- CSV - CSV
- Supports [ShareX](https://getsharex.com/) and other screenshot tools - Supports [ShareX](https://getsharex.com/) and other screenshot tools
### Demo ### Demo
@ -26,7 +26,7 @@ See the real world site at [uguu.se](https://uguu.se).
## Requirements ## 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. 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 You can also help by sending us feature requests or writing documentation and
tests. tests.
## Upcoming Features
* PostgreSQL Support
* S3 Bucket Support
* Azure File Storage Support
* Temporal/RR Support
*
## Credits ## 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. 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", "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.", "description": "Uguu is a simple lightweight temporary file host with support for drop, paste, click and API uploading.",
"homepage": "https://uguu.se", "homepage": "https://uguu.se",
"repository": { "repository": {
@ -16,7 +16,7 @@
"bugs": { "bugs": {
"url": "https://github.com/nokonoko/uguu/issues" "url": "https://github.com/nokonoko/uguu/issues"
}, },
"devDependencies" : { "devDependencies": {
"ejs": "^3.1.8", "ejs": "^3.1.8",
"minify-all-cli": "^1.0.13", "minify-all-cli": "^1.0.13",
"node-jq": "^2.3.3", "node-jq": "^2.3.3",

View File

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

View File

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