From ba3d9125eb892cb911b5c4eaf8557cabc9456969 Mon Sep 17 00:00:00 2001 From: Julien Veyssier Date: Sat, 24 Dec 2022 00:41:25 +0100 Subject: [PATCH] 1.0.3 Signed-off-by: Julien Veyssier --- CHANGELOG.md | 10 ++++++++++ src/adminSettings.js | 10 ++-------- src/dashboard.js | 2 -- src/views/Dashboard.vue | 1 - 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eda2628..9637fa4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## 1.0.3 – 2022-12-24 +### Added +- support for http markdown image target + +### Changed +- update npm pkgs + +### Fixed +- support for image links inserted by Text + ## 1.0.2 – 2022-10-08 ### Changed - use @nextcloud/vue-richtext instead of vue-markdown diff --git a/src/adminSettings.js b/src/adminSettings.js index 289d70d..4d7350a 100644 --- a/src/adminSettings.js +++ b/src/adminSettings.js @@ -15,11 +15,5 @@ import Vue from 'vue' import './bootstrap.js' import AdminSettings from './components/AdminSettings.vue' -// eslint-disable-next-line -'use strict' - -// eslint-disable-next-line -new Vue({ - el: '#welcome_prefs', - render: h => h(AdminSettings), -}) +const View = Vue.extend(AdminSettings) +new View().$mount('#welcome_prefs') diff --git a/src/dashboard.js b/src/dashboard.js index a348080..624bad4 100644 --- a/src/dashboard.js +++ b/src/dashboard.js @@ -1,5 +1,3 @@ -/* jshint esversion: 6 */ - /** * Nextcloud - welcome * diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue index 049ed73..6696108 100644 --- a/src/views/Dashboard.vue +++ b/src/views/Dashboard.vue @@ -39,7 +39,6 @@ export default { name: 'Dashboard', components: { - // DashboardWidget, NcEmptyContent, NcAvatar, RichText,