-
-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update to version 4.3.6 * Sync recent front-end commits Co-authored-by: Matthias Nagel <[email protected]>
- Loading branch information
Showing
9 changed files
with
245 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ Lychee/* | |
_ide* | ||
|
||
.php_cs.cache | ||
.php-cs-fixer.cache | ||
|
||
*.log | ||
package-lock.json | ||
|
27 changes: 27 additions & 0 deletions
27
database/migrations/2021_11_16_162058_bump_version040306.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
use App\Models\Configs; | ||
use Illuminate\Database\Migrations\Migration; | ||
|
||
class BumpVersion040306 extends Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
* | ||
* @return void | ||
*/ | ||
public function up() | ||
{ | ||
Configs::where('key', 'version')->update(['value' => '040306']); | ||
} | ||
|
||
/** | ||
* Reverse the migrations. | ||
* | ||
* @return void | ||
*/ | ||
public function down() | ||
{ | ||
Configs::where('key', 'version')->update(['value' => '040305']); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Lychee-front
updated
11 files
+1 −1 | README.md | |
+18 −11 | scripts/main/album.js | |
+104 −72 | scripts/main/contextMenu.js | |
+21 −8 | scripts/main/header.js | |
+1 −1 | scripts/main/init.js | |
+4 −4 | scripts/main/lychee.js | |
+1 −1 | scripts/main/search.js | |
+8 −1 | scripts/main/sidebar.js | |
+5 −5 | scripts/main/upload.js | |
+2 −1 | scripts/main/view.js | |
+3 −1 | scripts/view/main.js |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.3.5 | ||
4.3.6 |