Compare commits

...

4 Commits

Author SHA1 Message Date
Ralf Haase
7b6f6f3525
Merge 1cdac6b5ec into 2f9f848fb0 2023-10-07 02:43:10 +03:30
Travis Ralston
2f9f848fb0
Update README.md 2023-08-10 10:05:58 -06:00
ThellraAK
1cdac6b5ec
Update default.yaml 2022-12-14 02:51:06 -09:00
ThellraAK
a588b2485e
Change loglevel to error 2022-07-01 02:07:38 -08:00
3 changed files with 10 additions and 9 deletions

View File

@ -1,13 +1,12 @@
![dimension](https://t2bot.io/_matrix/media/r0/download/t2l.io/b3101d429588673087f457a4bdd52f45)
An open source integration manager for matrix clients, like Element. For help and support, please visit
us in [#dimension:t2bot.io](https://matrix.to/#/#dimension:t2bot.io) on Matrix.
An open source integration manager for matrix clients, like Element. Community discussion in [#dimension:t2bot.io](https://matrix.to/#/#dimension:t2bot.io) on Matrix.
# 🚨 Project not receiving maintenance
# 🚨 Project archived
Please be aware that Dimension is no longer formally maintained. Bugs are not being looked at, and features are not being implemented.
Support for the project is extremely limited as well - please check the issue tracker before attempting to use Dimension.
There is no active support for the project either, and deploying it is difficult and possibly subject to security issues.
At a future date, Dimension may be replaced or made obsolete, however this is not planned for the immediate horizon.
@ -15,10 +14,12 @@ Chances are you don't need an integration manager though:
* Widgets can be added to rooms with Element Web/Desktop with `/addwidget`
* Self-hosted bots and bridges can be managed entirely by commands
* Stickers can either be supported by https://github.com/maunium/stickerpicker or MSC2545-supported clients (like Nheko)
* Stickers are best supported by https://github.com/maunium/stickerpicker
# Installing Dimension / Running your own
**This is no longer recommended to be run in your infrastructure.**
See [docs/installing.md](./docs/installing.md) for more information on running Dimension.
### "Could not contact integrations server" error

View File

@ -37,9 +37,9 @@ admins:
# IPs and CIDR ranges listed here will be blocked from being widgets.
# Note: Widgets may still be embedded with restricted content, although not through Dimension directly.
widgetBlacklist:
- 10.0.0.0/8
- 172.16.0.0/12
- 192.168.0.0/16
- 10.0.0.0/32
- 172.16.0.0/32
- 192.168.0.0/32
- 127.0.0.0/8
database:

View File

@ -15,7 +15,7 @@ declare global {
}
}
LogService.setLevel(LogLevel.DEBUG);
LogService.setLevel(LogLevel.ERROR);
LogService.setLogger(new RichConsoleLogger());
LogService.info("index", "Starting dimension " + CURRENT_VERSION);