Skip to content

Commit

Permalink
+ 46.3.1
Browse files Browse the repository at this point in the history
+ Permissions-Policy fix
  • Loading branch information
Bergstein committed Nov 15, 2021
1 parent 14a54b1 commit b96000e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "trickyplan/codeine",
"version": "46.3.0",
"version": "46.3.1",
"minimum-stability": "dev",
"description": "Esoteric framework: one class, shitload of anonymous functions, zero documentation. Still good though.",
"keywords": [
Expand All @@ -10,7 +10,7 @@
],
"homepage": "https://github.com/Bergstein/Codeine",
"type": "library",
"time": "2021-11-09 04:11:21",
"time": "2021-11-15 08:11:22",
"license": "BSD-3-Clause",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeine",
"version": "46.3.0",
"version": "46.3.1",
"description": "Esoteric framework: one class, shitload of anonymous functions, zero documentation. Still good though.",
"main": "index.php",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@

$Policies = F::Dot($Call, 'System.Interface.HTTP.Headers.Permissions-Policy');
foreach ($Policies as $Policy => $Decision)
$Header[] = $Policy." ".F::Variable($Decision, $Call);
$Header[] = $Policy."=".F::Variable($Decision, $Call);

$Call['HTTP']['Headers']['Permissions-Policy:'] = implode('; ', $Header);
$Call['HTTP']['Headers']['Permissions-Policy:'] = implode(', ', $Header);

return $Call;
});
3 changes: 1 addition & 2 deletions src/Options/User/Entity.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
"Mixins.Controlled",
"Mixins.Filled",
"Mixins.Verifiable",
"Mixins.Channel",
"Entity.Mixins.Timezone"
"Mixins.Channel"
],
"Storage": "Primary",
"EPP": 20,
Expand Down
2 changes: 1 addition & 1 deletion src/Options/Version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"Codeine": "46.3.0"
"Codeine": "46.3.1"
}

0 comments on commit b96000e

Please sign in to comment.