mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-13 16:55:10 +00:00
[FIX] Handle logic mistake in plumbing
This commit is contained in:
parent
17474bda0f
commit
b7c360d528
2 changed files with 18 additions and 15 deletions
31
CHANGELOG.md
31
CHANGELOG.md
|
|
@ -13,24 +13,16 @@ commit done between releases.
|
||||||
*There is currently no beta releases of Parsee*
|
*There is currently no beta releases of Parsee*
|
||||||
|
|
||||||
## Alpha
|
## Alpha
|
||||||
### v0.1.0[tomboyish-bridges-adventure] <9/9/2024>
|
|
||||||
Nothing much to say, but this is the first alpha release
|
|
||||||
of Parsee. May occasionally deadlock.
|
|
||||||
#### New things
|
|
||||||
*NONE*
|
|
||||||
#### Bugfixes
|
|
||||||
*NONE*
|
|
||||||
#### Deprecated features
|
|
||||||
*NONE*
|
|
||||||
|
|
||||||
### v0.2.0[star-of-hope] <X/X/XXXX>
|
### v0.2.0[star-of-hope] <X/X/XXXX>
|
||||||
Fixes some media metadata things, replaces the build system,
|
Fixes some media metadata things, replaces the build system,
|
||||||
and speeds up Parsee a tad bit.
|
tries out avatar support some more and speeds up Parsee a tad
|
||||||
|
bit.
|
||||||
#### New things
|
#### New things
|
||||||
- Start dealing with some basic PEP and vCard-based avatars.
|
- Start dealing with some basic PEP and vCard-based avatars.
|
||||||
- Allows MbedTLS through a specific Cytoplasm patch.
|
- Allows experimental MbedTLS through a specific Cytoplasm
|
||||||
|
patch.
|
||||||
- Kicking/Banning Parsee from XMPP effectively unlinks it.
|
- Kicking/Banning Parsee from XMPP effectively unlinks it.
|
||||||
- Start adding documentation to Parsee
|
- Start adding basic documentation to Parsee
|
||||||
- Add MUC whitelists for plumbing, alongside a `whitelist` tool
|
- Add MUC whitelists for plumbing, alongside a `whitelist` tool
|
||||||
|
|
||||||
#### Bugfixes
|
#### Bugfixes
|
||||||
|
|
@ -40,7 +32,18 @@ behave.
|
||||||
- "Lone" XMPP messages no longer render weirdly on Element
|
- "Lone" XMPP messages no longer render weirdly on Element
|
||||||
Android's weird rendering.
|
Android's weird rendering.
|
||||||
- Start fixing bug where Parsee takes several seconds to send
|
- Start fixing bug where Parsee takes several seconds to send
|
||||||
a message coming from XMPP
|
a message coming from XMPP with MbedTLS(it is still slow and
|
||||||
|
unstable)
|
||||||
|
|
||||||
#### Deprecated features
|
#### Deprecated features
|
||||||
- The old `build.c` and `Makefile`s used for building are removed,
|
- The old `build.c` and `Makefile`s used for building are removed,
|
||||||
and replaced by the `configure.c` C file(/script via TCC).
|
and replaced by the `configure.c` C file(/script via TCC).
|
||||||
|
### v0.1.0[tomboyish-bridges-adventure] <9/9/2024>
|
||||||
|
Nothing much to say, but this is the first alpha release
|
||||||
|
of Parsee. May occasionally deadlock.
|
||||||
|
#### New things
|
||||||
|
*NONE*
|
||||||
|
#### Bugfixes
|
||||||
|
*NONE*
|
||||||
|
#### Deprecated features
|
||||||
|
*NONE*
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ CommandHead(CmdPlumb, cmd, argp)
|
||||||
|
|
||||||
/* Check MUC viability */
|
/* Check MUC viability */
|
||||||
if (ParseeManageBan(args->data, muc, NULL) ||
|
if (ParseeManageBan(args->data, muc, NULL) ||
|
||||||
ParseeIsMUCWhitelisted(args->data, muc))
|
!ParseeIsMUCWhitelisted(args->data, muc))
|
||||||
{
|
{
|
||||||
ReplySprintf("MUC '%s' is not allowed on this bridge.", muc);
|
ReplySprintf("MUC '%s' is not allowed on this bridge.", muc);
|
||||||
goto end;
|
goto end;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue