Skip to content

Commit

Permalink
Merge pull request #10449 from pymedusa/release/release-0.5.27
Browse files Browse the repository at this point in the history
Release/release 0.5.27
  • Loading branch information
p0psicles authored Mar 29, 2022
2 parents 2105d6e + 4d5c88f commit 15f4e8f
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.5.27 (29-03-2022)

#### Fixes
- Fix backup / restore page ([10447](https://github.com/pymedusa/Medusa/pull/10447))

## 0.5.26 (28-03-2022)

#### Improvements
Expand Down
2 changes: 1 addition & 1 deletion medusa/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
log.logger.addHandler(logging.NullHandler())

INSTANCE_ID = text_type(uuid.uuid1())
VERSION = '0.5.26'
VERSION = '0.5.27'

USER_AGENT = 'Medusa/{version} ({system}; {release}; {instance})'.format(
version=VERSION, system=platform.system(), release=platform.release(),
Expand Down
6 changes: 6 additions & 0 deletions themes-default/slim/src/components/config-backup-restore.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
</template>

<script>
import { mapState } from 'vuex';
import { FileBrowser, StateSwitch } from './helpers';
import { VueTabs, VTab } from 'vue-nav-tabs/dist/vue-tabs.js';
Expand Down Expand Up @@ -80,6 +81,11 @@ export default {
beforeMount() {
$('#config-components').tabs();
},
computed: {
...mapState({
client: state => state.auth.client
})
},
methods: {
async runBackup() {
const { backup } = this;
Expand Down
4 changes: 4 additions & 0 deletions themes-default/slim/src/components/helpers/file-browser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
</div>
</template>
<script>
import { mapState } from 'vuex';
export default {
name: 'file-browser',
props: {
Expand Down Expand Up @@ -110,6 +111,9 @@ export default {
}
},
computed: {
...mapState({
client: state => state.auth.client
}),
storedPath: {
// Interact with localStorage, if applicable
get() {
Expand Down
2 changes: 1 addition & 1 deletion themes/dark/assets/js/medusa-runtime.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion themes/dark/assets/js/medusa-runtime.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion themes/light/assets/js/medusa-runtime.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion themes/light/assets/js/medusa-runtime.js.map

Large diffs are not rendered by default.

0 comments on commit 15f4e8f

Please sign in to comment.