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,180 | 23.10.2018 16:58:51 | -7,200 | e729bcf6879289aba5fb1ace05e0fa906b52251c | added upload progress | [
{
"change_type": "MODIFY",
"old_path": "assets/js/Components/Editor/Image.vue",
"new_path": "assets/js/Components/Editor/Image.vue",
"diff": "</button>\n</div>\n</div>\n+ <div class=\"progress mt-3\" v-if=\"progress > 0\">\n+ <div\n+ class=\"progress-bar progress-bar-striped progress-bar-animated\"\... | PHP | MIT License | bolt/core | added upload progress |
95,144 | 27.10.2018 07:52:35 | -7,200 | 0b6feda4372687e54221935fdd0127a2dde589f5 | Refactoring routing | [
{
"change_type": "MODIFY",
"old_path": "config/routes.yaml",
"new_path": "config/routes.yaml",
"diff": "-# These lines define a route using YAML configuration. The controller used by\n-# the route (FrameworkBundle:Template:template) is a convenient shortcut when\n-# the template can be rendered with... | PHP | MIT License | bolt/core | Refactoring routing |
95,144 | 27.10.2018 08:00:23 | -7,200 | f9d75cac942979a6c966ec89b35324faf50b80c0 | Renaming Namespace | [
{
"change_type": "MODIFY",
"old_path": "config/routes.yaml",
"new_path": "config/routes.yaml",
"diff": "@@ -24,6 +24,6 @@ frontend:\n# These are the routes defining the Bolt Control Panel (\"backend\"). It's common\n# to modify the `prefix` so the Control Panel can be accessed at a custom URL.\ncont... | PHP | MIT License | bolt/core | Renaming Namespace |
95,144 | 27.10.2018 16:15:09 | -7,200 | 127740f8553df41d564ffd0d0fd92a8e49c7feda | Working on routing. | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/Controller/Frontend/DetailController.php",
"diff": "+<?php\n+\n+declare(strict_types=1);\n+\n+namespace Bolt\\Controller\\Frontend;\n+\n+use Bolt\\Controller\\BaseController;\n+use Bolt\\Repository\\ContentRepository;\n+use Bolt\\Repository\... | PHP | MIT License | bolt/core | Working on routing. |
95,144 | 27.10.2018 19:01:04 | -7,200 | 90edf21a1700727345a95129fcf178bb0199d20c | Tweaking routing | [
{
"change_type": "MODIFY",
"old_path": "src/Controller/Frontend/DetailController.php",
"new_path": "src/Controller/Frontend/DetailController.php",
"diff": "@@ -13,7 +13,11 @@ use Symfony\\Component\\Routing\\Annotation\\Route;\nclass DetailController extends BaseController\n{\n/**\n- * @Route(\"/{co... | PHP | MIT License | bolt/core | Tweaking routing |
95,144 | 27.10.2018 19:09:40 | -7,200 | a2d0a387e15aee019ed4c7aebc15acc5dc132eeb | Removing 'console.log()' | [
{
"change_type": "MODIFY",
"old_path": "assets/js/Components/Admin/Sidebar.vue",
"new_path": "assets/js/Components/Admin/Sidebar.vue",
"diff": "@@ -66,7 +66,6 @@ export default {\nname: \"admin-sidebar\",\nprops: [\"brand\", \"menu\", \"version\"],\ncreated() {\n- console.log(this.menu);\nconst size... | PHP | MIT License | bolt/core | Removing 'console.log()' |
95,144 | 27.10.2018 19:14:01 | -7,200 | 5c1024df4fb96fd6f6b8a33d636a82f04c797757 | Fixing breakage for non-existing thumbnails. | [
{
"change_type": "MODIFY",
"old_path": "src/Twig/Extension/ImageExtension.php",
"new_path": "src/Twig/Extension/ImageExtension.php",
"diff": "@@ -54,6 +54,10 @@ class ImageExtension extends AbstractExtension\n$filename = $image;\n}\n+ if (empty($filename)) {\n+ return '';\n+ }\n+\n$secret = $this->c... | PHP | MIT License | bolt/core | Fixing breakage for non-existing thumbnails. |
95,144 | 27.10.2018 20:21:41 | -7,200 | f084110e7f16e22c6480c5e93a1e67856bf7d082 | Make sure floatfield and imagefield have correct output | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/Field/FloatField.php",
"new_path": "src/Entity/Field/FloatField.php",
"diff": "@@ -12,4 +12,13 @@ use Doctrine\\ORM\\Mapping as ORM;\n*/\nclass FloatField extends Field\n{\n+ public function __toString(): string\n+ {\n+ return floatval($this->value)... | PHP | MIT License | bolt/core | Make sure floatfield and imagefield have correct output |
95,144 | 28.10.2018 06:18:40 | -3,600 | 3ee69ca941f62c8d821b2b83cd7e86c9b8c2ac42 | Make "Showcases" work. Fixes | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/Field/FloatField.php",
"new_path": "src/Entity/Field/FloatField.php",
"diff": "@@ -14,7 +14,7 @@ class FloatField extends Field\n{\npublic function __toString(): string\n{\n- return floatval($this->value);\n+ return (string) floatval($this->value);\... | PHP | MIT License | bolt/core | Make "Showcases" work. Fixes #55 |
95,144 | 28.10.2018 20:57:01 | -3,600 | 17aa00c2551ee57693b0c2d00c082d5d9a728d29 | Working on frontend rendering. | [
{
"change_type": "MODIFY",
"old_path": "config/bolt/contenttypes.yml",
"new_path": "config/bolt/contenttypes.yml",
"diff": "@@ -75,6 +75,7 @@ pages:\nbody:\ntype: html\nheight: 300px\n+ allowtwig: true\ntextarea:\ntype: textarea\npostfix: \"This is a plain text area. the contents will <em><strong>no... | PHP | MIT License | bolt/core | Working on frontend rendering. |
95,168 | 29.10.2018 12:09:39 | -3,600 | 6f3df65153ed10f5fa0fab446a26e2a408c6b858 | GET operations are always public | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/Content.php",
"new_path": "src/Entity/Content.php",
"diff": "@@ -19,8 +19,8 @@ use Symfony\\Component\\Serializer\\Annotation\\Groups;\n/**\n* @ApiResource(\n* normalizationContext={\"groups\"={\"public\"}},\n- * collectionOperations={\"get\"={\"acc... | PHP | MIT License | bolt/core | GET operations are always public |
95,168 | 29.10.2018 12:11:15 | -3,600 | b17dce3fc4d3f6a0416b6fb4087e139507623ad2 | Set Field Entity with GET operation and public properties | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/Field.php",
"new_path": "src/Entity/Field.php",
"diff": "@@ -8,9 +8,14 @@ use ApiPlatform\\Core\\Annotation\\ApiResource;\nuse Bolt\\Content\\FieldType;\nuse Bolt\\Content\\FieldTypeFactory;\nuse Doctrine\\ORM\\Mapping as ORM;\n+use Symfony\\Compone... | PHP | MIT License | bolt/core | Set Field Entity with GET operation and public properties |
95,168 | 29.10.2018 12:28:18 | -3,600 | 92d0179ca020dddf548e65f32f0654fc432684be | Set Taxonomy Entity with GET operation and public properties | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/Taxonomy.php",
"new_path": "src/Entity/Taxonomy.php",
"diff": "@@ -8,9 +8,14 @@ use ApiPlatform\\Core\\Annotation\\ApiResource;\nuse Doctrine\\Common\\Collections\\ArrayCollection;\nuse Doctrine\\Common\\Collections\\Collection;\nuse Doctrine\\ORM\\... | PHP | MIT License | bolt/core | Set Taxonomy Entity with GET operation and public properties |
95,168 | 29.10.2018 14:19:27 | -3,600 | 39274467203c602aac1e6a991bd66b87e1438dd4 | Add Controller for Bolt's About page | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "src/Controller/Backend/GeneralController.php",
"diff": "+<?php declare(strict_types=1);\n+\n+namespace Bolt\\Controller\\Backend;\n+\n+use Bolt\\Controller\\BaseController;\n+use Symfony\\Component\\Routing\\Annotation\\Route;\n+\n+class General... | PHP | MIT License | bolt/core | Add Controller for Bolt's About page |
95,132 | 29.10.2018 18:55:54 | -3,600 | 056a59a899abc4cad1b55b761fbe3ebbda39da8b | Add `resolve` again (for SQLite) | [
{
"change_type": "MODIFY",
"old_path": "config/bolt/config.yaml",
"new_path": "config/bolt/config.yaml",
"diff": "#\n# If you're trying out Bolt, just keep it set to SQLite for now.\ndatabase:\n- url: '%env(DATABASE_URL)%'\n+ url: '%env(resolve:DATABASE_URL)%'\n# The name of the website\nsitename: A... | PHP | MIT License | bolt/core | Add `resolve` again (for SQLite) (#59) |
95,180 | 29.10.2018 21:34:57 | -3,600 | 5f7730fddb88df9561211ae5749c29dc10479a51 | fixed json malformed | [
{
"change_type": "MODIFY",
"old_path": "package.json",
"new_path": "package.json",
"diff": "\"lint\": \"eslint --ext .js,.vue, assets\",\n\"lint-fix\": \"eslint --ext .js,.vue, assets --fix\",\n\"serve\": \"encore dev-server --port=8001 --progress --disable-host-check\",\n- \"build\": \"encore produ... | PHP | MIT License | bolt/core | fixed json malformed |
95,144 | 30.10.2018 08:47:02 | -3,600 | e9735adb5a5670617b4d6cf1241b8994bb00c832 | Make Bolt version in sidebar link to /about. | [
{
"change_type": "MODIFY",
"old_path": "assets/js/Components/Admin/Sidebar.vue",
"new_path": "assets/js/Components/Admin/Sidebar.vue",
"diff": "</div>\n<button class=\"admin__sidebar--slim\" @click=\"slimMenu()\"><i class=\"fas fa-arrows-alt-h\"></i></button>\n<footer class=\"admin__sidebar--footer\... | PHP | MIT License | bolt/core | Make Bolt version in sidebar link to /about. |
95,144 | 30.10.2018 15:11:01 | -3,600 | 48df687a4c68db58c5244592eb0a1a5cf0d8ba67 | Fix display of magic values | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/ContentMagicTraits.php",
"new_path": "src/Entity/ContentMagicTraits.php",
"diff": "@@ -32,7 +32,7 @@ trait ContentMagicTraits\n// Prefer a field with $name\nforeach ($this->fields as $field) {\nif ($field->getName() === $name) {\n- return new \\Twig... | PHP | MIT License | bolt/core | Fix display of magic values |
95,144 | 31.10.2018 06:13:32 | -3,600 | 087aa5350df9bd18681b10b79f4323c7e75f0260 | Updating composer.json and lock shizzle | [
{
"change_type": "MODIFY",
"old_path": "composer.json",
"new_path": "composer.json",
"diff": "\"@auto-scripts\"\n],\n\"post-update-cmd\": [\n- \"@auto-scripts\"\n+ \"@auto-scripts\",\n+ \"npm install\",\n+ \"npm run build\"\n]\n},\n\"conflict\": {\n"
},
{
"change_type": "MODIFY",
"old_pa... | PHP | MIT License | bolt/core | Updating composer.json and lock shizzle |
95,144 | 01.11.2018 07:42:58 | -3,600 | af375966574e3bc452f7bc862fe43e2d60a8f996 | Refactor out ContentTypeFactory and FieldTypeFactory | [
{
"change_type": "MODIFY",
"old_path": "src/Content/ContentType.php",
"new_path": "src/Content/ContentType.php",
"diff": "@@ -12,4 +12,25 @@ final class ContentType extends Collection\n{\nreturn $this->get($name);\n}\n+\n+ /**\n+ * @param string $name\n+ * @param Collection $contenttypesconfig\n+ *\... | PHP | MIT License | bolt/core | Refactor out ContentTypeFactory and FieldTypeFactory |
95,144 | 01.11.2018 09:22:01 | -3,600 | 616669592aea1cc473bec5b8d8d51af2f9058b31 | Some PHPStan findings. | [
{
"change_type": "MODIFY",
"old_path": "src/Controller/Async/News.php",
"new_path": "src/Controller/Async/News.php",
"diff": "@@ -137,7 +137,7 @@ final class News\nforeach ($fetchedNewsItems as $item) {\n$type = isset($item->type) ? $item->type : 'information';\nif (!isset($news[$type])\n- && (empty... | PHP | MIT License | bolt/core | Some PHPStan findings. |
95,180 | 01.11.2018 11:56:45 | -3,600 | 7f435a6d0ae20a8edc441afedd6d5a4ff6caea6e | added base functionality for theming | [
{
"change_type": "MODIFY",
"old_path": "assets/js/bolt.js",
"new_path": "assets/js/bolt.js",
"diff": "@@ -20,8 +20,8 @@ Vue.prototype.$axios = Axios;\n/**\n* Loop Static Assets\n*/\n-const imagesCtx = require.context('../static/', true, /\\.(png|jpg|jpeg|gif|ico|svg|webp)$/);\n-imagesCtx.keys().forE... | PHP | MIT License | bolt/core | added base functionality for theming |
95,180 | 01.11.2018 18:37:51 | -3,600 | 56bf02ee1d977a4004ca5d035731465c730b3341 | removed brand | [
{
"change_type": "MODIFY",
"old_path": "assets/js/Components/Admin/Sidebar.vue",
"new_path": "assets/js/Components/Admin/Sidebar.vue",
"diff": "<template>\n<nav class=\"admin__sidebar--nav\">\n- <a class=\"admin__sidebar--brand\" href=\"/bolt/\">\n- <img :src=\"brandFull\" alt=\"Bolt CMS\" v-if=\"si... | PHP | MIT License | bolt/core | removed brand |
95,180 | 01.11.2018 19:06:40 | -3,600 | ca44c659a99ccac5bf8da30e7a66ecb4ab077f1d | changed create icon to magic | [
{
"change_type": "MODIFY",
"old_path": "assets/js/Components/Admin/Sidebar.vue",
"new_path": "assets/js/Components/Admin/Sidebar.vue",
"diff": "<ul class=\"link--menu\">\n<li v-if=\"item.link_new !== null\" class=\"link--create\">\n<a :href=\"item.link_new\">\n- <i class=\"fas fa-plus mr-2\"></i><sp... | PHP | MIT License | bolt/core | changed create icon to magic |
95,144 | 02.11.2018 13:08:47 | -3,600 | f51de601fafc83e0735d8efe0a2f65d320ad6c35 | Use our own template | [
{
"change_type": "MODIFY",
"old_path": "templates/_base/layout.twig",
"new_path": "templates/_base/layout.twig",
"diff": "<nav id=\"toolbar\" class=\"admin__toolbar\">\n<admin-toolbar\n:menu=\"{{ sidebarmenu() }}\"\n- user=\"{{user}}\"\n- site-name=\"{{config.get('general/sitename')}}\"\n+ user=\"{{... | PHP | MIT License | bolt/core | Use our own template |
95,144 | 02.11.2018 16:14:24 | -3,600 | 7b90a11781efba04d42f8f3b1078480b87037351 | Wrapping up Localisation | [
{
"change_type": "MODIFY",
"old_path": "src/Controller/Backend/UserController.php",
"new_path": "src/Controller/Backend/UserController.php",
"diff": "@@ -32,6 +32,10 @@ class UserController extends BaseController\n$this->getDoctrine()->getManager()->flush();\n$this->addFlash('success', 'user.updated... | PHP | MIT License | bolt/core | Wrapping up Localisation |
95,144 | 02.11.2018 21:23:14 | -3,600 | 3251ac099cbe5a5defdec5127aed489f86a3dd4d | Working on L10n | [
{
"change_type": "MODIFY",
"old_path": "src/Content/MenuBuilder.php",
"new_path": "src/Content/MenuBuilder.php",
"diff": "@@ -10,6 +10,7 @@ use Bolt\\Repository\\ContentRepository;\nuse Knp\\Menu\\FactoryInterface;\nuse Symfony\\Component\\Routing\\Generator\\UrlGeneratorInterface;\nuse Symfony\\Com... | PHP | MIT License | bolt/core | Working on L10n |
95,144 | 02.11.2018 21:37:01 | -3,600 | 4e69e481710e3f43589a141cdb6f8b2b2ace1abe | Injecting labels in topbar Vue component | [
{
"change_type": "MODIFY",
"old_path": "templates/_base/layout.twig",
"new_path": "templates/_base/layout.twig",
"diff": "<!-- Admin Toolbar -->\n<nav id=\"toolbar\" class=\"admin__toolbar\">\n+ {% set labels = {\n+ 'about.bolt_documentation': 'about.bolt_documentation'|trans,\n+ 'action.visit_site'... | PHP | MIT License | bolt/core | Injecting labels in topbar Vue component |
95,144 | 03.11.2018 06:38:27 | -3,600 | fd609f2a75ab32a31ed9b04eb9afb0c8c7fc5a57 | Adding `jsonlabels` twig function | [
{
"change_type": "MODIFY",
"old_path": "src/Content/MenuBuilder.php",
"new_path": "src/Content/MenuBuilder.php",
"diff": "@@ -41,6 +41,7 @@ class MenuBuilder\n* @param Stopwatch $stopwatch\n* @param ContentRepository $content\n* @param UrlGeneratorInterface $urlGenerator\n+ * @param TranslatorInterf... | PHP | MIT License | bolt/core | Adding `jsonlabels` twig function |
95,144 | 03.11.2018 07:16:29 | -3,600 | 90dd50291dd804636b02954238f5cf41e1b011a7 | Make checkboxes work | [
{
"change_type": "MODIFY",
"old_path": "src/Controller/Backend/EditRecordController.php",
"new_path": "src/Controller/Backend/EditRecordController.php",
"diff": "@@ -105,6 +105,13 @@ class EditRecordController extends BaseController\n$content->setPublishedAt(new Carbon($post['publishedAt']));\n$cont... | PHP | MIT License | bolt/core | Make checkboxes work |
95,144 | 03.11.2018 08:12:46 | -3,600 | 8f48eab02f8576d5c764e5b36ebb58eb671216ef | Fixed up flashes and textarea | [
{
"change_type": "MODIFY",
"old_path": "assets/scss/layout/_admin.scss",
"new_path": "assets/scss/layout/_admin.scss",
"diff": "@@ -61,10 +61,18 @@ $admin-header-height: 70px;\n&--container{\ndisplay: grid;\ngrid-template-columns: auto $admin-sidebar-width * 1.25;\n- grid-template-areas: \"main asid... | PHP | MIT License | bolt/core | Fixed up flashes and textarea |
95,180 | 03.11.2018 13:25:40 | -3,600 | 7a86bf9d62ea446717ee808115e21d734836e9da | added extra slug functionality | [
{
"change_type": "ADD",
"old_path": "assets/js/Components/Editor/Partials/Helper.vue",
"new_path": "assets/js/Components/Editor/Partials/Helper.vue",
"diff": ""
},
{
"change_type": "ADD",
"old_path": "assets/js/Components/Editor/Partials/Label.vue",
"new_path": "assets/js/Components/... | PHP | MIT License | bolt/core | added extra slug functionality |
95,144 | 03.11.2018 13:31:56 | -3,600 | 425f22f76ba3db817f18d5d97d1bebbcfdf0c982 | Working on Twif filters/functions | [
{
"change_type": "MODIFY",
"old_path": "config/services.yaml",
"new_path": "config/services.yaml",
"diff": "@@ -46,3 +46,6 @@ services:\narguments: [\"@knp_menu.factory\"]\ntags:\n- { name: knp_menu.menu_builder, method: createSidebarMenu, alias: sidebar } # The alias is what is used to retrieve the... | PHP | MIT License | bolt/core | Working on Twif filters/functions |
95,144 | 03.11.2018 14:21:48 | -3,600 | eb968001260766c00ed7764c536a19722259842c | Working on Twig functions / filters | [
{
"change_type": "MODIFY",
"old_path": "src/Helpers/Str.php",
"new_path": "src/Helpers/Str.php",
"diff": "@@ -18,7 +18,7 @@ class Str extends \\Bolt\\Common\\Str\n*\n* @return string\n*/\n- public static function makeSafe($str, $strict = false, $extrachars = '')\n+ public static function makeSafe(st... | PHP | MIT License | bolt/core | Working on Twig functions / filters |
95,180 | 03.11.2018 18:28:23 | -3,600 | ce5026ee0237ae64446208f374d677241965076e | fixed grid issue | [
{
"change_type": "MODIFY",
"old_path": "assets/scss/layout/_admin.scss",
"new_path": "assets/scss/layout/_admin.scss",
"diff": "@@ -61,8 +61,8 @@ $admin-header-height: 70px;\n&--container{\ndisplay: grid;\ngrid-template-columns: auto $admin-sidebar-width * 1.25;\n- grid-template-areas: \"flashes asi... | PHP | MIT License | bolt/core | fixed grid issue |
95,180 | 04.11.2018 12:32:58 | -3,600 | 1f2d48487e46e51ff2f29da3e55eb3e299ef103b | disabled edit when clicking genrate from title in slug component | [
{
"change_type": "MODIFY",
"old_path": "assets/js/Components/Editor/Slug.vue",
"new_path": "assets/js/Components/Editor/Slug.vue",
"diff": "@@ -81,7 +81,8 @@ export default {\n},\ngenerateSlug(){\nconst title = document.querySelector(`input[name='fields[${this.generate}]']`).value;\n- const slug = t... | PHP | MIT License | bolt/core | disabled edit when clicking genrate from title in slug component |
95,180 | 04.11.2018 12:34:08 | -3,600 | feff0e1a3bdb360eaa3604d1c9adf8370f64e9cc | ran as function instead | [
{
"change_type": "MODIFY",
"old_path": "assets/js/Components/Editor/Slug.vue",
"new_path": "assets/js/Components/Editor/Slug.vue",
"diff": "@@ -82,9 +82,9 @@ export default {\ngenerateSlug(){\nconst title = document.querySelector(`input[name='fields[${this.generate}]']`).value;\nconst slug = this.$o... | PHP | MIT License | bolt/core | ran as function instead |
95,180 | 04.11.2018 12:35:33 | -3,600 | 639f37ae243f02cdcb442b6134a4ec1d0207f5ea | fixed slug fuckup | [
{
"change_type": "MODIFY",
"old_path": "assets/js/Components/Editor/Slug.vue",
"new_path": "assets/js/Components/Editor/Slug.vue",
"diff": "@@ -84,7 +84,10 @@ export default {\nconst slug = this.$options.filters.slugify(title);\nthis.val = slug;\nthis.$root.$emit('generate-from-title', true);\n- ret... | PHP | MIT License | bolt/core | fixed slug fuckup |
95,180 | 04.11.2018 12:55:07 | -3,600 | 8bfc6dee46dcb126c5a22b5a90fddca1e2295ae8 | Added class binding to text input | [
{
"change_type": "MODIFY",
"old_path": "templates/editcontent/fields/_base.twig",
"new_path": "templates/editcontent/fields/_base.twig",
"diff": "{% if not class|default() %}\n{% set class = field.definition.class|default() %}\n{% endif %}\n-{% set class = \"form-control \" ~ class %}\n+\n+{% set cl... | PHP | MIT License | bolt/core | Added class binding to text input |
95,180 | 05.11.2018 10:15:23 | -3,600 | 5d2efbd930b1fceb09c168f9c21de82d109ddc44 | added large view option to row | [
{
"change_type": "MODIFY",
"old_path": "assets/js/Components/Listing/Filter.vue",
"new_path": "assets/js/Components/Listing/Filter.vue",
"diff": "<template>\n<ul class=\"listing__filter--controls\">\n<li>\n+ <button class=\"control--button\" :class=\"{'is-active': selecting}\" @click=\"filterButton(... | PHP | MIT License | bolt/core | added large view option to row |
95,180 | 05.11.2018 12:18:08 | -3,600 | 586763c99860face089e6dba7c82eb6a0d84e9ae | added selecting base functionality and dashboard/ct logic | [
{
"change_type": "MODIFY",
"old_path": "assets/js/Components/Listing/Filter.vue",
"new_path": "assets/js/Components/Listing/Filter.vue",
"diff": "<template>\n<ul class=\"listing__filter--controls\">\n- <li>\n- <button class=\"control--button\" :class=\"{'is-active': selecting}\" @click=\"filterButto... | PHP | MIT License | bolt/core | added selecting base functionality and dashboard/ct logic |
95,180 | 05.11.2018 13:03:22 | -3,600 | 07386d06d126aa700aac3368deffcaebc253c9fa | added base multiselect functionality | [
{
"change_type": "MODIFY",
"old_path": "assets/js/Components/Listing/Row.vue",
"new_path": "assets/js/Components/Listing/Row.vue",
"diff": "<template>\n- <transition-group name=\"quickeditor\" tag=\"div\" class=\"listing--container\" :class=\"{'is-dahsboard': type === 'dashboard'}\">\n+ <transition-... | PHP | MIT License | bolt/core | added base multiselect functionality |
95,180 | 05.11.2018 16:13:09 | -3,600 | f8fc02890fbff03ce70873d93011b7fdafcfed2d | fixed row width | [
{
"change_type": "MODIFY",
"old_path": "assets/scss/modules/listing/_row.scss",
"new_path": "assets/scss/modules/listing/_row.scss",
"diff": "@@ -57,7 +57,7 @@ $checkbox-row-width: 30px;\ndisplay: flex;\nalign-items: center;\n&.is-details{\n- max-width: 45%;\n+ max-width: 40%;\nstrong{\nwhite-space:... | PHP | MIT License | bolt/core | fixed row width |
95,144 | 05.11.2018 20:32:27 | -3,600 | 6fd7f6cbe49b25f15cc4347a6bfb46218c407442 | Working on twig tags. | [
{
"change_type": "MODIFY",
"old_path": "config/services.yaml",
"new_path": "config/services.yaml",
"diff": "@@ -31,11 +31,6 @@ services:\nresource: '../src/Controller'\ntags: ['controller.service_arguments']\n- Bolt\\Twig\\Runtime\\:\n- resource: '../src/Twig/Runtime/*'\n- public: false\n- tags: ['t... | PHP | MIT License | bolt/core | Working on twig tags. |
95,144 | 05.11.2018 21:19:07 | -3,600 | fdf4daf4cafc2767040de5d75c363ec709495b1c | Adding `jsonrecords()` twig function. | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/Content.php",
"new_path": "src/Entity/Content.php",
"diff": "@@ -168,6 +168,33 @@ class Content\nreturn $this->contentTypeDefinition;\n}\n+ /**\n+ * @return array\n+ */\n+ public function getSummary(): array\n+ {\n+ $summary = [\n+ 'title' => $this-... | PHP | MIT License | bolt/core | Adding `jsonrecords()` twig function. |
95,168 | 06.11.2018 16:14:39 | -3,600 | 4f92025d0b85e3eace13285d91b82df5ffceed39 | Set MaxDepth in Content Entity $fields property | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/Content.php",
"new_path": "src/Entity/Content.php",
"diff": "@@ -14,10 +14,12 @@ use Doctrine\\Common\\Collections\\Collection;\nuse Doctrine\\ORM\\Mapping as ORM;\nuse Symfony\\Component\\Routing\\Generator\\UrlGeneratorInterface;\nuse Symfony\\Com... | PHP | MIT License | bolt/core | Set MaxDepth in Content Entity $fields property |
95,168 | 06.11.2018 16:30:43 | -3,600 | 465369c1fdafa34570f12be9ddfd662dbafc29da | Remove fetchEager attribute | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/Content.php",
"new_path": "src/Entity/Content.php",
"diff": "@@ -18,7 +18,6 @@ use Symfony\\Component\\Serializer\\Annotation\\MaxDepth;\n/**\n* @ApiResource(\n- * attributes={\"fetchEager\": true},\n* normalizationContext={\"groups\"={\"public\"}, ... | PHP | MIT License | bolt/core | Remove fetchEager attribute |
95,144 | 06.11.2018 21:19:45 | -3,600 | 4bbbbe6156b48e445f2524cd0af67352ee39add1 | Updating Lock files | [
{
"change_type": "MODIFY",
"old_path": "composer.lock",
"new_path": "composer.lock",
"diff": "{\n\"_readme\": [\n\"This file locks the dependencies of your project to a known state\",\n- \"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file\",\n+ \"Read mo... | PHP | MIT License | bolt/core | Updating Lock files |
95,180 | 07.11.2018 10:04:19 | -3,600 | d7124a9faae5f0e0254148002a50346bede86695 | added hashes to url for editor tabs | [
{
"change_type": "MODIFY",
"old_path": "assets/js/bolt.js",
"new_path": "assets/js/bolt.js",
"diff": "@@ -25,6 +25,8 @@ import $ from 'jquery';\nwindow.$ = $;\nwindow.jQuery = $;\n+import './helpers/bootstrap';\n+\n/**\n* Vue Components\n*/\n"
},
{
"change_type": "ADD",
"old_path": null,... | PHP | MIT License | bolt/core | added hashes to url for editor tabs |
95,144 | 07.11.2018 15:39:52 | -3,600 | ced3c0072d328fe4b09bcd8496e0214231de0a12 | Move Fieldfactory into Entity | [
{
"change_type": "DELETE",
"old_path": "src/Content/FieldFactory.php",
"new_path": null,
"diff": "-<?php\n-\n-declare(strict_types=1);\n-\n-namespace Bolt\\Content;\n-\n-use Bolt\\Entity\\Field;\n-\n-final class FieldFactory\n-{\n- public function __construct()\n- {\n- }\n-\n- /**\n- * @param string... | PHP | MIT License | bolt/core | Move Fieldfactory into Entity |
95,144 | 07.11.2018 15:54:14 | -3,600 | a0bc01034b78a49b6424bcbe49b4a423b74b58a4 | Adding some more data to "summary" of content. | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/Content.php",
"new_path": "src/Entity/Content.php",
"diff": "@@ -177,6 +177,9 @@ class Content\npublic function getSummary(): array\n{\n$summary = [\n+ 'id' => $this->getid(),\n+ 'contenttype' => $this->getDefinition()->get('slug'),\n+ 'status' => $... | PHP | MIT License | bolt/core | Adding some more data to "summary" of content. |
95,144 | 07.11.2018 15:56:47 | -3,600 | 53210b88d33f1079f2ee84fb85b97001a52ab1b5 | .. And adding the icon to "summary" | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/Content.php",
"new_path": "src/Entity/Content.php",
"diff": "@@ -179,7 +179,6 @@ class Content\n$summary = [\n'id' => $this->getid(),\n'contenttype' => $this->getDefinition()->get('slug'),\n- 'status' => $this->getStatus(),\n'title' => $this->magicT... | PHP | MIT License | bolt/core | .. And adding the icon to "summary" |
95,144 | 08.11.2018 08:22:32 | -3,600 | 8c58572dee0385daf090071dacae37ea737ae196 | Handle checkboxes in an nicer way | [
{
"change_type": "MODIFY",
"old_path": "src/Controller/Backend/EditRecordController.php",
"new_path": "src/Controller/Backend/EditRecordController.php",
"diff": "@@ -105,13 +105,6 @@ class EditRecordController extends BaseController\n$content->setPublishedAt(new Carbon($post['publishedAt']));\n$cont... | PHP | MIT License | bolt/core | Handle checkboxes in an nicer way |
95,180 | 08.11.2018 10:03:14 | -3,600 | 6a64063867385edb08193a81e06960a6f2d0df12 | listing app tidy up | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/listing/Components/Filter.vue",
"new_path": "assets/js/app/listing/Components/Filter.vue",
"diff": "@@ -48,7 +48,6 @@ export default {\nreturn {\nsorting: false,\nselectAll: false,\n- size: \"normal\"\n};\n},\nwatch: {\n@@ -60,19 +59,14 @@ export... | PHP | MIT License | bolt/core | listing app tidy up |
95,180 | 08.11.2018 10:14:52 | -3,600 | 40d43f8c42385aba35e3d354b7f06809984773a5 | made filtering more efficient | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/listing/Components/Filter.vue",
"new_path": "assets/js/app/listing/Components/Filter.vue",
"diff": "<label\nclass=\"custom-control-label\"\nfor=\"selectll\"\n- @click=\"selectAll = !selectAll\"\n+ @click=\"enableSelectAll(!selectAll)\"\n></label>... | PHP | MIT License | bolt/core | made filtering more efficient |
95,180 | 08.11.2018 11:00:37 | -3,600 | e6043ba356c8f94c124c97298c09c67912d4cadd | checkbox logic fixes | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/listing/Components/Filter.vue",
"new_path": "assets/js/app/listing/Components/Filter.vue",
"diff": "<nav class=\"listing__filter\">\n<ul class=\"listing__filter--controls\">\n<li v-if=\"type !== 'dashboard'\">\n- <div class=\"custom-control custo... | PHP | MIT License | bolt/core | checkbox logic fixes |
95,180 | 08.11.2018 11:04:50 | -3,600 | 6af97096583e356fe9de55b4c2236f0d23ee6ec5 | fixed selecall logic | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/listing/Components/Filter.vue",
"new_path": "assets/js/app/listing/Components/Filter.vue",
"diff": "@@ -45,6 +45,12 @@ export default {\nif(size !== null)\nthis.$store.dispatch('general/setRowSize', size)\n},\n+ watch: {\n+ sorting(){\n+ if (this... | PHP | MIT License | bolt/core | fixed selecall logic |
95,180 | 08.11.2018 11:12:04 | -3,600 | a6e230e2d56f7a95d4d5197039b7dbe24f2f77d4 | fixed draggable options | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/listing/Components/SelectBox.vue",
"new_path": "assets/js/app/listing/Components/SelectBox.vue",
"diff": "<div class=\"card mb-3\" v-if=\"selectedCount > 0\">\n<div class=\"card-header\">\n<span class=\"badge is-primary mr-1\">{{selectedCount}}</... | PHP | MIT License | bolt/core | fixed draggable options |
95,180 | 08.11.2018 11:14:05 | -3,600 | 984b0069d39ec6c7517fbaa182bb93d2a23ae51d | fixed get attribute issue | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/listing/Components/Table/Row/_Checkbox.vue",
"new_path": "assets/js/app/listing/Components/Table/Row/_Checkbox.vue",
"diff": "<template>\n- <div class=\"listing--checkbox\" key=\"checkbox\" v-if=\"!sorting\">\n+ <div class=\"listing--checkbox\" k... | PHP | MIT License | bolt/core | fixed get attribute issue |
95,149 | 09.11.2018 13:42:46 | -3,600 | 8b94ea9f8c96a7291b88c314e906f4338696f7f1 | WIP: notifications vue app | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "assets/js/app/notifications/Components/Notification.vue",
"diff": "+<template>\n+ <div class=\"admin__notification-message\">\n+ <transition name=\"notification\">\n+ <div class=\"notification\" :data-type=\"`is-${type}`\" role=\"alert\" v-if=\"... | PHP | MIT License | bolt/core | WIP: notifications vue app |
95,144 | 09.11.2018 16:26:18 | -3,600 | 08cfd0cfb98d7e1ab24585ec09a794056ce691f9 | Having `npm run` in composer.json was a fun idea, but kinda annoying. :-) | [
{
"change_type": "MODIFY",
"old_path": "composer.json",
"new_path": "composer.json",
"diff": "\"@auto-scripts\"\n],\n\"post-update-cmd\": [\n- \"@auto-scripts\",\n- \"npm install\",\n- \"npm run build\"\n+ \"@auto-scripts\"\n]\n},\n\"conflict\": {\n"
},
{
"change_type": "MODIFY",
"old_pa... | PHP | MIT License | bolt/core | Having `npm run` in composer.json was a fun idea, but kinda annoying. :-) |
95,144 | 09.11.2018 17:20:30 | -3,600 | abfbce84621e3eccf6fd8b37df7d8c33e8f9aa3d | Working on overriding templates for bundles | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "assets/scss/vendor/api-platform/api-platform.scss",
"diff": "+\n+/** INCREASE WRAPPER BLOC PADDING **/\n+\n+#swagger-ui.api-platform .wrapper {\n+ padding:0px 60px;\n+}\n+\n+\n+/** INFORMATIONS BLOC **/\n+\n+#swagger-ui.api-platform .information... | PHP | MIT License | bolt/core | Working on overriding templates for bundles |
95,168 | 09.11.2018 17:22:41 | -3,600 | f5231fb1139ec44028965e99331a814738ed1bd4 | Add PUT operation to update Content and Fields Entities | [
{
"change_type": "MODIFY",
"old_path": "src/Entity/Content.php",
"new_path": "src/Entity/Content.php",
"diff": "@@ -19,8 +19,13 @@ use Symfony\\Component\\Serializer\\Annotation\\MaxDepth;\n/**\n* @ApiResource(\n* normalizationContext={\"groups\"={\"public\"}, \"enable_max_depth\"=true},\n+ * denorm... | PHP | MIT License | bolt/core | Add PUT operation to update Content and Fields Entities |
95,149 | 09.11.2018 23:18:52 | -3,600 | 66233d530f7937e06aeced2073aaa13a3e0d83c2 | Render notifications by using css transitions. establish eventhub for app-to-app notifications | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/notifications/Components/Notification.vue",
"new_path": "assets/js/app/notifications/Components/Notification.vue",
"diff": "<template>\n<div class=\"admin__notification-message\">\n- <transition name=\"notification\">\n- <div class=\"notification... | PHP | MIT License | bolt/core | Render notifications by using css transitions. establish eventhub for app-to-app notifications |
95,144 | 10.11.2018 13:34:09 | -3,600 | a690b8cd22b35fd2e49c9d18199fb88566399f4a | Fix link in submenus | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/sidebar/Components/Menu/_SubMenu.vue",
"new_path": "assets/js/app/sidebar/Components/Menu/_SubMenu.vue",
"diff": "</a>\n</li>\n<li v-if=\"item.submenu !== null\" v-for=\"(record, index) in item.submenu\" :key=\"index\">\n- <a :href=\"record.editl... | PHP | MIT License | bolt/core | Fix link in submenus |
95,144 | 10.11.2018 13:34:22 | -3,600 | 6f498509f6058b29d5c2f06f1bedeed9abdb8370 | Generate menu only once | [
{
"change_type": "MODIFY",
"old_path": "src/Twig/ContentHelperExtension.php",
"new_path": "src/Twig/ContentHelperExtension.php",
"diff": "@@ -19,6 +19,9 @@ class ContentHelperExtension extends AbstractExtension\n/** @var TranslatorInterface */\nprivate $translator;\n+ /** @var string */\n+ private $... | PHP | MIT License | bolt/core | Generate menu only once |
95,144 | 10.11.2018 13:34:33 | -3,600 | d6540cb2eef2c3e1b3fd90f9ea605177c7957a7d | Bump FA to 5.5.0 | [
{
"change_type": "MODIFY",
"old_path": "templates/_base/layout.twig",
"new_path": "templates/_base/layout.twig",
"diff": "<title>{{ block('title')|striptags }}</title>\n{% block stylesheets %}\n<link href=\"https://fonts.googleapis.com/css?family=Open+Sans:400,600|Source+Sans+Pro:300,400,600&sub... | PHP | MIT License | bolt/core | Bump FA to 5.5.0 |
95,144 | 10.11.2018 14:16:11 | -3,600 | a7d832a220f9cd74b77dd2be13cfab94d010b0c7 | Adding 'fa-fw' to make icons line up | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/sidebar/Components/Menu/_SubMenu.vue",
"new_path": "assets/js/app/sidebar/Components/Menu/_SubMenu.vue",
"diff": "<ul class=\"link--menu\">\n<li v-if=\"item.link_new !== null\" class=\"link--create\">\n<a :href=\"item.link_new\">\n- <i class=\"fa... | PHP | MIT License | bolt/core | Adding 'fa-fw' to make icons line up |
95,144 | 10.11.2018 14:17:27 | -3,600 | 9aea9e7f1b77a076cbd2ec4d46b783222d227528 | Renaming some config files | [
{
"change_type": "RENAME",
"old_path": "config/bolt/contenttypes.yml",
"new_path": "config/bolt/contenttypes.yaml",
"diff": ""
},
{
"change_type": "RENAME",
"old_path": "config/bolt/menu.yml",
"new_path": "config/bolt/menu.yaml",
"diff": ""
},
{
"change_type": "DELETE",
... | PHP | MIT License | bolt/core | Renaming some config files |
95,144 | 10.11.2018 14:19:03 | -3,600 | 244f45a0048511d63d84f7dc75e5c812cd2d2ddb | Cleaning up and fixing all menu links | [
{
"change_type": "MODIFY",
"old_path": "src/Content/MenuBuilder.php",
"new_path": "src/Content/MenuBuilder.php",
"diff": "@@ -61,13 +61,15 @@ class MenuBuilder\n$menu = $this->factory->createItem('root');\n- $menu->addChild('Dashboard', ['uri' => 'homepage', 'extras' => [\n+ $menu->addChild('Dashboa... | PHP | MIT License | bolt/core | Cleaning up and fixing all menu links |
95,144 | 10.11.2018 16:40:12 | -3,600 | 22b34559d52ec6b9366bbe3fa99ad61937621d2f | Updating composer deps. | [
{
"change_type": "MODIFY",
"old_path": "composer.lock",
"new_path": "composer.lock",
"diff": "},\n{\n\"name\": \"symfony/flex\",\n- \"version\": \"v1.1.1\",\n+ \"version\": \"v1.1.6\",\n\"source\": {\n\"type\": \"git\",\n\"url\": \"https://github.com/symfony/flex.git\",\n- \"reference\": \"9fb60f232... | PHP | MIT License | bolt/core | Updating composer deps. |
95,149 | 10.11.2018 23:02:56 | -3,600 | 701ee9016d2e52b3e4a505f3b96893ef80dc745f | Remove obsolete Notification component | [
{
"change_type": "DELETE",
"old_path": "assets/js/Components/Base/Notification.vue",
"new_path": null,
"diff": "-<template>\n- <transition name=\"notification\">\n- <div class=\"notification\" :data-type=\"`is-${type}`\" role=\"alert\" v-if=\"!close\">\n- <p v-html=\"message\"></p>\n- <button type=\... | PHP | MIT License | bolt/core | Remove obsolete Notification component |
95,149 | 11.11.2018 00:00:35 | -3,600 | ea76949c27f3b666a2c1f07d431612708de16eb8 | Stack multiple notifications verticaly. Fixes | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/notifications/Components/Notification.vue",
"new_path": "assets/js/app/notifications/Components/Notification.vue",
"diff": "<div class=\"admin__notification-message\">\n<transition name=\"notification\" v-on:after-enter=\"show = false\" :duration... | PHP | MIT License | bolt/core | Stack multiple notifications verticaly. Fixes #96 |
95,149 | 11.11.2018 00:03:36 | -3,600 | 264772c865355561da64d46d68a64c83be32b4fc | Remove example for multiple messages | [
{
"change_type": "MODIFY",
"old_path": "templates/_partials/_flash_messages.twig",
"new_path": "templates/_partials/_flash_messages.twig",
"diff": "{% dump(message) %}\n{% endfor %}\n{% endfor %}\n-\n-{#\n-\n-For example, multiple messages\n-\n-<div class=\"notifications\"\n- data-type=\"success\"\n... | PHP | MIT License | bolt/core | Remove example for multiple messages |
95,144 | 11.11.2018 17:03:41 | -3,600 | 7ed56d4fc3c8b5ca8020693a59818a5daca320fe | Doing some work on 1i8n in core. | [
{
"change_type": "MODIFY",
"old_path": "src/Content/MenuBuilder.php",
"new_path": "src/Content/MenuBuilder.php",
"diff": "@@ -66,7 +66,7 @@ class MenuBuilder\n'extras' => [\n'name' => $t->trans('caption.dashboard'),\n'icon' => 'fa-tachometer-alt',\n- ]\n+ ],\n]);\n$menu->addChild('Content', ['extras... | PHP | MIT License | bolt/core | Doing some work on 1i8n in core. |
95,144 | 12.11.2018 07:33:13 | -3,600 | 64e8172f0541f3259a9bc1c9a581d0720d53de9b | Tweaking CSS for localeswitcher | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "assets/scss/modules/editor/_localeswitcher.scss",
"diff": "+//** Editor | Locale Switcher\n+\n+.nav-item.localeswitcher {\n+ margin-left: auto;\n+\n+ .selectize-control {\n+ min-width: 220px;\n+ }\n+}\n\\ No newline at end of file\n"
},
{
... | PHP | MIT License | bolt/core | Tweaking CSS for localeswitcher |
95,180 | 12.11.2018 11:12:29 | -3,600 | 09e596aef17ef03d676efca39334ac3fd4e5b5a5 | added es7 polyfill and removed title app | [
{
"change_type": "DELETE",
"old_path": "assets/js/app/title/Components/Title.vue",
"new_path": null,
"diff": "-<template>\n- <nav class=\"admin__header--topbar\">\n- <h2 class=\"admin__header--title\" v-html=\"title\"></h2>\n- </nav>\n-</template>\n-\n-<script>\n-export default {\n- name: \"bolt-tit... | PHP | MIT License | bolt/core | added es7 polyfill and removed title app |
95,180 | 12.11.2018 18:02:56 | -3,600 | 1c195fd9b3040f8e25f19e7a52a7386ad3eb296c | added svgo optimisation | [
{
"change_type": "MODIFY",
"old_path": "package-lock.json",
"new_path": "package-lock.json",
"diff": "\"dev\": true\n},\n\"coa\": {\n- \"version\": \"1.0.4\",\n- \"resolved\": \"https://registry.npmjs.org/coa/-/coa-1.0.4.tgz\",\n- \"integrity\": \"sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=\",\n+ \"version\":... | PHP | MIT License | bolt/core | added svgo optimisation |
95,180 | 12.11.2018 19:36:48 | -3,600 | 764d334787b8676468985c1501272f1e403e0947 | fixed flag loading | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/editor/Components/General/Language.vue",
"new_path": "assets/js/app/editor/Components/General/Language.vue",
"diff": ">\n<template slot=\"singleLabel\" slot-scope=\"props\">\n<span\n- class=\"flag-icon mr-1\"\n- :class=\"`flag-icon-${props.option... | PHP | MIT License | bolt/core | fixed flag loading |
95,168 | 13.11.2018 13:59:28 | -3,600 | 5057e81d7db63e594b1bb8331334f1e4e9bef9b3 | Split methods(GET,POST) for 'profile_edit' route | [
{
"change_type": "MODIFY",
"old_path": "src/Controller/Backend/UserController.php",
"new_path": "src/Controller/Backend/UserController.php",
"diff": "@@ -7,10 +7,13 @@ namespace Bolt\\Controller\\Backend;\nuse Bolt\\Controller\\BaseController;\nuse Bolt\\Form\\ChangePasswordType;\nuse Bolt\\Form\\Us... | PHP | MIT License | bolt/core | Split methods(GET,POST) for 'profile_edit' route |
95,180 | 13.11.2018 15:45:33 | -3,600 | a7500c38c18991dc482d9cea7450b6eb21238636 | Added in Locale switcher | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/editor/Components/Editor/Date/Date.vue",
"new_path": "assets/js/app/editor/Components/Editor/Date/Date.vue",
"diff": "</template>\n<script>\n-import field from '../../../mixins/value';\n+import value from '../../../mixins/value';\nimport flatPick... | PHP | MIT License | bolt/core | Added in Locale switcher |
95,168 | 13.11.2018 17:23:26 | -3,600 | 02afeb2bbbb741019bffb21a16d026a4986932c6 | Update UserController to handle User update | [
{
"change_type": "MODIFY",
"old_path": "src/Controller/Backend/UserController.php",
"new_path": "src/Controller/Backend/UserController.php",
"diff": "@@ -37,39 +37,43 @@ class UserController extends BaseController\npublic function edit(Request $request): Response\n{\n$user = $this->getUser();\n- $fo... | PHP | MIT License | bolt/core | Update UserController to handle User update |
95,168 | 13.11.2018 17:24:51 | -3,600 | f46f69d37e88be5c595c70bc2f51967dc7bbc110 | Remove Symfony Form Builder from edit user template
Add customize form(needs more work on form fields) | [
{
"change_type": "MODIFY",
"old_path": "templates/users/edit.twig",
"new_path": "templates/users/edit.twig",
"diff": "{% block body_id 'user_edit' %}\n{% block main %}\n- <div id=\"user\">\n- {% form_theme form 'bootstrap_4_layout.html.twig' %}\n- {{ form_start(form) }}\n- {{ form_widget(form) }}\n+... | PHP | MIT License | bolt/core | Remove Symfony Form Builder from edit user template
Add customize form(needs more work on form fields) |
95,168 | 13.11.2018 17:27:09 | -3,600 | d24d724c79441827563395eb7f936123ceb735f7 | Add email.twig and password.twig form fields | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "templates/editcontent/fields/email.twig",
"diff": "+{% extends '@bolt/editcontent/fields/_base.twig' %}\n+\n+{% block label %}\n+ <label for=\"{{ label_attr.for }}\" class=\"{{ label_class }}\">{{ label }}</label>\n+{% endblock %}\n+\n+{% block ... | PHP | MIT License | bolt/core | Add email.twig and password.twig form fields |
95,180 | 13.11.2018 18:52:44 | -3,600 | bc296ba200798f17100191d2d545930891ef8bf3 | converted select field to vue-multiselect | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/editor/Components/Editor/Select/Select.vue",
"new_path": "assets/js/app/editor/Components/Editor/Select/Select.vue",
"diff": "<template>\n<div>\n- <select class=\"selectize form-control\" :id=\"id\" :name=\"fieldName\" :form=\"form\">\n- <option\... | PHP | MIT License | bolt/core | converted select field to vue-multiselect |
95,180 | 13.11.2018 19:51:25 | -3,600 | 520a8f940fa586bbd37bb2cd83c26cd8f0fbab2b | fixed dep issue with selectize | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/editor/Components/Editor/Select/Select.vue",
"new_path": "assets/js/app/editor/Components/Editor/Select/Select.vue",
"diff": "</template>\n<script>\n-import selectize from 'selectize';\nimport Multiselect from 'vue-multiselect'\nexport default {\... | PHP | MIT License | bolt/core | fixed dep issue with selectize |
95,144 | 14.11.2018 11:37:43 | -3,600 | b6bedc0dfbe05932f57a58795e0575bf915235a3 | Make sure 'form' is set, so fields get saved | [
{
"change_type": "MODIFY",
"old_path": "templates/editcontent/fields/_base.twig",
"new_path": "templates/editcontent/fields/_base.twig",
"diff": "{% set id = 'field-' ~ field.name|default(name) %}\n{% endif %}\n+{# Set the form #}\n+{% if not form|default() %}\n+ {% set form = 'editcontent' %}\n+{% ... | PHP | MIT License | bolt/core | Make sure 'form' is set, so fields get saved |
95,144 | 14.11.2018 13:28:58 | -3,600 | 86d52bdb2f6286ae6e23d39cf7566bace289991b | Make selects use key, display value. | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/editor/Components/Editor/Select/Select.vue",
"new_path": "assets/js/app/editor/Components/Editor/Select/Select.vue",
"diff": "<multiselect\nv-model=\"option\"\ntrack-by=\"key\"\n- label=\"key\"\n+ label=\"value\"\n:options=\"options\"\n:searchabl... | PHP | MIT License | bolt/core | Make selects use key, display value. |
95,180 | 15.11.2018 10:38:10 | -3,600 | 3a93578cb73f1195a5fe432b7e295c3237aa3d99 | added number field base | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/editor/Components/Editor/index.js",
"new_path": "assets/js/app/editor/Components/Editor/index.js",
"diff": "import Text from './Text/Text';\nimport Slug from './Slug/Slug';\n+\nimport Date from './Date/Date';\nimport Select from './Select/Select'... | PHP | MIT License | bolt/core | added number field base |
95,180 | 15.11.2018 12:01:46 | -3,600 | e33870846b95588cce0bdffeeed0770d36e46b40 | added new number field | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/editor/Components/Editor/Number/Number.vue",
"new_path": "assets/js/app/editor/Components/Editor/Number/Number.vue",
"diff": ":step=\"step\"\nv-model=\"val\"\n>\n- <div class=\"input-group-append\">\n+ <!-- <div class=\"input-group-append\">\n<bu... | PHP | MIT License | bolt/core | added new number field |
95,168 | 15.11.2018 13:50:26 | -3,600 | 6f0e1a4c7c8c72022d4ad3a6fb9e77ad2597e3ce | Add type pasword to password field | [
{
"change_type": "MODIFY",
"old_path": "templates/editcontent/fields/password.twig",
"new_path": "templates/editcontent/fields/password.twig",
"diff": "{% endblock %}\n{% block field %}\n- <input type=\"{{ type }}\" id=\"{{ id }}\" name=\"{{ name }}\" value=\"{{ value }}\" class=\"{{ class }}\">\n+ ... | PHP | MIT License | bolt/core | Add type pasword to password field |
95,168 | 15.11.2018 13:56:13 | -3,600 | a5c3621a9288557bfb4c7ce9d4c82e86a508627b | Remove change password route | [
{
"change_type": "MODIFY",
"old_path": "src/Controller/Backend/UserController.php",
"new_path": "src/Controller/Backend/UserController.php",
"diff": "@@ -78,33 +78,4 @@ class UserController extends BaseController\nreturn new RedirectResponse($url);\n}\n-\n- /**\n- * @Route(\"/change-password\", meth... | PHP | MIT License | bolt/core | Remove change password route |
95,144 | 15.11.2018 17:57:58 | -3,600 | 9d74adfe4ce233390c207fb8bee3704dfed925b5 | Fixing CS issues | [
{
"change_type": "MODIFY",
"old_path": "src/Controller/Backend/UserController.php",
"new_path": "src/Controller/Backend/UserController.php",
"diff": "@@ -6,7 +6,6 @@ namespace Bolt\\Controller\\Backend;\nuse Bolt\\Controller\\BaseController;\nuse Bolt\\Form\\ChangePasswordType;\n-use Bolt\\Form\\Use... | PHP | MIT License | bolt/core | Fixing CS issues |
95,144 | 16.11.2018 06:47:18 | -3,600 | 6b5e28cc25320c3a1ebb29c2cda804991636b083 | Updating to Symfony 4.2 beta 2 | [
{
"change_type": "MODIFY",
"old_path": "composer.lock",
"new_path": "composer.lock",
"diff": "},\n{\n\"name\": \"nesbot/carbon\",\n- \"version\": \"1.34.4\",\n+ \"version\": \"1.35.1\",\n\"source\": {\n\"type\": \"git\",\n\"url\": \"https://github.com/briannesbitt/Carbon.git\",\n- \"reference\": \"b... | PHP | MIT License | bolt/core | Updating to Symfony 4.2 beta 2 |
95,144 | 16.11.2018 09:09:07 | -3,600 | f2f1cff69f429cb3542c9ad1f2c595d96016d6a9 | Add "Kitchensink" stub. | [
{
"change_type": "MODIFY",
"old_path": "src/Controller/Backend/GeneralController.php",
"new_path": "src/Controller/Backend/GeneralController.php",
"diff": "@@ -16,4 +16,17 @@ class GeneralController extends BaseController\n{\nreturn $this->renderTemplate('pages/about.twig');\n}\n+\n+ /**\n+ * @Route... | PHP | MIT License | bolt/core | Add "Kitchensink" stub. |
95,168 | 16.11.2018 14:02:09 | -3,600 | da3b160a105ebcbacce4f5b1ac2b65381da36c9a | Validate userame, password and email in edit profile | [
{
"change_type": "MODIFY",
"old_path": "src/Controller/Backend/UserController.php",
"new_path": "src/Controller/Backend/UserController.php",
"diff": "@@ -5,8 +5,6 @@ declare(strict_types=1);\nnamespace Bolt\\Controller\\Backend;\nuse Bolt\\Controller\\BaseController;\n-use Bolt\\Form\\ChangePassword... | PHP | MIT License | bolt/core | Validate userame, password and email in edit profile |
95,168 | 16.11.2018 14:06:05 | -3,600 | d88bd10bfa4d395e85d0dcb5f365a140cb75eef8 | Set 'email' as email input type | [
{
"change_type": "MODIFY",
"old_path": "templates/editcontent/fields/email.twig",
"new_path": "templates/editcontent/fields/email.twig",
"diff": "{% endblock %}\n{% block field %}\n- <input type=\"{{ type }}\" id=\"{{ id }}\" name=\"{{ name }}\" value=\"{{ value }}\" class=\"{{ class }}\">\n+ <input... | PHP | MIT License | bolt/core | Set 'email' as email input type |
95,168 | 16.11.2018 15:31:06 | -3,600 | 00da1283ca6d67922162a235500812165234a513 | Remove label blocks from email.twig and password.twig | [
{
"change_type": "MODIFY",
"old_path": "templates/editcontent/fields/email.twig",
"new_path": "templates/editcontent/fields/email.twig",
"diff": "{% extends '@bolt/editcontent/fields/_base.twig' %}\n-{% block label %}\n- <label for=\"{{ label_attr.for }}\" class=\"{{ label_class }}\">{{ label }}</la... | PHP | MIT License | bolt/core | Remove label blocks from email.twig and password.twig |
95,168 | 16.11.2018 15:39:42 | -3,600 | 83ca9c2e8c017701c66e19a99b349282574020ec | Update _label.twig template and label Vue component | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/editor/Components/Editor/_Partials/Label.vue",
"new_path": "assets/js/app/editor/Components/Editor/_Partials/Label.vue",
"diff": "<template>\n- <label for=\"\">{{label}}</label>\n+ <label :for=\"forlabel\">{{label}}</label>\n</template>\n<script>... | PHP | MIT License | bolt/core | Update _label.twig template and label Vue component |
95,168 | 16.11.2018 15:58:46 | -3,600 | a21b4e73b6952d5233bc05ee412ea50fd6cb9ceb | Add id attribute to text input fields | [
{
"change_type": "MODIFY",
"old_path": "assets/js/app/editor/Components/Editor/Text/Text.vue",
"new_path": "assets/js/app/editor/Components/Editor/Text/Text.vue",
"diff": "<template>\n<div>\n<input\n+ :id=\"id\"\nclass=\"form-control\"\n:class=\"getType\"\n:name=\"name\"\n@@ -17,7 +18,7 @@ import fi... | PHP | MIT License | bolt/core | Add id attribute to text input fields |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.