Skip to content

Commit 01e1583

Browse files
committed
Release 11.0.1
1 parent 3985591 commit 01e1583

File tree

56 files changed

+36312
-37014
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+36312
-37014
lines changed

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 11.0.0 (Unreleased)
3+
## 11.0.1 (2025-06-09)
44

55
- #3672: Images not rendering
66
- #3676: Flyout box is not positioned correctly on mobile devices in "overlayed" mode
@@ -13,6 +13,7 @@
1313
- Fix auto zoom in when input message in ios safari
1414
- Add a service discovery browser to the settings modal
1515
- Add a modal to view blocked XMPP addresses
16+
- Check for PubSub `config-node-max` feature before using the `max` value
1617

1718
## 11.0.0 (2025-05-21)
1819

COPYRIGHT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* An XMPP chat client for the web
44
*
5-
* Version: 11.0.0
5+
* Version: 11.0.1
66
*
77
* Copyright: JC Brand 2013-2025
88
* Except for 3rd party dependencies.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ certs:
6565
########################################################################
6666
## Translation machinery
6767

68-
GETTEXT = $(XGETTEXT) --from-code=UTF-8 --language=JavaScript --keyword=__ --keyword=___ --keyword=i18n_ --force-po --output=src/i18n/converse.pot --package-name=Converse.js --copyright-holder="Jan-Carel Brand" --package-version=11.0.0 dist/converse-no-dependencies.js -c
68+
GETTEXT = $(XGETTEXT) --from-code=UTF-8 --language=JavaScript --keyword=__ --keyword=___ --keyword=i18n_ --force-po --output=src/i18n/converse.pot --package-name=Converse.js --copyright-holder="Jan-Carel Brand" --package-version=11.0.1 dist/converse-no-dependencies.js -c
6969

7070
src/i18n/converse.pot: dist/converse-no-dependencies.js
7171
$(GETTEXT) 2>&1 > /dev/null; exit $$?;

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '11.0.0'
51+
version = '11.0.1'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '11.0.0'
53+
release = '11.0.1'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

docs/source/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ To use it, add these lines to your HTML page's ``<head>`` section:
4040
.. code-block:: html
4141

4242
<!-- Replace 10.1.5 with your desired version -->
43-
<link rel="stylesheet" href="https://cdn.conversejs.org/11.0.0/dist/converse.min.css">
44-
<script src="https://cdn.conversejs.org/11.0.0/dist/converse.min.js" charset="utf-8"></script>
43+
<link rel="stylesheet" href="https://cdn.conversejs.org/11.0.1/dist/converse.min.css">
44+
<script src="https://cdn.conversejs.org/11.0.1/dist/converse.min.js" charset="utf-8"></script>
4545

4646
.. warning::
4747
Always specify a version number in production to avoid breaking changes.

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"short_name": "Converse",
33
"name": "Converse Chat",
44
"description": "Messaging Freedom",
5-
"version": "11.0.0",
5+
"version": "11.0.1",
66
"categories": ["social"],
77
"icons": [
88
{

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "converse.js",
3-
"version": "11.0.0",
3+
"version": "11.0.1",
44
"description": "Browser based XMPP chat client",
55
"browser": "dist/converse.js",
66
"workspaces": [

src/headless/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@converse/headless",
3-
"version": "11.0.0",
3+
"version": "11.0.1",
44
"description": "Converse.js Headless build",
55
"author": "JC Brand <jc@opkode.com>",
66
"contributors": [

src/headless/shared/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Strophe } from 'strophe.js';
22

33
export const BOSH_WAIT = 59;
4-
export const VERSION_NAME = "v11.0.0";
4+
export const VERSION_NAME = "v11.0.1";
55

66
export const PRES_SHOW_VALUES = ['chat', 'dnd', 'away', 'xa'];
77
export const PRES_TYPE_VALUES = [

0 commit comments

Comments
 (0)