1
0
Fork 0
Commit Graph

9 Commits

Author SHA1 Message Date
Casey 2006d489c3
I think formatting works properly now?
When boosting something, status contents are not stored in status
itself, but rather in the `status.reblog`. Since it'd be really awkward
to check for boosts too, I just decided to add separate `@property` that
returns either reblog or status itself, depending on the value of
`status.reblog`. That required a bit of tweaking. Also now we're using
ExtendedInterpolation, so you can do the `${tokens.telegram}` and add
separate section for your secrets.
TODO: add support for environment variables (maybe)

For those who's wondering how manual check for boost would look in the
template, here ya go :)

{% if status.reblog %}Boost from <a \
href="{{status.reblog.account.url}}">{{status.reblog.account.name}}</a>
{% if status.reblog.spoiler_text %}{{status.reblog.spoiler_text}}
<tg-spoiler>{% endif %}{{status.reblog.content_flathtml}}\
{% if status.reblog.spoiler_text %}</tg-spoiler>{% endif %}
{% else %}
{% if status.spoiler_text %}{{status.spoiler_text}}
<tg-spoiler>{% endif %}{{status.content_flathtml}}\
{% if status.spoiler_text %}</tg-spoiler>{% endif %}
{% endif %}

<a href="{{status.link}}">Link to post</a>

You asked for this :)
2022-08-31 18:12:38 +03:00
Casey 01a384161c
Changed some filters 2022-08-30 21:20:15 +03:00
Casey f048cf07a9
FILTERS!!! AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 2022-08-29 10:28:51 +03:00
Casey 6a9750b33b
Fixed typo (I'm sorry) 2022-08-27 12:04:59 +03:00
Casey 9024f14f40
Added silent notification option (Closes #9) 2022-08-26 21:24:36 +03:00
Casey 8088cca8f0
Added polls and reconnect. Closes #1 & #7, I hope- 2022-08-26 18:37:36 +03:00
Casey 60f18c8d22
Added Discord integration
Check `config.ini` for more details.

Also now `private` posts are not forwarded. That may be changed with
filters (coming sometime soon).
2022-08-26 02:03:06 +03:00
Casey 99e982786c
Config documentation added 2022-08-24 08:22:28 +03:00
Casey 7a7227f28d
Initial commit :DDDDDD 2022-08-24 08:09:41 +03:00