Skip to content

Commit

Permalink
Release 5.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MacWarrior committed Mar 1, 2024
1 parent 7d41f21 commit 329591e
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 265 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ You can start a fully dedicated video sharing website or photo sharing websites
<img src="./upload/images/screenshot.jpg"/>
</p>

# Update 5.5.0
After more than 370 revisions, we're proud to officialy announce the release of ClipBucketV5 - 5.5.0, the biggest update of ClipBucket to this day, implementing tons of new features and preparing it's future.
<p align="center">
<img src="./upload/images/release-5.5.0.png" alt="ClipbucketV5 update 5.5.0 features list"/>
</p>

# History
ClipBucket <a href="https://github.com/arslancb/clipbucket">original repository</a> has been slowly dying since the release 4.1 (May 2018) and has been archived on December 2022.<br/>
<a href="https://github.com/MacWarrior/clipbucket-v5">ClipBucket V5</a> was created on 2016 by <a href="https://github.com/MacWarrior">MacWarrior</a> and is part of <a href="https://oxygenz.fr/en/" target="_blank">Oxygenz</a>'s projects since 2023
Expand Down
15 changes: 11 additions & 4 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@

## Supported Versions

| Version | Supported |
|---------|--------------------|
| 5.x | :white_check_mark: |
| Version | Release date | Supported | PHP Compatibility |
|---------|--------------|--------------------|-------------------|
| 5.5.0 | 2024-02-26 | :white_check_mark: | 7.0 to 8.3 |
| 5.4.1 | 2021-12-26 | :x: | 7.0 to 8.0 |
| 5.4.0 | 2021-03-14 | :x: | 7.0 to 7.3 |
| 5.3.1 | 2020-05-17 | :x: | 7.0 to 7.3 |
| 5.3.0 | 2020-05-05 | :x: | 7.0 to 7.3 |
| 5.2.0 | 2018-11-01 | :x: | 7.0 to 7.3 |
| 5.1.0 | 2018-05-22 | :x: | 7.0 to 7.1 |
| 5.0.0 | 2018-04-10 | :x: | 5.4 to 7.1 |

## Reporting a Vulnerability
If you think you have found a vulnerability, please report responsibly.
Don't create GitHub issues for security issues.

Instead, please send an email to jullien+clipbucket[at]oxygenz.fr and I'll look into it as soon as possible.
Instead, please send an email to contact+clipbucket[at]oxygenz.fr and we'll look into it as soon as possible.
35 changes: 0 additions & 35 deletions do_not_upload/admin_change_pass.php

This file was deleted.

47 changes: 0 additions & 47 deletions docs/LICENSE

This file was deleted.

129 changes: 0 additions & 129 deletions docs/installation.html

This file was deleted.

41 changes: 0 additions & 41 deletions docs/requirements.html

This file was deleted.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "ClipBucket",
"description": "Open Source Video Sjaring Script",
"name": "ClipBucketV5",
"description": "Open Source Video Sharing Script",
"version": "5.5.0"
}
4 changes: 2 additions & 2 deletions upload/cb_install/sql/5.5.0/00264.sql
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ INSERT IGNORE INTO `{tbl_prefix}tags` (id_tag_type, name)
,SUBSTRING_INDEX(SUBSTRING_INDEX(@tags_profile, ',', seq.n + 1), ',', -1) AS tags
FROM NumberSequence seq
;
INSERT IGNORE INTO `{tbl_prefix}user_tags` (`id_tag`, `id_user`) (
INSERT IGNORE INTO `{tbl_prefix}user_tags` (`id_tag`, `id_user`)
WITH RECURSIVE NumberSequence AS (
SELECT 0 AS n
UNION ALL
Expand All @@ -236,7 +236,7 @@ INSERT IGNORE INTO `{tbl_prefix}user_tags` (`id_tag`, `id_user`) (
INNER JOIN `{tbl_prefix}tags` tags ON tags.name = SUBSTRING_INDEX(SUBSTRING_INDEX(profile.profile_tags, ',', seq.n + 1), ',', -1) AND tags.id_tag_type = @type_profile
WHERE
profile.profile_tags IS NOT NULL AND TRIM(profile.profile_tags) != ''
);
;

SET @type_playlist = (
SELECT id_tag_type
Expand Down
4 changes: 2 additions & 2 deletions upload/changelog/550.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version":"5.5.0",
"revision":"376",
"status":"dev",
"revision":"377",
"status":"stable",
"detail":[
{
"title":"Admin area",
Expand Down
2 changes: 1 addition & 1 deletion upload/changelog/latest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"stable":"541",
"stable":"550",
"dev":"550"
}
Binary file added upload/images/release-5.5.0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions upload/includes/classes/update.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -452,8 +452,8 @@ public function isCoreUpToDate(): bool
return true;
}

if( $this->getCurrentCoreVersionCode() >= $this->getWebVersion()
&& $this->getCurrentCoreRevision() >= $this->getWebRevision()
if( $this->getCurrentCoreVersionCode() > $this->getWebVersion()
|| ($this->getCurrentCoreVersionCode() == $this->getWebVersion() && $this->getCurrentCoreRevision() >= $this->getWebRevision())
){
return true;
}
Expand Down

0 comments on commit 329591e

Please sign in to comment.