manually bump nextcloud-moment

Signed-off-by: Georg Ehrke <developer@georgehrke.com>
This commit is contained in:
Georg Ehrke 2019-09-19 13:01:00 +02:00
parent 6a765cfce4
commit 7381f33783
No known key found for this signature in database
GPG Key ID: 9D98FD9380A1CB43
7 changed files with 79 additions and 17 deletions

View File

16
package-lock.json generated
View File

@ -10797,28 +10797,20 @@
}
},
"nextcloud-moment": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/nextcloud-moment/-/nextcloud-moment-0.0.9.tgz",
"integrity": "sha512-K08h712UjeSYrPwP+yT5Hp58V/UTr1CYaTNYiTkeIYpxGvT6eioGy78b9ljJIt/yPe0+OZGLErywJGoRK2FMJg==",
"version": "0.0.10",
"resolved": "https://registry.npmjs.org/nextcloud-moment/-/nextcloud-moment-0.0.10.tgz",
"integrity": "sha512-4M5Ub0bsgtOnz1TUGT5/nN8+D4bIHLgJ8UI8kzeqm8bA+uPpI7ddPJRM8FmmFuKhGOLeeyJQeal419Vgx5DVLQ==",
"requires": {
"core-js": "^3.1.4",
"i18next": "^17.0.4",
"moment": "^2.24.0",
"nextcloud-l10n": "0.0.2"
"nextcloud-l10n": "0.1.0"
},
"dependencies": {
"core-js": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.2.1.tgz",
"integrity": "sha512-Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw=="
},
"nextcloud-l10n": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/nextcloud-l10n/-/nextcloud-l10n-0.0.2.tgz",
"integrity": "sha512-ERJN3oal/R7vt9vyyoBSALfutvRp9eBJbtXolDTpbUrZhdQ19vwSSP7Fir6BgUaIdY73v4suxgB33tSg+04Xlg==",
"requires": {
"core-js": "^3.1.4"
}
}
}
},

View File

@ -51,7 +51,7 @@
"nextcloud-dialogs": "0.0.3",
"nextcloud-l10n": "0.1.0",
"nextcloud-logger": "0.0.6",
"nextcloud-moment": "0.0.9",
"nextcloud-moment": "0.0.10",
"nextcloud-router": "0.0.9",
"nextcloud-vue": "^0.12.3",
"p-limit": "^2.2.1",

View File

@ -1,3 +1,24 @@
<!--
- @copyright Copyright (c) 2019 Georg Ehrke <oc.list@georgehrke.com>
- @author Georg Ehrke <oc.list@georgehrke.com>
-
- @license GNU AGPL version 3 or any later version
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-->
<template>
<router-view />
</template>

View File

@ -1,6 +1,8 @@
/**
* @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
* @copyright Copyright (c) 2019 Georg Ehrke
* @copyright Copyright (c) 2019 John Molakvoæ
*
* @author Georg Ehrke <oc.list@georgehrke.com>
* @author John Molakvoæ <skjnldsv@protonmail.com>
*
* @license GNU AGPL version 3 or any later version
@ -25,9 +27,14 @@ import Vue from 'vue'
import App from './App'
import router from './router'
import store from './store'
import { sync } from 'vuex-router-sync'
import { getRequestToken } from 'nextcloud-auth'
import { linkTo } from 'nextcloud-router'
// TODO: remove and use in individual components
import { Multiselect } from 'nextcloud-vue'
import VueClipboard from 'vue-clipboard2'
import { sync } from 'vuex-router-sync'
import dateRangeFormatFilter from './filters/dateRangeFormat'
import VTooltip from 'v-tooltip'
@ -40,14 +47,14 @@ Vue.component('Multiselect', Multiselect)
// CSP config for webpack dynamic chunk loading
// eslint-disable-next-line
__webpack_nonce__ = btoa(OC.requestToken)
__webpack_nonce__ = btoa(getRequestToken())
// Correct the root of the app for chunk loading
// OC.linkTo matches the apps folders
// OC.generateUrl ensure the index.php (or not)
// We do not want the index.php since we're loading files
// eslint-disable-next-line
__webpack_public_path__ = OC.linkTo('calendar', 'js/')
__webpack_public_path__ = linkTo('calendar', 'js/')
sync(store, router)

View File

@ -1,3 +1,24 @@
/**
* @copyright Copyright (c) 2019 Georg Ehrke
* @author Georg Ehrke <oc.list@georgehrke.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
import Vue from 'vue'
import Router from 'vue-router'
import Calendar from './views/Calendar'

View File

@ -1,3 +1,24 @@
<!--
- @copyright Copyright (c) 2019 Georg Ehrke <oc.list@georgehrke.com>
- @author Georg Ehrke <oc.list@georgehrke.com>
-
- @license GNU AGPL version 3 or any later version
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-->
<template>
<div id="content" class="app-calendar" :class="classNames">
<app-navigation :loading-calendars="loadingCalendars" />