Compare commits
14 Commits
backport/6
...
backport/6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e7b2a00d18 | ||
|
|
8813551174 | ||
|
|
bb5f5eb923 | ||
|
|
245558cee5 | ||
|
|
45151eb157 | ||
|
|
0ba3e4248c | ||
|
|
0da1358aa3 | ||
|
|
e7fec37c35 | ||
|
|
193296238d | ||
|
|
12dd877a0e | ||
|
|
ac58e0e9ac | ||
|
|
88a7ad1f9f | ||
|
|
675fbe2e5b | ||
|
|
331044aba6 |
@@ -1,6 +1,14 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## 1.13.1
|
||||
### Fixed
|
||||
- fix: Adjust dependencies to fix filepicker #6038
|
||||
- Fix npm audit #6028
|
||||
- Fix npm audit #6001
|
||||
- fix: Avoid optional before required parameter #5820
|
||||
- fix: permission check for cloning board #5853
|
||||
|
||||
## 1.13.0
|
||||
|
||||
### Added
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
- 🚀 Get your project organized
|
||||
|
||||
</description>
|
||||
<version>1.13.0</version>
|
||||
<version>1.13.1</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Julius Härtl</author>
|
||||
<documentation>
|
||||
|
||||
@@ -149,6 +149,7 @@ OC.L10N.register(
|
||||
"Filter by tag" : "Filtrer på knagg",
|
||||
"Filter by assigned user" : "Filtrer på tildelt bruker",
|
||||
"Unassigned" : "Ikke tildelt",
|
||||
"Filter by status" : "Filtrer etter status",
|
||||
"Open and completed" : "Åpen og fullført",
|
||||
"Open" : "Åpne",
|
||||
"Completed" : "Ferdig",
|
||||
@@ -257,6 +258,7 @@ OC.L10N.register(
|
||||
"Remove due date" : "Fjern forfallsdato",
|
||||
"Mark as done" : "Marker som fullført",
|
||||
"Due at:" : "Forfaller den:",
|
||||
"Not done" : "Ikke fullført",
|
||||
"Unarchive card" : "Hent kort fra arkiv",
|
||||
"Archive card" : "Arkiver kort",
|
||||
"Select Date" : "Velg dato",
|
||||
|
||||
@@ -147,6 +147,7 @@
|
||||
"Filter by tag" : "Filtrer på knagg",
|
||||
"Filter by assigned user" : "Filtrer på tildelt bruker",
|
||||
"Unassigned" : "Ikke tildelt",
|
||||
"Filter by status" : "Filtrer etter status",
|
||||
"Open and completed" : "Åpen og fullført",
|
||||
"Open" : "Åpne",
|
||||
"Completed" : "Ferdig",
|
||||
@@ -255,6 +256,7 @@
|
||||
"Remove due date" : "Fjern forfallsdato",
|
||||
"Mark as done" : "Marker som fullført",
|
||||
"Due at:" : "Forfaller den:",
|
||||
"Not done" : "Ikke fullført",
|
||||
"Unarchive card" : "Hent kort fra arkiv",
|
||||
"Archive card" : "Arkiver kort",
|
||||
"Select Date" : "Velg dato",
|
||||
|
||||
@@ -848,7 +848,7 @@ class DeckShareProvider implements \OCP\Share\IShareProvider {
|
||||
$pathSections = explode('/', $data['path'], 2);
|
||||
// FIXME: would not detect rare md5'd home storage case properly
|
||||
if ($pathSections[0] !== 'files'
|
||||
&& in_array(explode(':', $data['storage_string_id'], 2)[0], ['home', 'object'])) {
|
||||
&& (strpos($data['storage_string_id'], 'home::') === 0 || strpos($data['storage_string_id'], 'object::user') === 0)) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
|
||||
2999
package-lock.json
generated
2999
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
10
package.json
10
package.json
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "deck",
|
||||
"description": "",
|
||||
"version": "1.13.0",
|
||||
"version": "1.13.1",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Julius Härtl",
|
||||
@@ -32,18 +32,18 @@
|
||||
"dependencies": {
|
||||
"@babel/polyfill": "^7.12.1",
|
||||
"@babel/runtime": "^7.24.1",
|
||||
"@nextcloud/auth": "^2.2.1",
|
||||
"@nextcloud/auth": "^2.3.0",
|
||||
"@nextcloud/axios": "^2.4.0",
|
||||
"@nextcloud/capabilities": "^1.1.0",
|
||||
"@nextcloud/dialogs": "^4.2.6",
|
||||
"@nextcloud/dialogs": "^5.3.2",
|
||||
"@nextcloud/event-bus": "^3.1.0",
|
||||
"@nextcloud/files": "^3.1.1",
|
||||
"@nextcloud/files": "^3.4.0",
|
||||
"@nextcloud/initial-state": "^2.1.0",
|
||||
"@nextcloud/l10n": "^2.2.0",
|
||||
"@nextcloud/moment": "^1.3.1",
|
||||
"@nextcloud/notify_push": "^1.1.4",
|
||||
"@nextcloud/router": "^3.0.0",
|
||||
"@nextcloud/vue": "^8.11.1",
|
||||
"@nextcloud/vue": "^8.12.0",
|
||||
"blueimp-md5": "^2.19.0",
|
||||
"chroma-js": "^2.4.2",
|
||||
"dompurify": "^3.0.11",
|
||||
|
||||
@@ -158,7 +158,7 @@ import { showError, showUndo } from '@nextcloud/dialogs'
|
||||
|
||||
import CardItem from '../cards/CardItem.vue'
|
||||
|
||||
import '@nextcloud/dialogs/dist/index.css'
|
||||
import '@nextcloud/dialogs/style.css'
|
||||
|
||||
export default {
|
||||
name: 'Stack',
|
||||
|
||||
@@ -117,7 +117,6 @@ const maxUploadSizeState = loadState('deck', 'maxUploadSize', -1)
|
||||
|
||||
const picker = getFilePickerBuilder(t('deck', 'File to share'))
|
||||
.setMultiSelect(false)
|
||||
.setModal(true)
|
||||
.setType(1)
|
||||
.allowDirectories()
|
||||
.build()
|
||||
|
||||
@@ -207,7 +207,7 @@ export default {
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
<style lang="scss">
|
||||
|
||||
section.app-sidebar__tab--active {
|
||||
min-height: auto;
|
||||
|
||||
@@ -204,7 +204,6 @@ export default {
|
||||
},
|
||||
onUpdate: ({ markdown }) => {
|
||||
if (this.description === markdown) {
|
||||
this.descriptionLastEdit = 0
|
||||
return
|
||||
}
|
||||
this.description = markdown
|
||||
@@ -300,7 +299,9 @@ export default {
|
||||
return
|
||||
}
|
||||
this.descriptionSaving = true
|
||||
await this.$store.dispatch('updateCardDesc', { ...this.card, description: this.description })
|
||||
if (this.card.id !== undefined) {
|
||||
await this.$store.dispatch('updateCardDesc', { ...this.card, description: this.description })
|
||||
}
|
||||
this.$emit('change', this.description)
|
||||
this.descriptionLastEdit = 0
|
||||
this.descriptionSaving = false
|
||||
|
||||
@@ -80,7 +80,7 @@ import { generateUrl } from '@nextcloud/router'
|
||||
import { getCurrentUser } from '@nextcloud/auth'
|
||||
import { showUndo } from '@nextcloud/dialogs'
|
||||
|
||||
import '@nextcloud/dialogs/dist/index.css'
|
||||
import '@nextcloud/dialogs/style.css'
|
||||
import { emit } from '@nextcloud/event-bus'
|
||||
|
||||
export default {
|
||||
|
||||
Reference in New Issue
Block a user