Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/0.11.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
malte-christian committed Apr 1, 2016
2 parents f6aa602 + 2843e6d commit d7f1db6
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.11.2 (April 1, 2016)

### Fixed
- Fixed missing extension icons

## 0.11.1 (April 1, 2016)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion app/installer/views/extensions.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<td class="pk-table-width-minimum">
<div class="uk-position-relative">
<div class="uk-cover-background uk-position-cover" :style="{'background-image': 'url('+icon(pkg)+')'}"></div>
<canvas class="uk-display-block" width="50" height="50"></canvas>
<canvas class="uk-display-block uk-img-preserve" width="50" height="50"></canvas>
</div>
</td>
<td class="uk-text-nowrap">
Expand Down
2 changes: 1 addition & 1 deletion app/system/app/lib/asset.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = function (Vue) {
*/
function Asset(assets) {

var promises = [], $url = (this.$url || Vue.url), _assets = [], promise;
var promises = [], $url = (this.$url || Vue.url), _assets = [];

Object.keys(assets).forEach(function (type) {

Expand Down
2 changes: 1 addition & 1 deletion app/system/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

'application' => [

'version' => '0.11.1'
'version' => '0.11.2'

],

Expand Down
2 changes: 1 addition & 1 deletion app/system/modules/dashboard/app/views/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ window.Dashboard = {

ready: function () {

var self = this, list, startindex;
var self = this;

// widget re-ordering
var sortables = $(this.$el).find('.uk-sortable[data-column]').each(function () {
Expand Down
2 changes: 1 addition & 1 deletion app/system/modules/user/app/components/modal-login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<img class="uk-margin" :src="$url('app/system/assets/images/pagekit-logo-text-black.svg')" alt="Pagekit">

<p class="uk-text-danger">{{ 'Session expired. Please login again.' | trans }}</p>
<p class="uk-text-danger">{{ 'Session expired. Please log in again.' | trans }}</p>

<form class="uk-form tm-form" @submit.prevent="login" v-el:login>

Expand Down
2 changes: 1 addition & 1 deletion app/system/modules/user/views/admin/permission-index.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<span :title="permission.description | trans" data-uk-tooltip="{pos:'top-left'}">{{ permission.title | trans }}</span>
</td>
<td>
<i class="pk-icon-warning uk-invisible" :title="'This permission has security implications. Give it trusted roles only.' | trans" data-uk-tooltip v-if="permission.trusted"></i>
<i class="pk-icon-warning uk-invisible" :title="'Grant this permission to trusted roles only to avoid security implications.' | trans" data-uk-tooltip v-if="permission.trusted"></i>
</td>
<td class="uk-text-center" v-for="role in roles">

Expand Down
2 changes: 1 addition & 1 deletion app/system/modules/user/views/admin/role-index.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<span :title="permission.description | trans" data-uk-tooltip="{pos:'top-left'}">{{ permission.title | trans }}</span>
</td>
<td>
<i class="pk-icon-warning uk-invisible" :title="'This permission has security implications. Give it trusted roles only.' | trans" data-uk-tooltip v-if="permission.trusted"></i>
<i class="pk-icon-warning uk-invisible" :title="'Grant this permission to trusted roles only to avoid security implications.' | trans" data-uk-tooltip v-if="permission.trusted"></i>
</td>
<td class="uk-text-center">

Expand Down

0 comments on commit d7f1db6

Please sign in to comment.