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. * **🎦 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. * **📱 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. * **🗑️ 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. * **⚡️ Fast**: Memories is extremely fast. Period. More details below.
## 🚀 Installation ## 🚀 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> </div>
<div v-if="processing"> <div v-if="processing" class="info-pad">
{{ t('memories', 'Processing ... {n}/{m}', { {{ t('memories', 'Processing ... {n}/{m}', {
n: photosDone, n: photosDone,
m: photos.length, m: photos.length,
}) }} }) }}
</div> </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"> <div class="buttons">
<NcButton @click="save" class="button" type="primary"> <NcButton @click="save" class="button" type="error">
{{ t('memories', 'Save') }} {{ t('memories', 'Update Exif') }}
</NcButton> </NcButton>
</div> </div>
</div> </div>
@ -373,6 +378,17 @@ export default class EditDate extends Mixins(GlobalMixin) {
display: inline-block; display: inline-block;
} }
} }
.info-pad {
margin-top: 6px;
margin-bottom: 2px;
&.warn {
color: #f44336;
font-size: 0.8em;
line-height: 1em;
}
}
</style> </style>
<style lang="scss"> <style lang="scss">