fix: label
This commit is contained in:
parent
c03b4f8cfb
commit
7ce7df6947
38
CALCKEY.md
38
CALCKEY.md
|
@ -3,27 +3,27 @@
|
||||||
## Planned
|
## Planned
|
||||||
|
|
||||||
- Stucture
|
- Stucture
|
||||||
- [Sonic](https://crates.io/crates/sonic-server) support as an ElasticSearch alternative
|
- [Sonic](https://crates.io/crates/sonic-server) support as an ElasticSearch alternative
|
||||||
- [DragonflyDB](https://dragonflydb.io/) support as a Redis alternative
|
- [DragonflyDB](https://dragonflydb.io/) support as a Redis alternative
|
||||||
- Optionally use [ScyllaDB](https://www.scylladb.com/open-source-nosql-database/) for storing notes
|
- Optionally use [ScyllaDB](https://www.scylladb.com/open-source-nosql-database/) for storing notes
|
||||||
- Rewrite backend in Rust and [Axum](https://github.com/tokio-rs/axum)
|
- Rewrite backend in Rust and [Axum](https://github.com/tokio-rs/axum)
|
||||||
- Function
|
- Function
|
||||||
- Federate with note edits
|
- Federate with note edits
|
||||||
- User "choices" (recommended users) like Mastodon and Soapbox
|
- User "choices" (recommended users) like Mastodon and Soapbox
|
||||||
- Join Reason system like Mastodon/Pleroma
|
- Join Reason system like Mastodon/Pleroma
|
||||||
- Option to publicize instance blocks
|
- Option to publicize instance blocks
|
||||||
- Backfill remote users
|
- Backfill remote users
|
||||||
- Build flag to remove NSFW/AI stuff
|
- Build flag to remove NSFW/AI stuff
|
||||||
- Timeline filters
|
- Timeline filters
|
||||||
- Filter notifications by user
|
- Filter notifications by user
|
||||||
- Non-nyaify cat mode
|
- Non-nyaify cat mode
|
||||||
- Exclude self from antenna
|
- Exclude self from antenna
|
||||||
- Form
|
- Form
|
||||||
- MFM button
|
- MFM button
|
||||||
- Personal notes for all accounts
|
- Personal notes for all accounts
|
||||||
- Fully revamp non-logged-in screen
|
- Fully revamp non-logged-in screen
|
||||||
- Classic mode make instance icon bring up new context menu
|
- Classic mode make instance icon bring up new context menu
|
||||||
- [Rat mode?](https://stop.voring.me/notes/933fx97bmd)
|
- [Rat mode?](https://stop.voring.me/notes/933fx97bmd)
|
||||||
|
|
||||||
## Work in progress
|
## Work in progress
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "calckey",
|
"name": "calckey",
|
||||||
"version": "13.0.0-rc3",
|
"version": "13.0.0-rc4",
|
||||||
"codename": "aqua",
|
"codename": "aqua",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<FormButton primary danger @click="move(moveToAccount)">
|
<FormButton primary danger @click="move(moveToAccount)">
|
||||||
{{ i18n.ts.moveAccount }}
|
{{ i18n.ts.moveAccount }}
|
||||||
</FormButton>
|
</FormButton>
|
||||||
<div class="label">{{ i18n.ts.moveAccountDescription }}</div>
|
<div class="description">{{ i18n.ts.moveAccountDescription }}</div>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
|
|
||||||
<FormSection>
|
<FormSection>
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
<FormButton class="button" inline primary @click="save(accountAlias)">
|
<FormButton class="button" inline primary @click="save(accountAlias)">
|
||||||
<i class="ph-floppy-disk-back-bold ph-lg"></i> {{ i18n.ts.save }}
|
<i class="ph-floppy-disk-back-bold ph-lg"></i> {{ i18n.ts.save }}
|
||||||
</FormButton>
|
</FormButton>
|
||||||
<div class="label">{{ i18n.ts.moveFromDescription }}</div>
|
<div class="description">{{ i18n.ts.moveFromDescription }}</div>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -59,3 +59,10 @@ definePageMetadata({
|
||||||
icon: 'ph-lock-bold ph-lg',
|
icon: 'ph-lock-bold ph-lg',
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.description {
|
||||||
|
font-size: .85em;
|
||||||
|
padding: 1rem;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue