changelog, version, cargo.lock

pull/21/head
Ondřej Hruška 17 hours ago
parent e52e692889
commit 1f08706a44
  1. 35
      CHANGELOG.md
  2. 2
      Cargo.lock
  3. 2
      Cargo.toml

@ -1,37 +1,40 @@
# Changelog # Changelog
## v0.4.5 ## v0.4.6 [2025-06-15]
- Update dependencies
## v0.4.5 [2022-11-02]
- Ignore #nobot in bio if the user is also a member - Ignore #nobot in bio if the user is also a member
## v0.4.4 ## v0.4.4 [2021-11-02]
- Fix some failing tests - Fix some failing tests
- Lowercase the domain when normalizing an account - Lowercase the domain when normalizing an account
## v0.4.3 ## v0.4.3 [2021-10-12]
- Fix hashtag not working in a mention - Fix hashtag not working in a mention
## v0.4.2 ## v0.4.2 [2021-10-12]
- Fix URL fragment detected as hashtag - Fix URL fragment detected as hashtag
## v0.4.1 ## v0.4.1 [2021-10-10]
- "en" translation fixes - "en" translation fixes
- add `messages.json` - add `messages.json`
- Config files are now parsed as JSON5 = comments are allowed - Config files are now parsed as JSON5 = comments are allowed
## v0.4.0 ## v0.4.0 [2021-10-10]
- Add a translation system using the `locales` folder - Add a translation system using the `locales` folder
- Add more trace logging - Add more trace logging
## v0.3.0 ## v0.3.0 [2021-10-05]
- Changed config/storage format to directory-based, removed shared config mutex - Changed config/storage format to directory-based, removed shared config mutex
- Made more options configurable (timeouts, catch-up limits, etc) - Made more options configurable (timeouts, catch-up limits, etc)
- Changed default log level to Debug, added `-q` to reduce it (opposite of `-v`) - Changed default log level to Debug, added `-q` to reduce it (opposite of `-v`)
- Code cleaning - Code cleaning
## v0.2.8 ## v0.2.8 [2021-08-30]
- fix error processing statuses when a misskey poll has infinite run time - fix error processing statuses when a misskey poll has infinite run time
## v0.2.7 ## v0.2.7 [2021-08-30]
- Fix some wrong responses to admin commands - Fix some wrong responses to admin commands
- Remove automatic announcements from some admin commands - Remove automatic announcements from some admin commands
- Send no reply to unauthorized admin commands - Send no reply to unauthorized admin commands
@ -39,34 +42,34 @@
- Add `/optout` and `/optin` - Add `/optout` and `/optin`
- Add `#nobot` checking when using the `/boost` command - Add `#nobot` checking when using the `/boost` command
## v0.2.6 ## v0.2.6 [2021-08-28]
- Allow boosting group hashtags when they are in a reply, except when it is private/DM - Allow boosting group hashtags when they are in a reply, except when it is private/DM
or contains actionable commands or contains actionable commands
- `/follow` and `/unfollow` are now aliases to `/add` and `/remove` (for users and tags) - `/follow` and `/unfollow` are now aliases to `/add` and `/remove` (for users and tags)
- Add workaround for pleroma markdown processor eating trailing hashtags - Add workaround for pleroma markdown processor eating trailing hashtags
- Command replies are now always DM again so we don't spam timelines - Command replies are now always DM again so we don't spam timelines
## v0.2.5 ## v0.2.5 [2021-08-27]
- Add `/undo` command - Add `/undo` command
- Fix users joining via follow not marked as members - Fix users joining via follow not marked as members
## v0.2.4 ## v0.2.4 [2021-08-27]
- make account lookup try harder - make account lookup try harder
## v0.2.3 ## v0.2.3 [2021-08-27]
- `/add user` will now try to follow even if already a member - `/add user` will now try to follow even if already a member
## v0.2.2 ## v0.2.2 [2021-08-27]
- All hashtags, server names and handles are now lowercased = case-insensitive - All hashtags, server names and handles are now lowercased = case-insensitive
- Prevent the `-a` flag overwriting existing group in the config - Prevent the `-a` flag overwriting existing group in the config
- Update the help text - Update the help text
- `/i` now works in hashtag posts - `/i` now works in hashtag posts
- `/add user` and `/remove user` now correctly follow/unfollow - `/add user` and `/remove user` now correctly follow/unfollow
## v0.2.1 ## v0.2.1 [2021-08-27]
- More reliable websocket reconnect, workaround for pleroma socket going silent - More reliable websocket reconnect, workaround for pleroma socket going silent
## v0.2.0 ## v0.2.0 [2021-08-27]
- Add hashtag boosting and back-follow/unfollow - Add hashtag boosting and back-follow/unfollow
- Add hashtag commands - Add hashtag commands
- Code reorganization - Code reorganization

2
Cargo.lock generated

@ -374,7 +374,7 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
[[package]] [[package]]
name = "fedigroups" name = "fedigroups"
version = "0.4.4" version = "0.4.6"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap", "clap",

@ -1,6 +1,6 @@
[package] [package]
name = "fedigroups" name = "fedigroups"
version = "0.4.5" version = "0.4.6"
authors = ["Ondřej Hruška <ondra@ondrovo.com>"] authors = ["Ondřej Hruška <ondra@ondrovo.com>"]
edition = "2018" edition = "2018"
publish = false publish = false

Loading…
Cancel
Save