author
int64
658
755k
date
stringdate
2012-06-12 08:34:29
2024-07-22 14:51:21
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
listlengths
1
16
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
95,144
09.10.2019 08:46:51
-7,200
bb07517a4ddb370f9b2fc2c30433b56763707597
Working on using setcontent in backend
[ { "change_type": "MODIFY", "old_path": "config/bolt/contenttypes.yaml", "new_path": "config/bolt/contenttypes.yaml", "diff": "@@ -293,6 +293,8 @@ blocks:\nicon_many: \"fa:cubes\"\nicon_one: \"fa:cube\"\nsort: title\n+ records_per_page: 12\n+\n# This contenttype is here to use for (automated) tests.\...
PHP
MIT License
bolt/core
Working on using setcontent in backend
95,144
09.10.2019 20:09:13
-7,200
275ac29129b03bd0af462d53c489684cb465bc2e
Only add preset fixtures on first run, not on consecutive ones
[ { "change_type": "MODIFY", "old_path": "src/DataFixtures/BaseFixture.php", "new_path": "src/DataFixtures/BaseFixture.php", "diff": "@@ -90,4 +90,9 @@ abstract class BaseFixture extends Fixture\nreturn $finder;\n}\n+\n+ protected function getOption(string $name): bool\n+ {\n+ return in_array($name, $...
PHP
MIT License
bolt/core
Only add preset fixtures on first run, not on consecutive ones
95,144
09.10.2019 21:35:39
-7,200
41fb43be882b88aebb42467297ff296bbfa9a44d
Working some mo'
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/DashboardController.php", "new_path": "src/Controller/Backend/DashboardController.php", "diff": "@@ -8,6 +8,7 @@ use Bolt\\Controller\\TwigAwareController;\nuse Bolt\\Entity\\Content;\nuse Bolt\\Repository\\ContentRepository;\nuse Sensio...
PHP
MIT License
bolt/core
Working some mo'
95,144
10.10.2019 08:37:25
-7,200
a49848156b8c2e1b324f39361f44aeac1c1f4441
"Fixing" the weird-ass Voodo shit that is PHPSpec
[ { "change_type": "MODIFY", "old_path": "tests/spec/Bolt/Menu/BackendMenuBuilderSpec.php", "new_path": "tests/spec/Bolt/Menu/BackendMenuBuilderSpec.php", "diff": "@@ -54,6 +54,9 @@ class BackendMenuBuilderSpec extends ObjectBehavior\nItemInterface $item,\nItemInterface $subitem\n) {\n+\n+ // Seriousl...
PHP
MIT License
bolt/core
"Fixing" the weird-ass Voodo shit that is PHPSpec
95,144
11.10.2019 18:26:58
-7,200
3d9c16b43dbed3bde376e8d951bb6353746bcfd5
More work done.
[ { "change_type": "DELETE", "old_path": "assets/scss/modules/base/_pagination.scss", "new_path": null, "diff": "-//** Base | Pagination\n-\n-.pagination {\n- margin: 0 auto;\n-\n- nav {\n- display: flex;\n-\n- span,\n- a {\n- font-size: 0.875rem;\n- display: flex;\n- align-items: center;\n- justify-c...
PHP
MIT License
bolt/core
More work done.
95,144
15.10.2019 17:27:20
-7,200
a6ea3497bd0da6ef66b7163b0d38a428e3118d38
Refactor ContentQueryInterface to QueryInterface
[ { "change_type": "DELETE", "old_path": "src/Storage/ContentQueryInterface.php", "new_path": null, "diff": "-<?php\n-\n-declare(strict_types=1);\n-\n-namespace Bolt\\Storage;\n-\n-interface ContentQueryInterface extends QueryInterface\n-{\n- /**\n- * Returns the content type this query is executing o...
PHP
MIT License
bolt/core
Refactor ContentQueryInterface to QueryInterface
95,144
16.10.2019 17:22:25
-7,200
be67ec21cc2b4ade8a63add1c59796cfd6d50022
When persisting a Content, make sure the `modifiedAt` is updated
[ { "change_type": "MODIFY", "old_path": "src/Entity/Content.php", "new_path": "src/Entity/Content.php", "diff": "@@ -285,6 +285,15 @@ class Content\nreturn $this;\n}\n+ /**\n+ * @ORM\\PrePersist()\n+ * @ORM\\PreUpdate()\n+ */\n+ public function updateModifiedAt()\n+ {\n+ $this->setModifiedAt(new \\Da...
PHP
MIT License
bolt/core
When persisting a Content, make sure the `modifiedAt` is updated
95,144
16.10.2019 17:25:41
-7,200
446266b01b0d01ba8066510883228619419d95b2
Tidy up `findForListing`
[ { "change_type": "MODIFY", "old_path": "src/Repository/ContentRepository.php", "new_path": "src/Repository/ContentRepository.php", "diff": "@@ -36,7 +36,7 @@ class ContentRepository extends ServiceEntityRepository\nreturn $this->createQueryBuilder('content');\n}\n- public function findForListing(int...
PHP
MIT License
bolt/core
Tidy up `findForListing`
95,144
16.10.2019 17:34:43
-7,200
03dbcdd137676e5fe401f1db80b82a1c73e27395
Adding return type hint
[ { "change_type": "MODIFY", "old_path": "src/Entity/Content.php", "new_path": "src/Entity/Content.php", "diff": "@@ -289,7 +289,7 @@ class Content\n* @ORM\\PrePersist()\n* @ORM\\PreUpdate()\n*/\n- public function updateModifiedAt()\n+ public function updateModifiedAt(): void\n{\n$this->setModifiedAt(...
PHP
MIT License
bolt/core
Adding return type hint
95,192
17.10.2019 17:46:31
-7,200
b6966ed63d93602ed13734aa55cc8db2317c9bc4
redo style on login page, use body classes iso html classes and id, add logo version when bg images enabled
[ { "change_type": "MODIFY", "old_path": "assets/scss/layout/_login.scss", "new_path": "assets/scss/layout/_login.scss", "diff": "-html#login {\n- background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(37, 86, 135, 0.5));\n+.page--login {\n- &.with-background {\n- background: linear-gradient(rgba(0, 0, ...
PHP
MIT License
bolt/core
redo style on login page, use body classes iso html classes and id, add logo version when bg images enabled
95,192
18.10.2019 09:31:21
-7,200
922bfef193e0837b4d9cbe8e1bd290ef6f0b5a7f
fix space on travis test error
[ { "change_type": "MODIFY", "old_path": "assets/scss/layout/_login.scss", "new_path": "assets/scss/layout/_login.scss", "diff": ".page--login {\n-\n> div {\nmax-width: 25rem;\nmargin: 0 auto;\npadding-top: 7rem;\n}\n}\n-\nh1 {\ntext-align: center;\nmargin: 2rem 0;\nfont-size: 1.25rem;\n}\n-\nbody {\n...
PHP
MIT License
bolt/core
fix space on travis test error
95,192
18.10.2019 09:56:14
-7,200
66beed54ad42e7cab5b58174951317afdbc1f915
fix with stylelint proper scss file conventions
[ { "change_type": "MODIFY", "old_path": "assets/scss/layout/_login.scss", "new_path": "assets/scss/layout/_login.scss", "diff": "max-width: 25rem;\nmargin: 0 auto;\npadding: 2rem 1rem;\n+\n@include media-breakpoint-up(sm) {\npadding-top: 4rem;\n}\n+\n@include media-breakpoint-up(md) {\npadding-top: 5...
PHP
MIT License
bolt/core
fix with stylelint proper scss file conventions
95,192
18.10.2019 12:28:38
-7,200
79c3015038afd5e87b6e563eb585954f5f2bd420
Split up fields in record stats sidebar to editable and summary, rearrange, add logic to value only for fields
[ { "change_type": "ADD", "old_path": null, "new_path": "assets/scss/modules/editor/_forms.scss", "diff": "+.form-fieldsgroup {\n+ margin-bottom: 1.5rem;\n+}\n+\n+.form-fieldsgroup__summary-fields {\n+ margin-bottom: 1rem;\n+ color: var(--shade);\n+ font-size: 0.9375rem;\n+ label {\n+ margin-bottom: 0...
PHP
MIT License
bolt/core
Split up fields in record stats sidebar to editable and summary, rearrange, add logic to value only for fields
95,144
19.10.2019 10:17:49
-7,200
d47b61d921664f870be2485cf007aac230bc37e6
Tidy up the overview screen
[ { "change_type": "MODIFY", "old_path": "templates/content/listing.html.twig", "new_path": "templates/content/listing.html.twig", "diff": "{# This 'topsection' gets output _before_ the main form, allowing `dump()`, without breaking Vue #}\n{% block topsection %}\n- {{ dump(whereValues) }}\n+\n{% endb...
PHP
MIT License
bolt/core
Tidy up the overview screen
95,144
19.10.2019 12:34:14
-7,200
fde0acfc59c54a0b06b1d2d2c23869fa90b8df98
Delete foobar.php
[ { "change_type": "DELETE", "old_path": "foobar.php", "new_path": null, "diff": "-<?php\n-\n-declare(strict_types=1);\n-\n-namespace Bolt\\Controller\\Backend;\n-\n-use Bolt\\Common\\Json;\n-use Bolt\\Common\\Str;\n-use Bolt\\Controller\\CsrfTrait;\n-use Bolt\\Controller\\TwigAwareController;\n-use B...
PHP
MIT License
bolt/core
Delete foobar.php
95,144
20.10.2019 14:13:02
-7,200
4d74b9ffb578f9af6af0a58f2af85bba33b4ca8b
Tiny fixes for the listing and edit screens
[ { "change_type": "MODIFY", "old_path": "config/bolt/contenttypes.yaml", "new_path": "config/bolt/contenttypes.yaml", "diff": "@@ -94,6 +94,7 @@ pages:\nfilter: '*.twig'\ntaxonomy: [ groups ]\nlisting_records: 6\n+ locales: ['en', 'nl', 'ja', 'nb']\n# Entries can be used for things like 'news' or 'bl...
PHP
MIT License
bolt/core
Tiny fixes for the listing and edit screens
95,144
21.10.2019 21:05:33
-7,200
51c8912a58ad341b20f6b5ed51cf65797b549424
Make sure Select fields are saved properly
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field/SelectField.php", "new_path": "src/Entity/Field/SelectField.php", "diff": "@@ -4,6 +4,7 @@ declare(strict_types=1);\nnamespace Bolt\\Entity\\Field;\n+use Bolt\\Common\\Json;\nuse Bolt\\Entity\\Field;\nuse Bolt\\Entity\\FieldInterface;\nuse Doc...
PHP
MIT License
bolt/core
Make sure Select fields are saved properly
95,144
31.10.2019 13:38:42
-3,600
cf7e270934c71b0c5b9605ffa3c83178bf01d35c
Introduce `field|label` and `field|type` shorthands
[ { "change_type": "MODIFY", "old_path": "public/theme/skeleton/partials/_sub_field_blocks.twig", "new_path": "public/theme/skeleton/partials/_sub_field_blocks.twig", "diff": "{# Special case for 'select' fields: if it's a multiple select, the field is an array. #}\n{% if type == \"select\" and field ...
PHP
MIT License
bolt/core
Introduce `field|label` and `field|type` shorthands
95,144
01.11.2019 07:27:23
-3,600
2a40a1137d23a8b4b9c337ee436fb16081aa6b4f
Making selects display proper in frontend
[ { "change_type": "MODIFY", "old_path": "public/theme/skeleton/partials/_sub_field_blocks.twig", "new_path": "public/theme/skeleton/partials/_sub_field_blocks.twig", "diff": "{% if type == \"select\" and field is not empty %}\n<p><strong>{{ field|label }}: </strong>\n- {{ dump(field) }}\n+\n+ {% if f...
PHP
MIT License
bolt/core
Making selects display proper in frontend
95,144
01.11.2019 07:27:45
-3,600
c9e2dd4e14e55dc2182f280da7a7282b3dd29f4e
Adding simple notifications for frontend
[ { "change_type": "ADD", "old_path": null, "new_path": "src/Twig/Notifications.php", "diff": "+<?php\n+\n+declare(strict_types=1);\n+\n+namespace Bolt\\Twig;\n+\n+use Bolt\\Configuration\\Config;\n+use Twig\\Environment;\n+use Twig\\Markup;\n+\n+class Notifications\n+{\n+ /** @var Environment */\n+ p...
PHP
MIT License
bolt/core
Adding simple notifications for frontend
95,168
01.11.2019 17:32:59
-3,600
e104a909ab975523453e5998521b2264754d1711
Pass container to Extensions
[ { "change_type": "MODIFY", "old_path": "src/Event/Subscriber/ExtensionSubscriber.php", "new_path": "src/Event/Subscriber/ExtensionSubscriber.php", "diff": "@@ -10,6 +10,7 @@ use Bolt\\Widgets;\nuse Doctrine\\Common\\Persistence\\ObjectManager;\nuse Symfony\\Component\\Console\\ConsoleEvents;\nuse Sy...
PHP
MIT License
bolt/core
Pass container to Extensions
95,144
02.11.2019 07:09:39
-3,600
327d1628105f514d1ccdc0748b82ea15788a5a0a
Allow extensions to access services
[ { "change_type": "MODIFY", "old_path": "src/Extension/BaseExtension.php", "new_path": "src/Extension/BaseExtension.php", "diff": "@@ -16,6 +16,7 @@ use Doctrine\\Common\\Persistence\\ObjectManager;\nuse Symfony\\Component\\DependencyInjection\\ContainerInterface;\nuse Symfony\\Component\\EventDispat...
PHP
MIT License
bolt/core
Allow extensions to access services
95,144
02.11.2019 07:11:14
-3,600
ccf4b1e767502ce28520a8cf5e124f3c3a691321
Add `console extensions:services` command
[ { "change_type": "MODIFY", "old_path": "src/Command/ExtensionsListCommand.php", "new_path": "src/Command/ExtensionsListCommand.php", "diff": "@@ -27,7 +27,7 @@ class ExtensionsListCommand extends Command\nprotected function configure(): void\n{\n$this\n- ->setDescription('List extensions');\n+ ->set...
PHP
MIT License
bolt/core
Add `console extensions:services` command
95,144
02.11.2019 13:05:11
-3,600
35944eb0a39a909826e6381562fa62be3431f38d
Remove large Chromedriver and Selenium binaries from repo
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -14,6 +14,10 @@ npm-debug.log\nyarn-error.log\nwebpack_stats.json\n+### Behat / Front-end testing files\n+bin/chromedriver\n+bin/selenium-server-standalone*.jar\n+\n### File-system cruft and temporary files\n_...
PHP
MIT License
bolt/core
Remove large Chromedriver and Selenium binaries from repo
95,144
02.11.2019 16:05:32
-3,600
0444e1f6ae0f5116f5010029a5690507ee65eb36
Custom 404 pages
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "@@ -84,7 +84,7 @@ homepage_template: index.twig\n# identifiers for records, which will be tried until a match is found.\n#\n# Note: The record specified in this parameter must be set to ...
PHP
MIT License
bolt/core
Custom 404 pages
95,144
02.11.2019 16:19:02
-3,600
a145e1393b3af84bb46c0c651ba02bb6ebdf9552
Allow 404 to be 'draft' in order to work
[ { "change_type": "MODIFY", "old_path": "src/Controller/ExceptionController.php", "new_path": "src/Controller/ExceptionController.php", "diff": "<?php\n+declare(strict_types=1);\nnamespace Bolt\\Controller;\nuse Bolt\\Configuration\\Config;\nuse Bolt\\Controller\\Frontend\\DetailController;\nuse Bolt...
PHP
MIT License
bolt/core
Allow 404 to be 'draft' in order to work
95,144
02.11.2019 16:23:35
-3,600
2cc634f86505690d36614ee6e1032631fbcbb9d7
Added a fixture for the 404 page
[ { "change_type": "MODIFY", "old_path": "src/DataFixtures/ContentFixtures.php", "new_path": "src/DataFixtures/ContentFixtures.php", "diff": "@@ -101,7 +101,7 @@ class ContentFixtures extends BaseFixture implements DependentFixtureInterface,\n$preset = $this->getPreset($contentType['slug']);\nif ($i =...
PHP
MIT License
bolt/core
Added a fixture for the 404 page
95,144
03.11.2019 18:18:59
-3,600
8141f67dff717ba1726d4f3d46118ee10735f179
Fix doctrine/dbal to 2.9.2, to prevent breakage in tests
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"cocur/slugify\": \"^3.2\",\n\"composer/composer\": \"^1.9\",\n\"doctrine/annotations\": \"^1.7\",\n+ \"doctrine/dbal\": \"2.9.2\",\n\"doctrine/doctrine-bundle\": \"^1.11\",\n\"doctrine/doctrine-cache-bund...
PHP
MIT License
bolt/core
Fix doctrine/dbal to 2.9.2, to prevent breakage in tests
95,144
03.11.2019 15:27:49
-3,600
7f4baa5572efab29c97761a6c214d267ebea9245
Updating NPM assets
[ { "change_type": "MODIFY", "old_path": "assets/scss/layout/_login.scss", "new_path": "assets/scss/layout/_login.scss", "diff": "}\n&.with-background {\n- background-image: url(https://source.unsplash.com/daily);\n+ background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)), url(https://sour...
PHP
MIT License
bolt/core
Updating NPM assets
95,144
04.11.2019 21:04:19
-3,600
b29d9c93aa7028c17d1288d64a215a30085bc1a2
Don't run an Extension's `initialize` on CLI
[ { "change_type": "MODIFY", "old_path": "src/Command/ExtensionsServicesCommand.php", "new_path": "src/Command/ExtensionsServicesCommand.php", "diff": "@@ -50,7 +50,7 @@ class ExtensionsServicesCommand extends Command\n$privateServices = $reflectionProperty->getValue($this->container);\n- $io->text('P...
PHP
MIT License
bolt/core
Don't run an Extension's `initialize` on CLI
95,144
12.11.2019 17:46:19
-3,600
951abc1e866d1dfbdbebc5cda44395bee1dd60c4
Bump version of PHP and Doctrine
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -12,10 +12,6 @@ cache:\nmatrix:\nfast_finish: true\ninclude:\n- # Pinned to 7.1.18, because Travis defaults to 7.1.6, which has broken SSL/TLS. See: https://github.com/travis-ci/travis-ci/issues/6339\n- - ph...
PHP
MIT License
bolt/core
Bump version of PHP and Doctrine
95,144
15.11.2019 13:56:24
-3,600
f4b5df078a774105ddf1699774680dc830921610
Bump PHP version in PhpUnit config
[ { "change_type": "MODIFY", "old_path": "config/bolt/contenttypes.yaml", "new_path": "config/bolt/contenttypes.yaml", "diff": "@@ -282,6 +282,9 @@ blocks:\ncontent:\ntype: html\nheight: 150px\n+ imagelist:\n+ type: imagelist\n+ group: Imagelist\nrelations:\npages:\nmultiple: false\n" }, { "ch...
PHP
MIT License
bolt/core
Bump PHP version in PhpUnit config
95,144
16.11.2019 15:30:22
-3,600
6257c397d7cb30f201021678dc80bded1205c6a5
Update "summary" fields in image editor
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -15,8 +15,8 @@ yarn-error.log\nwebpack_stats.json\n### Behat / Front-end testing files\n-bin/chromedriver\n-bin/selenium-server-standalone*.jar\n+bin/chromedriver*\n+bin/selenium-server-standalone*\n### File-s...
PHP
MIT License
bolt/core
Update "summary" fields in image editor
95,144
15.11.2019 17:44:28
-3,600
85549df889a495d20f715b4ec6745228fb42bb10
Remove Title attribute from Image field
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Image.vue", "new_path": "assets/js/app/editor/Components/Image.vue", "diff": "</div>\n</transition>\n<div class=\"row\">\n- <div class=\"col-8\">\n+ <div class=\"col-9\">\n<div class=\"input-group mb-3\">\n<input :name=\"name + ...
PHP
MIT License
bolt/core
Remove Title attribute from Image field
95,144
16.11.2019 18:01:41
-3,600
e23ae464744772e83f119e677f83f52f6876d8d5
Add "edit attributes" button
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Image.vue", "new_path": "assets/js/app/editor/Components/Image.vue", "diff": "<i class=\"fas fa-fw fa-times\"></i> {{ labels.button_remove }}\n</button>\n</div>\n+\n+ <div v-if=\"filename\" class=\"btn-group mr-2\" role=\"group\...
PHP
MIT License
bolt/core
Add "edit attributes" button
95,144
17.11.2019 13:05:21
-3,600
4efa387b35f93318ac998f7942452c40a2276306
Add `|media` filter to get Media Entity for imagefields
[ { "change_type": "MODIFY", "old_path": "src/Controller/Backend/ContentEditController.php", "new_path": "src/Controller/Backend/ContentEditController.php", "diff": "@@ -15,6 +15,7 @@ use Bolt\\Entity\\User;\nuse Bolt\\Enum\\Statuses;\nuse Bolt\\Event\\Listener\\ContentFillListener;\nuse Bolt\\Reposit...
PHP
MIT License
bolt/core
Add `|media` filter to get Media Entity for imagefields
95,144
17.11.2019 14:29:16
-3,600
7ae34bf1e0aebc5818210686e12b4b3662ff226c
Update weird-ass phpspec test
[ { "change_type": "MODIFY", "old_path": "tests/spec/Bolt/Twig/ContentExtensionSpec.php", "new_path": "tests/spec/Bolt/Twig/ContentExtensionSpec.php", "diff": "@@ -75,13 +75,12 @@ class ContentExtensionSpec extends ObjectBehavior\npublic function it_gets_image(Content $content, ImageField $field, Fiel...
PHP
MIT License
bolt/core
Update weird-ass phpspec test
95,144
17.11.2019 15:22:56
-3,600
02b2e6b00e927888b575c56424f85ace76b9cbfa
Move test.twig
[ { "change_type": "RENAME", "old_path": "public/theme/skeleton/test.twig", "new_path": "public/theme/skeleton/custom/test.twig", "diff": "-{% extends 'partials/_master.twig' %}\n+{% extends '../partials/_master.twig' %}\n{% block main %}\n<hr>\n- {% include 'partials/_recordfooter.twig' with { 'recor...
PHP
MIT License
bolt/core
Move test.twig
95,144
17.11.2019 16:50:28
-3,600
aded5d39ec3ea35913a17f7101fd26886cec711b
Working on Maintenance Mode
[ { "change_type": "MODIFY", "old_path": "config/bolt/config.yaml", "new_path": "config/bolt/config.yaml", "diff": "@@ -32,20 +32,10 @@ locale: en\n# Set maintenance mode on or off.\n#\n-# While in maintenance mode, only users of level editor or higher can access the\n-# site.\n-#\n-# All other visito...
PHP
MIT License
bolt/core
Working on Maintenance Mode
95,144
17.11.2019 17:06:54
-3,600
d2d985f241c6c1d99a6940b1cf6c524a80b225bc
Fixing pagers
[ { "change_type": "MODIFY", "old_path": "public/theme/skeleton/custom/setcontent_1.twig", "new_path": "public/theme/skeleton/custom/setcontent_1.twig", "diff": "</section>\n{# If there are more records than will fit on one page, the pager is shown.#}\n- {{ pager(entries, template = 'partials/_sub_pag...
PHP
MIT License
bolt/core
Fixing pagers
95,144
18.11.2019 20:24:09
-3,600
f6b0563e7f589b82480e1697dd187cf9991d5e6b
Make 'extras' only return values for Image, not the entire ImageField object
[ { "change_type": "MODIFY", "old_path": "src/Twig/ContentExtension.php", "new_path": "src/Twig/ContentExtension.php", "diff": "@@ -125,13 +125,13 @@ class ContentExtension extends AbstractExtension\n}\n/**\n- * @return ImageField|string|null\n+ * @return ImageField|array|null\n*/\n- public function g...
PHP
MIT License
bolt/core
Make 'extras' only return values for Image, not the entire ImageField object
95,144
18.11.2019 20:38:31
-3,600
cb0411f111e86feb187dc0f52ca0fe09fc6ae80b
Fix Weird-ass ContentExtensionSpec test
[ { "change_type": "MODIFY", "old_path": "tests/spec/Bolt/Twig/ContentExtensionSpec.php", "new_path": "tests/spec/Bolt/Twig/ContentExtensionSpec.php", "diff": "@@ -24,7 +24,7 @@ use Symfony\\Component\\Security\\Csrf\\CsrfTokenManagerInterface;\nclass ContentExtensionSpec extends ObjectBehavior\n{\npu...
PHP
MIT License
bolt/core
Fix Weird-ass ContentExtensionSpec test
95,144
19.11.2019 17:37:58
-3,600
5ec74bf352cdcda8570a5fef7392a844e1f84fd9
Update Composer.json (Doctrine/ORM 2.7)
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"bolt/common\": \"^2.1.0\",\n\"cocur/slugify\": \"^3.2\",\n\"composer/composer\": \"^1.9\",\n- \"doctrine/annotations\": \"^1.7\",\n- \"doctrine/dbal\": \"^2.10.0\",\n\"doctrine/doctrine-bundle\": \"^1.11\...
PHP
MIT License
bolt/core
Update Composer.json (Doctrine/ORM 2.7)
95,144
19.11.2019 20:03:48
-3,600
5989a4611703e3608bf2d0adaf10d9395633f140
Update a few Dutch Language strings
[ { "change_type": "MODIFY", "old_path": "translations/messages.nl.xlf", "new_path": "translations/messages.nl.xlf", "diff": "<target>Opties</target>\n</segment>\n</unit>\n+ <unit id=\"_KyvT9o\" name=\"general.phrase.no-search-term-provided\">\n+ <segment>\n+ <source>general.phrase.no-search-term-prov...
PHP
MIT License
bolt/core
Update a few Dutch Language strings
95,144
19.11.2019 20:05:15
-3,600
7aed30874b79e00641a99d7af661da3f3d28489a
Implement `__call` magic method on Field, so we can do `record|image.alt`
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field.php", "new_path": "src/Entity/Field.php", "diff": "@@ -95,6 +95,17 @@ class Field implements Translatable, FieldInterface\nreturn implode(', ', $value);\n}\n+ public function __call(string $key = '', array $arguments = [])\n+ {\n+ $value = $th...
PHP
MIT License
bolt/core
Implement `__call` magic method on Field, so we can do `record|image.alt`
95,144
21.11.2019 19:05:32
-3,600
77e81786b674a168d87e7ce3872ebdcc3decf727
Updating composer dependencies (Symfony 4.4)
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"sensio/framework-extra-bundle\": \"^5.4\",\n\"sensiolabs/security-checker\": \"^5.0\",\n\"siriusphp/upload\": \"^2.1\",\n- \"symfony/asset\": \"^4.3\",\n- \"symfony/console\": \"^4.3\",\n- \"symfony/depen...
PHP
MIT License
bolt/core
Updating composer dependencies (Symfony 4.4)
95,144
22.11.2019 07:23:58
-3,600
3151749049f9b3d647a819ca6d8fe6b670bc41d6
Don't mention "Package container-interop/container-interop is abandoned"
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"periodical-tasks\": [\n\"security-checker security:check\"\n]\n+ },\n+ \"replace\": {\n+ \"container-interop/container-interop\": \"*\"\n}\n}\n" }, { "change_type": "MODIFY", "old_path": "symf...
PHP
MIT License
bolt/core
Don't mention "Package container-interop/container-interop is abandoned"
95,185
22.11.2019 20:23:45
-28,800
4b2bc17efc696615941b3c3852c200c7974053c1
Makefile: fixup composer Memory limit errors
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "DC_RUN ?= docker-compose run --rm\n+COMPOSER ?= COMPOSER_MEMORY_LIMIT=-1 composer\n+\n.PHONY: help install server server-stop cache csclear cscheck csfix csfix-tests stancheck test \\\nbehat full-test db-create db-up...
PHP
MIT License
bolt/core
Makefile: fixup composer Memory limit errors
95,144
23.11.2019 13:38:50
-3,600
836c4ee57c28bf29551f93163e9ef7061e27fe28
Updating composer deps, prepare for SF 5 update
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"ext-mbstring\": \"*\",\n\"ext-pdo\": \"*\",\n\"antishov/doctrine-extensions-bundle\": \"^1.4\",\n- \"api-platform/core\": \"^2.4\",\n+ \"api-platform/core\": \"^2.5\",\n\"bolt/common\": \"^2.1.0\",\n\"coc...
PHP
MIT License
bolt/core
Updating composer deps, prepare for SF 5 update
95,144
23.11.2019 17:08:36
-3,600
19e9d0fea6f636a40e955f866f38489bd2c2a364
Add functionality for Extensions to add their own Routes
[ { "change_type": "MODIFY", "old_path": "config/routes/bolt.yaml", "new_path": "config/routes/bolt.yaml", "diff": "@@ -18,3 +18,8 @@ control_panel_async:\ncontrollers:\nresource: '../src/Controller/ImageController.php'\ntype: annotation\n+\n+# Routes added by Extensions get added here, by Bolt\\Exten...
PHP
MIT License
bolt/core
Add functionality for Extensions to add their own Routes
95,144
23.11.2019 18:07:03
-3,600
e85b50723b6c38e0177d988666205106b654f17b
add `addTwigNamespace` method
[ { "change_type": "MODIFY", "old_path": "src/Extension/BaseExtension.php", "new_path": "src/Extension/BaseExtension.php", "diff": "@@ -5,7 +5,6 @@ declare(strict_types=1);\nnamespace Bolt\\Extension;\nuse Bolt\\Configuration\\Config;\n-use Bolt\\Controller\\Frontend\\TemplateController;\nuse Bolt\\Ev...
PHP
MIT License
bolt/core
add `addTwigNamespace` method
95,144
24.11.2019 10:20:17
-3,600
0d1cb7f7c63b33d690878c29d467d541791b1ca3
Make sure contenttypes _always_ have a group
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Parser/ContentTypesParser.php", "new_path": "src/Configuration/Parser/ContentTypesParser.php", "diff": "@@ -181,9 +181,8 @@ class ContentTypesParser extends BaseParser\n*/\nprotected function parseFieldsAndGroups(array $fields): array\n{\n- $...
PHP
MIT License
bolt/core
Make sure contenttypes _always_ have a group
95,144
24.11.2019 10:28:15
-3,600
be55894229b3eb9830a519aceb00065ba4423b6c
Bump `symplify/easy-coding-standard` to v 7
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"symfony/stopwatch\": \"^4.4\",\n\"symfony/web-profiler-bundle\": \"^4.4\",\n\"symfony/web-server-bundle\": \"^4.4\",\n- \"symplify/easy-coding-standard\": \"^6.1.0\"\n+ \"symplify/easy-coding-standard\": ...
PHP
MIT License
bolt/core
Bump `symplify/easy-coding-standard` to v 7
95,144
24.11.2019 12:37:29
-3,600
0d2614c0b7e965efab1c21f63ef8e6a6a51c38d2
Improve fieldtype factory creation
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Content/FieldType.php", "new_path": "src/Configuration/Content/FieldType.php", "diff": "@@ -31,6 +31,7 @@ class FieldType extends Collection\n'allow_twig' => false,\n'allow_html' => false,\n'sanitise' => false,\n+ 'localize' => false,\n]);\n}...
PHP
MIT License
bolt/core
Improve fieldtype factory creation
95,144
24.11.2019 13:13:33
-3,600
63bc22cac5c1045aa0dfc7364731ce028618f0b9
Make sure Fields are Fieldtype
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Parser/ContentTypesParser.php", "new_path": "src/Configuration/Parser/ContentTypesParser.php", "diff": "@@ -7,6 +7,8 @@ namespace Bolt\\Configuration\\Parser;\nuse Bolt\\Common\\Arr;\nuse Bolt\\Common\\Str;\nuse Bolt\\Configuration\\Content\\...
PHP
MIT License
bolt/core
Make sure Fields are Fieldtype
95,144
24.11.2019 13:38:52
-3,600
cb95356dd8c1811e724740d93974f410db329fda
Keep allow_html and sanitise as intended
[ { "change_type": "MODIFY", "old_path": "public/theme/skeleton/custom/test.twig", "new_path": "public/theme/skeleton/custom/test.twig", "diff": "</p>\n<p>\n- Default output for <code>type: html</code>:<br>\n+ Default output for <code>type: textarea</code>:<br>\n<div class=\"box text_textarea\">{{ rec...
PHP
MIT License
bolt/core
Keep allow_html and sanitise as intended
95,144
24.11.2019 13:58:16
-3,600
54c57876bd72007e058ae65fb18a8d3b5a3f1696
Make sure slug is set correctly
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Content/FieldType.php", "new_path": "src/Configuration/Content/FieldType.php", "diff": "@@ -8,18 +8,21 @@ use Tightenco\\Collect\\Support\\Collection;\nclass FieldType extends Collection\n{\n- public function __construct($items = [], $slug = ...
PHP
MIT License
bolt/core
Make sure slug is set correctly
95,144
26.11.2019 18:23:32
-3,600
5034af4c53f33b6946a93376d66119854447b3b4
Only output languageswitcher, if locales have been defined
[ { "change_type": "MODIFY", "old_path": "templates/helpers/_languageselect.html.twig", "new_path": "templates/helpers/_languageselect.html.twig", "diff": "@@ -20,7 +20,7 @@ The current locale is in the Request object, which is an instance of `Symfony\\Co\n{% set class = 'class=\"languageselect_' ~ ty...
PHP
MIT License
bolt/core
Only output languageswitcher, if locales have been defined
95,144
27.11.2019 07:37:28
-3,600
db223a963e54e1c482627d1cbd92859fda6bfcf9
Allow `locale` to be `null` (if locale was removed from existing contenttype)
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field.php", "new_path": "src/Entity/Field.php", "diff": "@@ -238,7 +238,7 @@ class Field implements Translatable, FieldInterface\nreturn $this;\n}\n- public function setLocale(string $locale): void\n+ public function setLocale(?string $locale): void...
PHP
MIT License
bolt/core
Allow `locale` to be `null` (if locale was removed from existing contenttype)
95,144
28.11.2019 07:00:33
-3,600
24082e615354739546a6b03fa2eff37e4c2a2d4b
Minor updates for Kernel.php for SF 4.4
[ { "change_type": "MODIFY", "old_path": "src/Kernel.php", "new_path": "src/Kernel.php", "diff": "@@ -24,7 +24,7 @@ class Kernel extends BaseKernel\n{\nuse MicroKernelTrait;\n- public const CONFIG_EXTS = '.{php,xml,yaml,yml}';\n+ private const CONFIG_EXTS = '.{php,xml,yaml,yml}';\npublic function getC...
PHP
MIT License
bolt/core
Minor updates for Kernel.php for SF 4.4
95,144
28.11.2019 08:35:53
-3,600
5747e01d6213872191ef98f629e752c3abd3b0be
Improvements to fixtures (HTML, Markdown, dates, numbers)
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"bolt/common\": \"^2.1.0\",\n\"cocur/slugify\": \"^3.2\",\n\"composer/composer\": \"^1.9\",\n+ \"davidbadura/faker-markdown-generator\": \"^1.0\",\n\"doctrine/doctrine-bundle\": \"^1.12\",\n\"doctrine/doct...
PHP
MIT License
bolt/core
Improvements to fixtures (HTML, Markdown, dates, numbers)
95,144
28.11.2019 18:23:50
-3,600
098f81f170680c3624ae3bad59a506958abd45a8
Add support for `type:hidden` and `type:data` fields
[ { "change_type": "ADD", "old_path": null, "new_path": "assets/scss/modules/editor/fields/_data.scss", "diff": "+//** Fields | Data\n+\n+.editor--data {\n+\n+ pre {\n+ border: 1px solid #DDD;\n+ padding: 0.5rem;\n+ color: #888;\n+ background: rgba(255, 255, 255, 0.4);\n+ font-size: 0.8rem;\n+ margin:...
PHP
MIT License
bolt/core
Add support for `type:hidden` and `type:data` fields
95,144
28.11.2019 18:36:34
-3,600
eb36dc58eff1346cfee4190b13e454343a29a0f1
Update _data.scss
[ { "change_type": "MODIFY", "old_path": "assets/scss/modules/editor/fields/_data.scss", "new_path": "assets/scss/modules/editor/fields/_data.scss", "diff": "//** Fields | Data\n.editor--data {\n-\npre {\n- border: 1px solid #DDD;\n+ border: 1px solid #ddd;\npadding: 0.5rem;\ncolor: #888;\nbackground:...
PHP
MIT License
bolt/core
Update _data.scss
95,144
28.11.2019 21:44:40
-3,600
556f2cea865dc37324ad05f3775bf343c0e65c5f
Better fixtures even
[ { "change_type": "MODIFY", "old_path": "composer.json", "new_path": "composer.json", "diff": "\"bolt/common\": \"^2.1.0\",\n\"cocur/slugify\": \"^3.2\",\n\"composer/composer\": \"^1.9\",\n- \"davidbadura/faker-markdown-generator\": \"^1.0\",\n\"doctrine/doctrine-bundle\": \"^1.12\",\n\"doctrine/doct...
PHP
MIT License
bolt/core
Better fixtures even
95,144
29.11.2019 20:01:31
-3,600
817fbb6db41181a1bce2024bd30081893aa8c9d4
Have thumbnails create the correct links
[ { "change_type": "MODIFY", "old_path": "src/Twig/ImageExtension.php", "new_path": "src/Twig/ImageExtension.php", "diff": "@@ -101,7 +101,7 @@ class ImageExtension extends AbstractExtension\n*/\npublic function thumbnail($image, int $width = 320, int $height = 240, ?string $location = null, ?string $...
PHP
MIT License
bolt/core
Have thumbnails create the correct links
95,144
01.12.2019 08:33:23
-3,600
a2dfc8efb562a0a81dbc2b58f08231769d10a625
Preparing for beta 5 release
[ { "change_type": "MODIFY", "old_path": "package-lock.json", "new_path": "package-lock.json", "diff": "\"integrity\": \"sha512-8VCoJeeH8tCkzhkpfOkt+abALQkS11OIHhte5MBzYaKMTqK0A3ZAKEUVAffsOklhEv7t0yrQt696Opnu9oAx+w==\"\n},\n\"@vue/test-utils\": {\n- \"version\": \"1.0.0-beta.29\",\n- \"resolved\": \"h...
PHP
MIT License
bolt/core
Preparing for beta 5 release
95,144
01.12.2019 16:17:35
-3,600
17ddf896c2a52d79f7aa766209c2177b948ede52
Controllers in extensions need access to Config and Services
[ { "change_type": "MODIFY", "old_path": "src/Extension/BaseExtension.php", "new_path": "src/Extension/BaseExtension.php", "diff": "@@ -4,24 +4,14 @@ declare(strict_types=1);\nnamespace Bolt\\Extension;\n-use Bolt\\Configuration\\Config;\n-use Bolt\\Event\\Subscriber\\ExtensionSubscriber;\nuse Bolt\\W...
PHP
MIT License
bolt/core
Controllers in extensions need access to Config and Services
95,144
03.12.2019 07:44:21
-3,600
18adb7deec74dfe26b5df3e998a6656504d74b00
Starting work on supporting canonical URLs
[ { "change_type": "ADD", "old_path": null, "new_path": "src/Canonical.php", "diff": "+<?php\n+\n+\n+namespace Bolt;\n+\n+\n+use Bolt\\Configuration\\Config;\n+use GuzzleHttp\\Psr7\\Uri;\n+use Symfony\\Component\\HttpFoundation\\Request;\n+use Symfony\\Component\\HttpFoundation\\RequestStack;\n+use Sy...
PHP
MIT License
bolt/core
Starting work on supporting canonical URLs
95,144
03.12.2019 07:47:41
-3,600
3fa71fa2d7e93c83c35eb9c68795a404c7f6170f
Set filename for configuration files for Extensions correctly
[ { "change_type": "MODIFY", "old_path": "src/Extension/ConfigTrait.php", "new_path": "src/Extension/ConfigTrait.php", "diff": "@@ -56,12 +56,13 @@ trait ConfigTrait\npublic function getConfigFilenames(): array\n{\n$slugify = new Slugify();\n- $base = $slugify->slugify(str_replace('Extension', '', $th...
PHP
MIT License
bolt/core
Set filename for configuration files for Extensions correctly
95,144
03.12.2019 17:14:34
-3,600
0192b1d765178095ecc0179761bde84b3c34cf22
Adding canonical to all frontend pages.
[ { "change_type": "MODIFY", "old_path": "src/Canonical.php", "new_path": "src/Canonical.php", "diff": "<?php\n+declare(strict_types=1);\nnamespace Bolt;\n-\nuse Bolt\\Configuration\\Config;\n-use GuzzleHttp\\Psr7\\Uri;\nuse Symfony\\Component\\HttpFoundation\\Request;\nuse Symfony\\Component\\HttpFou...
PHP
MIT License
bolt/core
Adding canonical to all frontend pages.
95,144
03.12.2019 17:56:44
-3,600
ea15108c64bc4a2971180ed7e22050f66eab7da2
Don't set canonical for 404 pages
[ { "change_type": "MODIFY", "old_path": "src/Canonical.php", "new_path": "src/Canonical.php", "diff": "@@ -140,7 +140,9 @@ class Canonical\npublic function setPath(?string $route = null, array $params = []): void\n{\n- if (! $route) {\n+ if (!$this->request->attributes->get('_route')) {\n+ return;\n+...
PHP
MIT License
bolt/core
Don't set canonical for 404 pages
95,144
04.12.2019 10:23:31
-3,600
11f7871d8c49a03da9dcd33a03215986961eabc0
Add newline to injected snippets.
[ { "change_type": "MODIFY", "old_path": "src/Widget/Injector/HtmlInjector.php", "new_path": "src/Widget/Injector/HtmlInjector.php", "diff": "@@ -64,7 +64,7 @@ class HtmlInjector\n}\n// Invoke the (snippet)Widget\n- $snippet = $widget();\n+ $snippet = $widget() . \"\\n\";\n// If the widget doesn't pro...
PHP
MIT License
bolt/core
Add newline to injected snippets.
95,144
04.12.2019 12:02:34
-3,600
18cfdfab15418b8e9f7c9bc0c8934d1bb5ec72ff
Make `htmllang()` work
[ { "change_type": "MODIFY", "old_path": "src/Twig/LocaleExtension.php", "new_path": "src/Twig/LocaleExtension.php", "diff": "@@ -51,21 +51,19 @@ class LocaleExtension extends AbstractExtension\n$env = ['needs_environment' => true];\nreturn [\n- new TwigFunction('__', [$this, 'translate'], [\n- 'is_sa...
PHP
MIT License
bolt/core
Make `htmllang()` work
95,144
04.12.2019 21:19:19
-3,600
e491a46e70f0bc0f4f682f786a5ecc9944ef6244
No Edit / Delete / Status links if there is no logged in user
[ { "change_type": "MODIFY", "old_path": "src/Entity/ContentExtrasTrait.php", "new_path": "src/Entity/ContentExtrasTrait.php", "diff": "@@ -32,7 +32,7 @@ trait ContentExtrasTrait\n/** @var Content $content */\n$content = $this;\n- return [\n+ return array_filter([\n'title' => $this->contentExtension->...
PHP
MIT License
bolt/core
No Edit / Delete / Status links if there is no logged in user
95,144
04.12.2019 21:20:36
-3,600
0d4845574746638ce27a6d293c68a0f66486dcdf
Allow passing in route into Canonical
[ { "change_type": "MODIFY", "old_path": "src/Canonical.php", "new_path": "src/Canonical.php", "diff": "@@ -63,13 +63,17 @@ class Canonical\n$this->setPort($configUrl['port'] ?? null);\n}\n- public function get(): ?string\n+ public function get(?string $route = null, array $params = []): ?string\n{\n/...
PHP
MIT License
bolt/core
Allow passing in route into Canonical
95,144
05.12.2019 06:23:42
-3,600
08c6534ebfc600ba188d4b3ee4fe96b7973c9148
De-duplicate Locales array
[ { "change_type": "MODIFY", "old_path": "src/Utils/LocaleHelper.php", "new_path": "src/Utils/LocaleHelper.php", "diff": "@@ -86,7 +86,7 @@ class LocaleHelper\n$locales = array_merge($locales, $contentType->get('locales')->all());\n}\n- return $locales;\n+ return array_unique($locales);\n}\nprivate fu...
PHP
MIT License
bolt/core
De-duplicate Locales array
95,144
14.12.2019 10:18:26
-3,600
01bf8b1c77376f0235e712c69ac153dbeb3c0317
Add `onDelete="CASCADE"` for Relations, to delete them properly.
[ { "change_type": "MODIFY", "old_path": "src/Entity/Relation.php", "new_path": "src/Entity/Relation.php", "diff": "@@ -38,7 +38,7 @@ class Relation\n/**\n* @ORM\\ManyToOne(targetEntity=\"Content\", fetch=\"EAGER\")\n- * @ORM\\JoinColumn(nullable=false)\n+ * @ORM\\JoinColumn(nullable=false,onDelete=\"...
PHP
MIT License
bolt/core
Add `onDelete="CASCADE"` for Relations, to delete them properly.
95,144
14.12.2019 10:45:58
-3,600
cc17cebb034c936917f6d7a66a6a963829991484
Don't break on existing records without sets.
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field/SetField.php", "new_path": "src/Entity/Field/SetField.php", "diff": "@@ -34,6 +34,11 @@ class SetField extends Field implements FieldInterface\n$result = [];\n$i = 0;\n+ // If there's no current $fieldDefinitions, we can return early\n+ if (! ...
PHP
MIT License
bolt/core
Don't break on existing records without sets.
95,144
14.12.2019 11:14:56
-3,600
47ec151d5bb6f807782c11ac4b076c32e8dcd99b
Make sure Content factory has an (empty) fields
[ { "change_type": "MODIFY", "old_path": "src/Configuration/Content/ContentType.php", "new_path": "src/Configuration/Content/ContentType.php", "diff": "@@ -39,6 +39,7 @@ class ContentType extends DeepCollection\n'singular_slug' => $name,\n'singular_name' => $name,\n'locales' => [],\n+ 'fields' => new ...
PHP
MIT License
bolt/core
Make sure Content factory has an (empty) fields
95,144
14.12.2019 12:48:50
-3,600
dde9f8b0c89f1d4244ba544f8da8efba439f3fe8
Ensure Canonical is string
[ { "change_type": "MODIFY", "old_path": "src/Canonical.php", "new_path": "src/Canonical.php", "diff": "@@ -50,7 +50,7 @@ class Canonical\n$requestUrl = parse_url($this->request->getSchemeAndHttpHost());\n- $configCanonical = $this->config->get('general/canonical', $this->request->getSchemeAndHttpHost...
PHP
MIT License
bolt/core
Ensure Canonical is string
95,144
14.12.2019 14:09:33
-3,600
b2c14682d4086490746f5b56b37dbf0361ee28af
Show the row, even if no image is present
[ { "change_type": "MODIFY", "old_path": "assets/js/app/listing/Components/Table/Row/index.vue", "new_path": "assets/js/app/listing/Components/Table/Row/index.vue", "diff": ">\n<!-- column thumbnail -->\n<div\n- v-if=\"size === 'normal' && record.extras.image !== null\"\n+ v-if=\"size === 'normal' && ...
PHP
MIT License
bolt/core
Show the row, even if no image is present
95,144
14.12.2019 15:23:12
-3,600
413491cbe8e20fc1f85d70e89d5621830357e1ca
Show all locales in user selection
[ { "change_type": "MODIFY", "old_path": "templates/users/edit.html.twig", "new_path": "templates/users/edit.html.twig", "diff": "{% set localeOptions = [] %}\n- {% for locale in locales() %}\n+ {% for locale in locales(all = true) %}\n{% set localeOptions = localeOptions|merge([\n{\n'key': locale.cod...
PHP
MIT License
bolt/core
Show all locales in user selection
95,144
18.12.2019 12:45:06
-3,600
4ea7e42f6e29f3ef8577fd35984f5ec44cf0d5cf
Sanitize Search text input
[ { "change_type": "MODIFY", "old_path": "src/Controller/Frontend/SearchController.php", "new_path": "src/Controller/Frontend/SearchController.php", "diff": "@@ -7,6 +7,7 @@ namespace Bolt\\Controller\\Frontend;\nuse Bolt\\Controller\\TwigAwareController;\nuse Bolt\\Repository\\ContentRepository;\nuse...
PHP
MIT License
bolt/core
Sanitize Search text input
95,144
22.12.2019 15:28:25
-3,600
e09b692a4281b03c4e49b7059e4aaaf59c5ec06c
Fine-tuning style / markup for Collections
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Collection.vue", "new_path": "assets/js/app/editor/Components/Collection.vue", "diff": "type=\"button\"\n@click=\"addCollectionItem\"\n>\n+ <i class=\"fas fa-fw fa-plus\"></i>\n{{ labels.add_collection_item }}\n</button>\n</div>...
PHP
MIT License
bolt/core
Fine-tuning style / markup for Collections
95,144
23.12.2019 12:59:10
-3,600
d97fb7765ad5c96d1d58866014b63bff6c10bda8
Update _label.html.twig
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/_label.html.twig", "new_path": "templates/_partials/fields/_label.html.twig", "diff": "-{%- if type not in ['checkbox', 'collection'] -%}\n- <label for=\"{{ id }}\">\n+{%- if type != 'checkbox' -%}\n+ <label for=\"{{ id }}\" {% if ty...
PHP
MIT License
bolt/core
Update _label.html.twig
95,144
23.12.2019 20:28:44
-3,600
e2955fe64185a72cd34c734d55ed5895feeae450
Tweaking filelist and imagelist
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/File.vue", "new_path": "assets/js/app/editor/Components/File.vue", "diff": "</div>\n</transition>\n<div class=\"row\">\n- <div class=\"col-8\">\n+ <div class=\"col-12\">\n<div class=\"input-group mb-3\">\n<input :name=\"name + '...
PHP
MIT License
bolt/core
Tweaking filelist and imagelist
95,144
24.12.2019 10:57:46
-3,600
3d55bea99404f8876026866be6f4736ec623b229
Disable test for now.
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Imagelist.vue", "new_path": "assets/js/app/editor/Components/Imagelist.vue", "diff": "<template>\n- <div class=\"editor-imagelist\">\n+ <div class=\"editor__imagelist\">\n<div\nv-for=\"(child, index) in containerImages\"\n:key=\...
PHP
MIT License
bolt/core
Disable test for now.
95,144
25.12.2019 08:43:18
-3,600
735216630890a8ba8df83c254c1205a8ef9f9d95
Fine-tuning a bunch of button styles
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/File.vue", "new_path": "assets/js/app/editor/Components/File.vue", "diff": "<div class=\"btn-toolbar\" role=\"toolbar\">\n<div class=\"btn-group mr-2\" role=\"group\">\n<button\n- class=\"btn btn-sm btn-secondary\"\n+ class=\"bt...
PHP
MIT License
bolt/core
Fine-tuning a bunch of button styles
95,144
26.12.2019 13:20:44
-3,600
d1638adadde56f17d0bfbf6f623bc74478104a47
Minor fix: Keep track of alt-attribute
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Image.vue", "new_path": "assets/js/app/editor/Components/Image.vue", "diff": "@@ -171,7 +171,7 @@ export default {\nprogress: 0,\nfilenameData: this.filename,\nthumbnailData: this.thumbnail,\n- altData: this.data,\n+ altData: th...
PHP
MIT License
bolt/core
Minor fix: Keep track of alt-attribute
95,144
28.12.2019 15:02:43
-3,600
834de255a0b75bd0273bf8c682835233e0819c31
Make Filelist and Imagelist work in frontend
[ { "change_type": "MODIFY", "old_path": "templates/helpers/_field_blocks.twig", "new_path": "templates/helpers/_field_blocks.twig", "diff": "</div>\n{% endblock %}\n-{# Sub-block for 'imagelist' fields #}\n-{% block imagelist_field %}\n- <div class=\"bolt-imagelist\">\n- {% for image in field %}\n- <...
PHP
MIT License
bolt/core
Make Filelist and Imagelist work in frontend
95,144
28.12.2019 15:42:42
-3,600
5839a0337243eef41b3c78f8b2078aef79bc9866
Make Filelist work in frontend
[ { "change_type": "MODIFY", "old_path": "src/Entity/Field/FilelistField.php", "new_path": "src/Entity/Field/FilelistField.php", "diff": "@@ -18,16 +18,41 @@ class FilelistField extends Field implements FieldInterface\nreturn 'filelist';\n}\n+ /**\n+ * Returns the value, as is in the database. Useful ...
PHP
MIT License
bolt/core
Make Filelist work in frontend
95,144
28.12.2019 17:22:48
-3,600
efe9e2a0ac81a430503897f79de18058a5cde2dd
Update imagelist.html.twig
[ { "change_type": "MODIFY", "old_path": "templates/_partials/fields/imagelist.html.twig", "new_path": "templates/_partials/fields/imagelist.html.twig", "diff": "{% set extensions = field.definition.get('extensions')|default('') %}\n<editor-imagelist\n- :images='{{ field.value|json_encode }}'\n+ :imag...
PHP
MIT License
bolt/core
Update imagelist.html.twig
95,144
28.12.2019 18:33:20
-3,600
3dc05e204d5eae59c21cda489c710aaa5027e8e9
Add note about sets
[ { "change_type": "MODIFY", "old_path": "templates/helpers/_fields.twig", "new_path": "templates/helpers/_fields.twig", "diff": "{% endif %}\n{# Finally, the collections, filelists and imagelists #}\n- {% if type in ['collection', 'filelist', 'imagelist'] and (type not in exclude|default([])) %}\n+ {...
PHP
MIT License
bolt/core
Add note about sets
95,144
29.12.2019 14:57:44
-3,600
5e8f1ee8ba14568fd82e6648f5038ec490504170
Automatically Publish and Depublish Timed records
[ { "change_type": "ADD", "old_path": null, "new_path": "src/Event/Subscriber/TimedPublishSubscriber.php", "diff": "+<?php\n+\n+declare(strict_types=1);\n+\n+namespace Bolt\\Event\\Subscriber;\n+\n+use Doctrine\\ORM\\EntityManagerInterface;\n+use Symfony\\Component\\EventDispatcher\\EventSubscriberInt...
PHP
MIT License
bolt/core
Automatically Publish and Depublish Timed records
95,144
30.12.2019 18:23:03
-3,600
f55a64778e2b705bdce53b1093778002fb8ffd1a
A number of fixes for timezone handling, and the selectors in the editor.
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Date.vue", "new_path": "assets/js/app/editor/Components/Date.vue", "diff": "</flat-pickr>\n<div class=\"input-group-append\">\n<button\n- class=\"btn btn-secondary\"\n+ class=\"btn btn-tertiary\"\n:class=\"{ 'btn-outline-seconda...
PHP
MIT License
bolt/core
A number of fixes for timezone handling, and the selectors in the editor.
95,144
31.12.2019 13:08:01
-3,600
ca8d7d1a63c5ce129107d9eddde608d663f87a01
Updating NPM deps, and minor tweaks.
[ { "change_type": "MODIFY", "old_path": "assets/js/app/editor/Components/Slug.vue", "new_path": "assets/js/app/editor/Components/Slug.vue", "diff": "<div class=\"input-group-append\">\n<button\ntype=\"button\"\n- class=\"btn dropdown-toggle\"\n+ class=\"btn btn-tertiary dropdown-toggle\"\ndata-toggle...
PHP
MIT License
bolt/core
Updating NPM deps, and minor tweaks.
95,144
03.01.2020 20:25:23
-3,600
9838fa2aec6be8689eb93941d9cf3b2eeeff181c
Prevent breakage when switching to PROD, with {{ dump }} in the templates
[ { "change_type": "MODIFY", "old_path": "config/services.yaml", "new_path": "config/services.yaml", "diff": "@@ -67,7 +67,9 @@ services:\n- { name: knp_menu.menu_builder, method: createAdminMenu, alias: admin_menu } # The alias is what is used to retrieve the menu\nBolt\\Menu\\BackendMenuBuilderInter...
PHP
MIT License
bolt/core
Prevent breakage when switching to PROD, with {{ dump }} in the templates
95,144
03.01.2020 16:15:26
-3,600
ab438c6cd00a92fe9567ce773db1d51bd4a33d29
Add logging (viewable in backend), next to exisiting Monolog file-based logging
[ { "change_type": "MODIFY", "old_path": "config/packages/dev/monolog.yaml", "new_path": "config/packages/dev/monolog.yaml", "diff": "monolog:\n+ channels: ['db']\nhandlers:\nmain:\ntype: stream\n@@ -17,3 +18,7 @@ monolog:\ntype: console\nprocess_psr_3_messages: false\nchannels: ['!event', '!doctrine'...
PHP
MIT License
bolt/core
Add logging (viewable in backend), next to exisiting Monolog file-based logging
95,144
04.01.2020 14:24:29
-3,600
48aec6758eae7f7a109a05660eb5a7a60d1f5e52
Working on Log Viewer
[ { "change_type": "MODIFY", "old_path": "config/packages/prod/monolog.yaml", "new_path": "config/packages/prod/monolog.yaml", "diff": "monolog:\n+ channels: ['db']\nhandlers:\nmain:\ntype: fingers_crossed\n@@ -13,3 +14,7 @@ monolog:\ntype: console\nprocess_psr_3_messages: false\nchannels: ['!event', ...
PHP
MIT License
bolt/core
Working on Log Viewer
95,144
04.01.2020 14:42:23
-3,600
a15c132c8eb4af8c921bad4d3f835cb002704328
Create monolog.yaml
[ { "change_type": "ADD", "old_path": null, "new_path": "config/packages/test/monolog.yaml", "diff": "+monolog:\n+ channels: ['db']\n+ handlers:\n+ db:\n+ channels: ['db']\n+ type: service\n+ id: Bolt\\Log\\LogHandler\n\\ No newline at end of file\n" } ]
PHP
MIT License
bolt/core
Create monolog.yaml