Bump version and fix wording (fixes #1088)
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
||||||
<id>deck</id>
|
<id>deck</id>
|
||||||
<name>Deck</name>
|
<name>Deck</name>
|
||||||
<summary>A kanban style project and personal management tool for Nextcloud</summary>
|
<summary>Personal planning and team project organization</summary>
|
||||||
<description>Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.
|
<description>Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.
|
||||||
|
|
||||||
|
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
- 🚀 Get your project organized
|
- 🚀 Get your project organized
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
<version>0.8.0</version>
|
<version>1.0.0-alpha1</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author>Julius Härtl</author>
|
<author>Julius Härtl</author>
|
||||||
<namespace>Deck</namespace>
|
<namespace>Deck</namespace>
|
||||||
|
|||||||
@@ -30,17 +30,17 @@
|
|||||||
<div v-if="board" class="board-actions">
|
<div v-if="board" class="board-actions">
|
||||||
<div v-if="canManage" id="stack-add" v-click-outside="hideAddStack">
|
<div v-if="canManage" id="stack-add" v-click-outside="hideAddStack">
|
||||||
<Actions v-if="!isAddStackVisible">
|
<Actions v-if="!isAddStackVisible">
|
||||||
<ActionButton icon="icon-add" :title="t('deck', 'Add new stack')" @click.stop="showAddStack" />
|
<ActionButton icon="icon-add" :title="t('deck', 'Add new list')" @click.stop="showAddStack" />
|
||||||
</Actions>
|
</Actions>
|
||||||
<form v-else @submit.prevent="addNewStack()">
|
<form v-else @submit.prevent="addNewStack()">
|
||||||
<label for="new-stack-input-main" class="hidden-visually">{{ t('deck', 'Add a new stack') }}</label>
|
<label for="new-stack-input-main" class="hidden-visually">{{ t('deck', 'Add new list') }}</label>
|
||||||
<input id="new-stack-input-main"
|
<input id="new-stack-input-main"
|
||||||
v-model="newStackTitle"
|
v-model="newStackTitle"
|
||||||
type="text"
|
type="text"
|
||||||
class="no-close"
|
class="no-close"
|
||||||
placeholder="Add a new stack"
|
:placeholder="t('deck', 'List name')"
|
||||||
required>
|
required>
|
||||||
<input v-tooltip="t('deck', 'Add new stack')"
|
<input v-tooltip="t('deck', 'Add new list')"
|
||||||
class="icon-confirm"
|
class="icon-confirm"
|
||||||
type="submit"
|
type="submit"
|
||||||
value="">
|
value="">
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
</transition>
|
</transition>
|
||||||
<Actions v-if="canManage" :force-menu="true">
|
<Actions v-if="canManage" :force-menu="true">
|
||||||
<ActionButton icon="icon-delete" @click="deleteStack(stack)">
|
<ActionButton icon="icon-delete" @click="deleteStack(stack)">
|
||||||
{{ t('deck', 'Delete stack') }}
|
{{ t('deck', 'Delete list') }}
|
||||||
</ActionButton>
|
</ActionButton>
|
||||||
</Actions>
|
</Actions>
|
||||||
<Actions v-if="canEdit">
|
<Actions v-if="canEdit">
|
||||||
|
|||||||
Reference in New Issue
Block a user