Add disclaimer

pull/62/head
Varun Patil 2022-09-25 08:06:27 -07:00
parent 0fe291b0a8
commit 5296448311
4 changed files with 23 additions and 6 deletions

View File

@ -12,6 +12,7 @@
* **🎦 Slideshow**: View photos from your timeline and folders easily.
* **📱 Mobile Support**: Relive your memories on devices of any shape and size through the web app.
* **🗑️ Recycle**: Select and delete multiple photos and videos at once.
* **✏️ Edit Metadata**: Edit Exif dates on photos quickly and easily.
* **⚡️ Fast**: Memories is extremely fast. Period. More details below.
## 🚀 Installation

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -77,16 +77,21 @@
</div>
</div>
<div v-if="processing">
<div v-if="processing" class="info-pad">
{{ t('memories', 'Processing ... {n}/{m}', {
n: photosDone,
m: photos.length,
}) }}
</div>
<div class="info-pad warn">
This feature modifies files in your storage to update Exif data.
Exercise caution and make sure you have backups.
</div>
<div class="buttons">
<NcButton @click="save" class="button" type="primary">
{{ t('memories', 'Save') }}
<NcButton @click="save" class="button" type="error">
{{ t('memories', 'Update Exif') }}
</NcButton>
</div>
</div>
@ -373,6 +378,17 @@ export default class EditDate extends Mixins(GlobalMixin) {
display: inline-block;
}
}
.info-pad {
margin-top: 6px;
margin-bottom: 2px;
&.warn {
color: #f44336;
font-size: 0.8em;
line-height: 1em;
}
}
</style>
<style lang="scss">