Skip to content

Commit

Permalink
v1.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nokonoko committed Dec 31, 2023
1 parent 947d327 commit 4469e4d
Show file tree
Hide file tree
Showing 14 changed files with 1,093 additions and 219 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ composer.phar
composer.lock
docker/uguuForDocker.tar.gz
!/.php-cs-fixer.cache
test.php
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "uguu",
"version": "1.8.3",
"version": "1.8.4",
"description": "Uguu is a simple lightweight temporary file host with support for drop, paste, click and API uploading.",
"homepage": "https://uguu.se",
"repository": {
Expand Down
16 changes: 13 additions & 3 deletions src/Classes/Connector.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
<?php
/**
/*
* Uguu
*
* @copyright Copyright (c) 2022-2023 Go Johansson (nokonoko) <neku@pomf.se>
* @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <neku@pomf.se>
*
* Note that this was previously distributed under the MIT license 2015-2022.
*
* If you are a company that wants to use Uguu I urge you to contact me to
* solve any potential license issues rather then using pre-2022 code.
*
* A special thanks goes out to the open source community around the world
* for supporting and being the backbone of projects like Uguu.
*
* This project can be found at <https://github.com/nokonoko/Uguu>.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -71,7 +81,7 @@ public function __construct()
$this->DB = new PDO(
$this->CONFIG['DB_MODE'] . ':' . $this->CONFIG['DB_PATH'],
$this->CONFIG['DB_USER'],
$this->CONFIG['DB_PASS']
$this->CONFIG['DB_PASS'],
);
}
}
14 changes: 12 additions & 2 deletions src/Classes/CuteGrills.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
<?php
/**
/*
* Uguu
*
* @copyright Copyright (c) 2022-2023 Go Johansson (nokonoko) <neku@pomf.se>
* @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <neku@pomf.se>
*
* Note that this was previously distributed under the MIT license 2015-2022.
*
* If you are a company that wants to use Uguu I urge you to contact me to
* solve any potential license issues rather then using pre-2022 code.
*
* A special thanks goes out to the open source community around the world
* for supporting and being the backbone of projects like Uguu.
*
* This project can be found at <https://github.com/nokonoko/Uguu>.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
15 changes: 12 additions & 3 deletions src/Classes/Database.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
<?php
/**
/*
* Uguu
*
* @copyright Copyright (c) 2022-2023 Go Johansson (nokonoko) <neku@pomf.se>
* @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <neku@pomf.se>
*
* Note that this was previously distributed under the MIT license 2015-2022.
*
* If you are a company that wants to use Uguu I urge you to contact me to
* solve any potential license issues rather then using pre-2022 code.
*
* A special thanks goes out to the open source community around the world
* for supporting and being the backbone of projects like Uguu.
*
* This project can be found at <https://github.com/nokonoko/Uguu>.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -172,5 +182,4 @@ public function checkRateLimit(array $fingerPrintInfo, int $rateTimeout, int $fi
}
return false;
}

}
14 changes: 12 additions & 2 deletions src/Classes/GrillLoader.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
<?php
/**
/*
* Uguu
*
* @copyright Copyright (c) 2022-2023 Go Johansson (nokonoko) <neku@pomf.se>
* @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <neku@pomf.se>
*
* Note that this was previously distributed under the MIT license 2015-2022.
*
* If you are a company that wants to use Uguu I urge you to contact me to
* solve any potential license issues rather then using pre-2022 code.
*
* A special thanks goes out to the open source community around the world
* for supporting and being the backbone of projects like Uguu.
*
* This project can be found at <https://github.com/nokonoko/Uguu>.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
14 changes: 12 additions & 2 deletions src/Classes/Response.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
<?php
/**
/*
* Uguu
*
* @copyright Copyright (c) 2022-2023 Go Johansson (nokonoko) <neku@pomf.se>
* @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <neku@pomf.se>
*
* Note that this was previously distributed under the MIT license 2015-2022.
*
* If you are a company that wants to use Uguu I urge you to contact me to
* solve any potential license issues rather then using pre-2022 code.
*
* A special thanks goes out to the open source community around the world
* for supporting and being the backbone of projects like Uguu.
*
* This project can be found at <https://github.com/nokonoko/Uguu>.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down
Loading

0 comments on commit 4469e4d

Please sign in to comment.