-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.1.7 Patching Release
- Loading branch information
Showing
15 changed files
with
54 additions
and
60 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 |
---|---|---|
@@ -1 +1 @@ | ||
{ "BRANCH": "main", "VERSION":"1.1.6" } | ||
{ "BRANCH": "main", "VERSION":"1.1.7" } |
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 |
---|---|---|
|
@@ -4,16 +4,13 @@ | |
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/x-icon" href="./Public/assets/img/favicon.png"> | ||
<link rel="icon" type="image/x-icon" href="<?= getInstallationPath() ?>/Public/assets/img/favicon.png"> | ||
<meta name="description" content="<?= translate("An extremely simple, one-time view encryption message system. Send anybody passwords, or secret messages on a one-time view basis.") ?>"> | ||
<title>QuickBlaze</title> | ||
|
||
<!-- Custom styles --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" | ||
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" | ||
crossorigin="anonymous"></script> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script> | ||
</head> | ||
|
||
<style> | ||
|
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
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
2 changes: 1 addition & 1 deletion
2
Public/assets/css/bootstrap.min.css → Public/assets/css/bootstrap.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,13 +4,13 @@ | |
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/x-icon" href="./Public/assets/img/favicon.png"> | ||
<link rel="icon" type="image/x-icon" href="<?=getInstallationPath()?>/Public/assets/img/favicon.png"> | ||
<meta name="description" content="<?= translate("An extremely simple, one-time view encrypted message system. Send anybody passwords, or secret messages on a one-time view basis.") ?>"> | ||
<title>QuickBlaze</title> | ||
|
||
<!-- Site CSS --> | ||
<link href="./Public/assets/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="./Public/assets/css/style.css" rel="stylesheet"> | ||
<link href="<?=getInstallationPath()?>/Public/assets/css/bootstrap.css" rel="stylesheet"> | ||
<link href="<?=getInstallationPath()?>/Public/assets/css/style.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css"> | ||
</head> | ||
|
||
|
@@ -58,13 +58,13 @@ | |
<div id="snackbar"><?= translate("✅ URL has been copied to clipboard!") ?></div> | ||
|
||
<!-- Dark Mode Widget --> | ||
<script src="./Public/assets/js/globalFunctions.js"></script> | ||
<script src="<?=getInstallationPath()?>/Public/assets/js/globalFunctions.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/darkmode-js.min.js"></script> | ||
<!-- Copy Button --> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | ||
<script src="./Public/assets/js/buttonCopyURL.js"></script> | ||
<script src="<?=getInstallationPath()?>/Public/assets/js/buttonCopyURL.js"></script> | ||
<!-- Form Scripts --> | ||
<script src="./Public/assets/js/formContentUpdate.js"></script> | ||
<script src="<?=getInstallationPath()?>/Public/assets/js/formContentUpdate.js"></script> | ||
|
||
</body> | ||
|
||
|
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 |
---|---|---|
|
@@ -4,15 +4,14 @@ | |
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/x-icon" href="./Public/assets/img/favicon.png"> | ||
<link rel="icon" type="image/x-icon" href="<?=getInstallationPath()?>/Public/assets/img/favicon.png"> | ||
<meta name="description" content="<?= translate("An extremely simple, one-time view encrypted message system. Send anybody passwords, or secret messages on a one-time view basis.") ?>"> | ||
<title>QuickBlaze</title> | ||
|
||
<!-- Site CSS --> | ||
<link href="./Public/assets/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="./Public/assets/css/style.css" rel="stylesheet"> | ||
<link href="<?=getInstallationPath()?>/Public/assets/css/bootstrap.css" rel="stylesheet"> | ||
<link href="<?=getInstallationPath()?>/Public/assets/css/style.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css"> | ||
|
||
</head> | ||
|
||
<body class="text-center"> | ||
|
@@ -60,13 +59,13 @@ | |
<div id="snackbar">✅ <?= translate("Message has been copied to clipboard!") ?></div> | ||
|
||
<!-- Dark Mode Widget --> | ||
<script src="./Public/assets/js/globalFunctions.js"></script> | ||
<script src="<?=getInstallationPath()?>/Public/assets/js/globalFunctions.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/darkmode-js.min.js"></script> | ||
<!-- Copy Button --> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | ||
<script src="./Public/assets/js/buttonCopyURL.js"></script> | ||
<script src="<?=getInstallationPath()?>/Public/assets/js/buttonCopyURL.js"></script> | ||
<!-- Form Scripts --> | ||
<script src="./Public/assets/js/formContentUpdate.js"></script> | ||
<script src="<?=getInstallationPath()?>/Public/assets/js/formContentUpdate.js"></script> | ||
|
||
</body> | ||
|
||
|
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