Skip to content
Draft
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
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Next release

- #3830: The message textarea blocks undo of the pasted text
- #3852: Share XMPP address with web link on https://xmpp.link

## 12.0.0 (2025-08-28)

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/muc-views/modals/templates/muc-details.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default (model) => {
height="72" width="72"></converse-avatar>

<p class="room-info"><strong>${i18n_name}:</strong> ${model.get('name')}</p>
<p class="room-info"><strong>${i18n_address}:</strong> <converse-texture text="xmpp:${model.get('jid')}?join"></converse-texture></p>
<p class="room-info"><strong>${i18n_address}:</strong> <converse-texture text="xmpp:${model.get('jid')}?join"></converse-texture> <a href="https://xmpp.link/#${model.get('jid')}?join">web</a></p>
<br/>
<p class="room-info"><strong>${i18n_desc}:</strong> <converse-texture text="${config.description}" render_styling></converse-texture></p>
${ (model.get('subject')) ? subject(model) : '' }
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/profile/templates/profile_modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default (el) => {
<div class="col">
<div class="px-3">
<label class="col-form-label">${i18n_jid}:</label>
<div>${o.jid}</div>
<div><a href="xmpp:${o.jid}">${o.jid}</a> <a href="https://xmpp.link/#${o.jid}">web</a></div>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/shared/modals/templates/user-details.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export function tplUserDetailsModal(el) {
: ''}
<div class="row mb-2">
<div class="col-sm-4"><label>${i18n_address}:</label></div>
<div class="col-sm-8"><a href="xmpp:${o.jid}">${o.jid}</a></div>
<div class="col-sm-8"><a href="xmpp:${o.jid}">${o.jid}</a> <a href="https://xmpp.link/#${o.jid}">web</a></div>
</div>

${contact
Expand Down
Loading