diff --git a/components/areas.php b/components/areas.php index 089b67c..359cb9e 100644 --- a/components/areas.php +++ b/components/areas.php @@ -11,37 +11,50 @@ 'link' => 'webmentions', 'views' => [ [ - 'pattern' => 'webmentions', - 'action' => function () { + 'pattern' => ['webmentions', 'webmentions/(:any)/(:any)'], + 'action' => function ($year = null, $month = null) { + if (is_null($year) || is_null($month)) { + $timestamp = time(); + $year = date('Y', $timestamp); + $month = date('m', $timestamp); + } + + if ($month < 12) { + $nextMonth = $month + 1; + $nextYear = $year; + } else { + $nextMonth = 1; + $nextYear = $year + 1; + } + + if ($month > 1) { + $prevMonth = $month - 1; + $prevYear = $year; + } else { + $prevMonth = 12; + $prevYear = $year - 1; + } + + $stats = new WebmentionStats(); + $summary = $stats->getSummaryByMonth($year, $month); + $targets = $stats->getTargets($year, $month); + $sources = $stats->getSources($year, $month); + $version = $stats->getPluginVersion(); + return [ 'component' => 'k-webmentions-view', 'title' => 'Webmentions', 'props' => [ - 'summary' => function () { - $stats = new WebmentionStats(); - $timestamp = time(); - $summary = $stats->getSummaryByMonth($timestamp); - - return $summary; - }, - 'targets' => function () { - $stats = new WebmentionStats(); - $timestamp = time(); - $summary = $stats->getTargets($timestamp); - - return $summary; - }, - 'sources' => function () { - $stats = new WebmentionStats(); - $timestamp = time(); - $summary = $stats->getSources($timestamp); - - return $summary; - }, - 'version' => function () { - $stats = new WebmentionStats(); - return $stats->getPluginVersion(); - } + 'year' => $year, + 'month' => $month, + 'nextYear' => $nextYear, + 'nextMonth' => $nextMonth, + 'prevYear' => $prevYear, + 'prevMonth' => $prevMonth, + 'summary' => $summary, + 'targets' => $targets, + 'sources' => $sources, + 'version' => $version ], ]; } diff --git a/index.js b/index.js index eb48340..46161a3 100644 --- a/index.js +++ b/index.js @@ -1 +1 @@ -(()=>{var s1=Object.defineProperty,n1=Object.defineProperties;var i1=Object.getOwnPropertyDescriptors;var w=Object.getOwnPropertySymbols;var r1=Object.prototype.hasOwnProperty,o1=Object.prototype.propertyIsEnumerable;var b=(o,i,a)=>i in o?s1(o,i,{enumerable:!0,configurable:!0,writable:!0,value:a}):o[i]=a,$=(o,i)=>{for(var a in i||(i={}))r1.call(i,a)&&b(o,a,i[a]);if(w)for(var a of w(i))o1.call(i,a)&&b(o,a,i[a]);return o},g=(o,i)=>n1(o,i1(i));(function(){"use strict";var o=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("k-inside",[t("k-view",{staticClass:"k-webmentions-view"},[t("k-header",[e._v("Webmentions")]),t("Version",{attrs:{version:e.version}}),t("DetailsByMonth",{attrs:{summary:e.summary}}),t("Targets",{attrs:{targets:e.targets}}),t("Sources",{attrs:{sources:e.sources}})],1)],1)},i=[],a="";function c(e,n,t,s,v,f,C,Q){var r=typeof e=="function"?e.options:e;n&&(r.render=n,r.staticRenderFns=t,r._compiled=!0),s&&(r.functional=!0),f&&(r._scopeId="data-v-"+f);var d;if(C?(d=function(l){l=l||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!l&&typeof __VUE_SSR_CONTEXT__!="undefined"&&(l=__VUE_SSR_CONTEXT__),v&&v.call(this,l),l&&l._registeredComponents&&l._registeredComponents.add(C)},r._ssrRegister=d):v&&(d=Q?function(){v.call(this,(r.functional?this.parent:this).$root.$options.shadowRoot)}:v),d)if(r.functional){r._injectStyles=d;var e1=r.render;r.render=function(t1,y){return d.call(y),e1(t1,y)}}else{var k=r.beforeCreate;r.beforeCreate=k?[].concat(k,d):[d]}return{exports:e,options:r}}const L={props:{summary:Object,targets:Array,sources:Array,version:Object}},p={};var M=c(L,o,i,!1,S,null,null,null);function S(e){for(let n in p)this[n]=p[n]}var H=function(){return M.exports}(),Z=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("div",[t("div",{staticClass:"wrapper"},[t("k-headline",{attrs:{size:"large"}},[e._v("Summary")]),t("k-line-field"),t("table",[t("tr",[t("td",[e._v(" "+e._s(e.summary.summary)+" "),e.summary.summary>1?t("span",[e._v("Webmentions")]):e.summary.summary===1?t("span",[e._v("Webmention")]):e._e()]),t("td",[t("div",{class:{dimmed:e.summary.likes===0}},[t("k-icon",{attrs:{type:"shape-icon-fav"}}),e._v(" "+e._s(e.summary.likes)+" ")],1)]),t("td",[t("div",{class:{dimmed:e.summary.replies===0}},[t("k-icon",{attrs:{type:"shape-icon-reply"}}),e._v(" "+e._s(e.summary.replies)+" ")],1)]),t("td",[t("div",{class:{dimmed:e.summary.reposts===0}},[t("k-icon",{attrs:{type:"shape-icon-repost"}}),e._v(" "+e._s(e.summary.reposts)+" ")],1)]),t("td",[t("div",{class:{dimmed:e.summary.mentions===0}},[t("k-icon",{attrs:{type:"shape-icon-mention"}}),e._v(" "+e._s(e.summary.mentions)+" ")],1)]),t("td",[t("div",{class:{dimmed:e.summary.bookmarks===0}},[t("k-icon",{attrs:{type:"shape-icon-bookmark"}}),e._v(" "+e._s(e.summary.bookmarks)+" ")],1)])])])],1)])},x=[];const V={props:{summary:{summary:Number,likes:Number,replies:Number,reposts:Number,mentions:Number,bookmarks:Number}}},_={};var j=c(V,Z,x,!1,R,null,null,null);function R(e){for(let n in _)this[n]=_[n]}var T=function(){return j.exports}(),B=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("div",{staticClass:"wrapper"},[t("k-headline",{attrs:{size:"large"}},[e._v("Targets")]),t("k-line-field"),t("table",e._l(e.targets,function(s){return t("tr",{key:s.id},[t("td",[t("k-link",{attrs:{to:s.panelUrl,title:s.slug}},[e._v(e._s(s.title))])],1),t("td",[t("div",{class:{dimmed:s.likes===0}},[t("k-icon",{attrs:{type:"shape-icon-fav"}}),e._v(" "+e._s(s.likes)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.replies===0}},[t("k-icon",{attrs:{type:"shape-icon-reply"}}),e._v(" "+e._s(s.replies)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.reposts===0}},[t("k-icon",{attrs:{type:"shape-icon-repost"}}),e._v(" "+e._s(s.reposts)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.mentions===0}},[t("k-icon",{attrs:{type:"shape-icon-mention"}}),e._v(" "+e._s(s.mentions)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.bookmarks===0}},[t("k-icon",{attrs:{type:"shape-icon-bookmark"}}),e._v(" "+e._s(s.bookmarks)+" ")],1)])])}),0)],1)},N=[];const O={props:{targets:Object}},u={};var E=c(O,B,N,!1,F,null,null,null);function F(e){for(let n in u)this[n]=u[n]}var z=function(){return E.exports}(),U=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("div",{staticClass:"wrapper"},[t("k-headline",{attrs:{size:"large"}},[e._v("Sources")]),t("k-line-field"),t("table",e._l(this.sortedSources,function(s){return t("tr",{key:s.id},[t("td",[t("k-link",{staticClass:"k-link-centered",attrs:{to:s.source,title:s.source}},[s.image!==null?t("img",{staticClass:"avatar",attrs:{src:s.image}}):e._e(),t("span",[e._v(e._s(s.source))])])],1),t("td",[t("div",{class:{dimmed:s.likes===0}},[t("k-icon",{attrs:{type:"shape-icon-fav"}}),e._v(" "+e._s(s.likes)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.replies===0}},[t("k-icon",{attrs:{type:"shape-icon-reply"}}),e._v(" "+e._s(s.replies)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.reposts===0}},[t("k-icon",{attrs:{type:"shape-icon-repost"}}),e._v(" "+e._s(s.reposts)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.mentions===0}},[t("k-icon",{attrs:{type:"shape-icon-mention"}}),e._v(" "+e._s(s.mentions)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.bookmarks===0}},[t("k-icon",{attrs:{type:"shape-icon-bookmark"}}),e._v(" "+e._s(s.bookmarks)+" ")],1)])])}),0)],1)},W=[];const A={props:{sources:Object},data(){return{sortedSources:[]}},created(){this.getSources()},methods:{getSources(){this.sortedSources=Object.entries(this.sources).sort((e,n)=>e[1].sumg($({},e),{[n]:t}),{})}}},m={};var D=c(A,U,W,!1,X,null,null,null);function X(e){for(let n in m)this[n]=m[n]}var Y=function(){return D.exports}(),q=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("div",{staticClass:"version-box"},[e.version.error?t("span",{staticClass:"error"},[t("k-info-field",{attrs:{theme:"negative",label:"Sorry",text:"The current version could not be fetched."}})],1):e.version.updateAvailable?t("span",{staticClass:"version"},[t("span",{staticClass:"update-available"},[e._v("Update to "+e._s(e.version.latest)+" available")]),e._v(" / "),t("span",[e._v("Your installed version is "+e._s(e.version.local)+" ")])]):e._e()])},G=[],a1="";const I={props:{version:Object}},h={};var J=c(I,q,G,!1,K,null,null,null);function K(e){for(let n in h)this[n]=h[n]}var P=function(){return J.exports}();panel.plugin("mauricerenck/indieConnector",{components:{"k-webmentions-view":H,Targets:z,Sources:Y,DetailsByMonth:T,Version:P},icons:{"shape-icon-bookmark":'',"shape-icon-fav":'',"shape-icon-mention":'',"shape-icon-reply":'',"shape-icon-repost":''}})})();})(); +(()=>{var s1=Object.defineProperty,n1=Object.defineProperties;var i1=Object.getOwnPropertyDescriptors;var w=Object.getOwnPropertySymbols;var r1=Object.prototype.hasOwnProperty,o1=Object.prototype.propertyIsEnumerable;var b=(o,i,a)=>i in o?s1(o,i,{enumerable:!0,configurable:!0,writable:!0,value:a}):o[i]=a,$=(o,i)=>{for(var a in i||(i={}))r1.call(i,a)&&b(o,a,i[a]);if(w)for(var a of w(i))o1.call(i,a)&&b(o,a,i[a]);return o},g=(o,i)=>n1(o,i1(i));(function(){"use strict";var o=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("k-inside",[t("k-view",{staticClass:"k-webmentions-view"},[t("k-header",[e._v("Webmentions")]),t("div",{staticClass:"prev-next"},[t("button",{staticClass:"k-link k-button",on:{click:e.goToPrevMonth}},[t("k-icon",{attrs:{type:"angle-left"}})],1),e._v(" "+e._s(e.month)+" / "+e._s(e.year)+" "),t("button",{staticClass:"k-link k-button",on:{click:e.goToNextMonth}},[t("k-icon",{attrs:{type:"angle-right"}})],1)]),t("Version",{attrs:{version:e.version}}),t("DetailsByMonth",{attrs:{summary:e.summary}}),t("Targets",{attrs:{targets:e.targets}}),t("Sources",{attrs:{sources:e.sources}})],1)],1)},i=[],a="";function c(e,n,t,s,p,f,k,Q){var r=typeof e=="function"?e.options:e;n&&(r.render=n,r.staticRenderFns=t,r._compiled=!0),s&&(r.functional=!0),f&&(r._scopeId="data-v-"+f);var d;if(k?(d=function(l){l=l||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,!l&&typeof __VUE_SSR_CONTEXT__!="undefined"&&(l=__VUE_SSR_CONTEXT__),p&&p.call(this,l),l&&l._registeredComponents&&l._registeredComponents.add(k)},r._ssrRegister=d):p&&(d=Q?function(){p.call(this,(r.functional?this.parent:this).$root.$options.shadowRoot)}:p),d)if(r.functional){r._injectStyles=d;var e1=r.render;r.render=function(t1,y){return d.call(y),e1(t1,y)}}else{var C=r.beforeCreate;r.beforeCreate=C?[].concat(C,d):[d]}return{exports:e,options:r}}const M={props:{year:Number,month:Number,nextYear:Number,nextMonth:Number,prevYear:Number,prevMonth:Number,summary:Object,targets:Array,sources:Array,version:Object},methods:{goToPrevMonth(){const e=window.location.pathname.split("webmentions");window.location.pathname=`${e[0]}webmentions/${this.prevYear}/${this.prevMonth}`},goToNextMonth(){const e=window.location.pathname.split("webmentions");window.location.pathname=`${e[0]}webmentions/${this.nextYear}/${this.nextMonth}`}}},v={};var L=c(M,o,i,!1,x,null,null,null);function x(e){for(let n in v)this[n]=v[n]}var S=function(){return L.exports}(),H=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("div",[t("div",{staticClass:"wrapper"},[t("k-headline",{attrs:{size:"large"}},[e._v("Summary")]),t("k-line-field"),t("table",[t("tr",[t("td",[e._v(" "+e._s(e.summary.summary)+" "),e.summary.summary>1?t("span",[e._v("Webmentions")]):e.summary.summary===1?t("span",[e._v("Webmention")]):e._e()]),t("td",[t("div",{class:{dimmed:e.summary.likes===0}},[t("k-icon",{attrs:{type:"shape-icon-fav"}}),e._v(" "+e._s(e.summary.likes)+" ")],1)]),t("td",[t("div",{class:{dimmed:e.summary.replies===0}},[t("k-icon",{attrs:{type:"shape-icon-reply"}}),e._v(" "+e._s(e.summary.replies)+" ")],1)]),t("td",[t("div",{class:{dimmed:e.summary.reposts===0}},[t("k-icon",{attrs:{type:"shape-icon-repost"}}),e._v(" "+e._s(e.summary.reposts)+" ")],1)]),t("td",[t("div",{class:{dimmed:e.summary.mentions===0}},[t("k-icon",{attrs:{type:"shape-icon-mention"}}),e._v(" "+e._s(e.summary.mentions)+" ")],1)]),t("td",[t("div",{class:{dimmed:e.summary.bookmarks===0}},[t("k-icon",{attrs:{type:"shape-icon-bookmark"}}),e._v(" "+e._s(e.summary.bookmarks)+" ")],1)])])])],1)])},N=[];const Z={props:{summary:{summary:Number,likes:Number,replies:Number,reposts:Number,mentions:Number,bookmarks:Number}}},u={};var T=c(Z,H,N,!1,V,null,null,null);function V(e){for(let n in u)this[n]=u[n]}var j=function(){return T.exports}(),R=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("div",{staticClass:"wrapper"},[t("k-headline",{attrs:{size:"large"}},[e._v("Targets")]),t("k-line-field"),t("table",e._l(e.targets,function(s){return t("tr",{key:s.id},[t("td",[t("k-link",{attrs:{to:s.panelUrl,title:s.slug}},[e._v(e._s(s.title))])],1),t("td",[t("div",{class:{dimmed:s.likes===0}},[t("k-icon",{attrs:{type:"shape-icon-fav"}}),e._v(" "+e._s(s.likes)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.replies===0}},[t("k-icon",{attrs:{type:"shape-icon-reply"}}),e._v(" "+e._s(s.replies)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.reposts===0}},[t("k-icon",{attrs:{type:"shape-icon-repost"}}),e._v(" "+e._s(s.reposts)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.mentions===0}},[t("k-icon",{attrs:{type:"shape-icon-mention"}}),e._v(" "+e._s(s.mentions)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.bookmarks===0}},[t("k-icon",{attrs:{type:"shape-icon-bookmark"}}),e._v(" "+e._s(s.bookmarks)+" ")],1)])])}),0)],1)},B=[];const O={props:{targets:Object}},_={};var E=c(O,R,B,!1,F,null,null,null);function F(e){for(let n in _)this[n]=_[n]}var Y=function(){return E.exports}(),z=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("div",{staticClass:"wrapper"},[t("k-headline",{attrs:{size:"large"}},[e._v("Sources")]),t("k-line-field"),t("table",e._l(this.sortedSources,function(s){return t("tr",{key:s.id},[t("td",[t("k-link",{staticClass:"k-link-centered",attrs:{to:s.source,title:s.source}},[s.image!==null?t("img",{staticClass:"avatar",attrs:{src:s.image}}):e._e(),t("span",[e._v(e._s(s.source))])])],1),t("td",[t("div",{class:{dimmed:s.likes===0}},[t("k-icon",{attrs:{type:"shape-icon-fav"}}),e._v(" "+e._s(s.likes)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.replies===0}},[t("k-icon",{attrs:{type:"shape-icon-reply"}}),e._v(" "+e._s(s.replies)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.reposts===0}},[t("k-icon",{attrs:{type:"shape-icon-repost"}}),e._v(" "+e._s(s.reposts)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.mentions===0}},[t("k-icon",{attrs:{type:"shape-icon-mention"}}),e._v(" "+e._s(s.mentions)+" ")],1)]),t("td",[t("div",{class:{dimmed:s.bookmarks===0}},[t("k-icon",{attrs:{type:"shape-icon-bookmark"}}),e._v(" "+e._s(s.bookmarks)+" ")],1)])])}),0)],1)},P=[];const U={props:{sources:Object},data(){return{sortedSources:[]}},created(){this.getSources()},methods:{getSources(){this.sortedSources=Object.entries(this.sources).sort((e,n)=>e[1].sumg($({},e),{[n]:t}),{})}}},m={};var W=c(U,z,P,!1,A,null,null,null);function A(e){for(let n in m)this[n]=m[n]}var D=function(){return W.exports}(),X=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("div",{staticClass:"version-box"},[e.version.error?t("span",{staticClass:"error"},[t("k-info-field",{attrs:{theme:"negative",label:"Sorry",text:"The current version could not be fetched."}})],1):e.version.updateAvailable?t("span",{staticClass:"version"},[t("span",{staticClass:"update-available"},[e._v("Update to "+e._s(e.version.latest)+" available")]),e._v(" / "),t("span",[e._v("Your installed version is "+e._s(e.version.local)+" ")])]):e._e()])},q=[],a1="";const G={props:{version:Object}},h={};var I=c(G,X,q,!1,J,null,null,null);function J(e){for(let n in h)this[n]=h[n]}var K=function(){return I.exports}();panel.plugin("mauricerenck/indieConnector",{components:{"k-webmentions-view":S,Targets:Y,Sources:D,DetailsByMonth:j,Version:K},icons:{"shape-icon-bookmark":'',"shape-icon-fav":'',"shape-icon-mention":'',"shape-icon-reply":'',"shape-icon-repost":''}})})();})(); diff --git a/package-lock.json b/package-lock.json index 8a13149..86c50b0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,14 +1,13 @@ { "name": "indieconnector", - "version": "1.0.5", + "version": "1.2.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "indieconnector", - "version": "1.0.5", + "version": "1.2.1", "dependencies": { - "date-fns": "2.11.0", "vue": "^2.6.14", "vue-hot-reload-api": "^2.3.4" }, @@ -1293,11 +1292,6 @@ "node": ">=8.0.0" } }, - "node_modules/date-fns": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.11.0.tgz", - "integrity": "sha512-8P1cDi8ebZyDxUyUprBXwidoEtiQAawYPGvpfb+Dg0G6JrQ+VozwOmm91xYC0vAv1+0VmLehEPb+isg4BGUFfA==" - }, "node_modules/dateformat": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", @@ -9253,11 +9247,6 @@ "css-tree": "^1.1.2" } }, - "date-fns": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.11.0.tgz", - "integrity": "sha512-8P1cDi8ebZyDxUyUprBXwidoEtiQAawYPGvpfb+Dg0G6JrQ+VozwOmm91xYC0vAv1+0VmLehEPb+isg4BGUFfA==" - }, "dateformat": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", diff --git a/package.json b/package.json index bdd3e8f..6badcc9 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,6 @@ "recognizeSelfClosing": true }, "dependencies": { - "date-fns": "2.11.0", "vue": "^2.6.14", "vue-hot-reload-api": "^2.3.4" }, diff --git a/src/components/View.vue b/src/components/View.vue index eefac40..17893fc 100644 --- a/src/components/View.vue +++ b/src/components/View.vue @@ -2,6 +2,11 @@ Webmentions +
+ + {{ month }} / {{ year }} + +
@@ -14,11 +19,28 @@ diff --git a/utils/stats.php b/utils/stats.php index 3abdd56..084fd01 100644 --- a/utils/stats.php +++ b/utils/stats.php @@ -48,11 +48,8 @@ public function trackMention(string $target, string $source, string $type, strin } } - public function getSummaryByMonth(int $timestamp) + public function getSummaryByMonth(int $year, int $month) { - $year = date('Y', $timestamp); - $month = date('m', $timestamp); - try { $result = $this->db->query('SELECT COUNT(id) as summary, * FROM webmentions WHERE mention_date LIKE "' . $year . '-' . $month . '-%" GROUP BY mention_type;'); $summary = [ @@ -111,11 +108,8 @@ public function getDetailsByMonth(int $timestamp) } } - public function getTargets(int $timestamp) + public function getTargets(int $year, int $month) { - $year = date('Y', $timestamp); - $month = date('m', $timestamp); - try { $result = $this->db->query('SELECT mention_target, mention_type, COUNT(mention_type) as mentions FROM webmentions WHERE mention_date LIKE "' . $year . '-' . $month . '-%" GROUP BY mention_target, mention_type;'); $targets = []; @@ -152,11 +146,8 @@ public function getTargets(int $timestamp) } } - public function getSources(int $timestamp) + public function getSources(int $year, int $month) { - $year = date('Y', $timestamp); - $month = date('m', $timestamp); - try { $result = $this->db->query('SELECT mention_source, mention_type, mention_image, COUNT(mention_type) as mentions FROM webmentions WHERE mention_date LIKE "' . $year . '-' . $month . '-%" GROUP BY mention_source, mention_type;'); $sources = []; diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 1c4d9ad..7b5d446 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -1,7 +1,7 @@ array( - 'pretty_version' => '1.2.4', - 'version' => '1.2.4.0', + 'pretty_version' => '1.3.0', + 'version' => '1.3.0.0', 'type' => 'kirby-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -29,8 +29,8 @@ 'dev_requirement' => false, ), 'mauricerenck/indieconnector' => array( - 'pretty_version' => '1.2.4', - 'version' => '1.2.4.0', + 'pretty_version' => '1.3.0', + 'version' => '1.3.0.0', 'type' => 'kirby-plugin', 'install_path' => __DIR__ . '/../../', 'aliases' => array(),