Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/renderer/src/views/x/XWizardDeleteOptionsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
State
} from '../../view_models/AccountXViewModel'
import { xHasSomeData } from '../../util_x';
import { openURL } from '../../util';

import XLastImportOrBuildComponent from './XLastImportOrBuildComponent.vue';

Expand Down Expand Up @@ -329,7 +330,10 @@ onMounted(async () => {
</div>
<div class="indent">
<small class="form-text text-muted">
Likes are private on X.
Likes are only visible to you on X. Cyd will delete all of the likes it can, but it can't delete
<em>ghost likes</em>.
<a href="#" @click="openURL('https://cyd.social/docs-ghost-likes/')">
Read more</a>.
</small>
</div>
</div>
Expand All @@ -348,6 +352,11 @@ onMounted(async () => {
class="premium badge badge-primary">Premium</span>
</div>
</div>
<div class="indent">
<small class="form-text text-muted">
Bookmarks are only visible to you on X.
</small>
</div>
</div>

<!-- deleteDMs -->
Expand Down
11 changes: 4 additions & 7 deletions src/renderer/src/views/x/XWizardImportOrBuildPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,8 @@ onMounted(() => {
X restricts how much of your data you can access. You likely won't get all of your data
if you have Cyd build it from scratch. Building from scratch is a great way to backup
your direct messages, though.
<a href="#" @click="openURL('https://cyd.social/docs-building-database-limits/')">
Read more
</a>.
<a href="#" @click="openURL('https://cyd.social/docs-building-database-limits/')">Read
more</a>.
</small>
</div>
</div>
Expand Down Expand Up @@ -154,8 +153,7 @@ onMounted(() => {
profile will be faster. Building from scratch is also a great way to backup your direct
messages.
<a href="#" @click="openURL('https://cyd.social/docs-building-database-limits/')">
Read more
</a>.
Read more</a>.
</small>
</div>
</div>
Expand Down Expand Up @@ -226,8 +224,7 @@ onMounted(() => {
only works if you have less than about 2,000 tweets or likes. Building from scratch is a
great way to backup your direct messages, though.
<a href="#" @click="openURL('https://cyd.social/docs-building-database-limits/')">
Read more
</a>.
Read more</a>.
</small>
</div>
</div>
Expand Down
Loading