Skip to content

Releases: mlomb/chat-analytics

v1.1.2

14 Aug 22:52
Compare
Choose a tag to compare
  • Fixed WhatsApp channel type. Comment.
  • Updated whatsapp-chat-parser to 4.0.1 due this issue. #117
  • Changed emojis in placeholder to be more consistent. #91 #96
  • Load avatars from local directories if exports have media files enabled (Discord). #106 #107
  • Added light mode favicon. #111
  • Emoji sentiment is now being saved as a float instead of a string. #116
  • Updated demo export files to Feb 2024.
  • Fixed typos #98

v1.1.1

14 Dec 05:31
92120ed
Compare
Choose a tag to compare
  • Added Docker images!
  • Added the obfuscator to simplify sharing exports #81 #82
  • Fixed bug in writeVarInt: Negative editedAfter value causing serialization to break #85
  • Hide Discord discriminators if they are #0000 #93
  • Fix a bug with multiple calls at the same time #94

Thanks to @hopperelec for cleaning and refactoring code!

v1.1.0

17 Aug 23:34
d5a8378
Compare
Choose a tag to compare
  • Bugfix: DM/Group channel labels (Alice & Bob) were showing an invalid picture.
  • Added calls support for Discord and Telegram: #76 #88
    • Time spent on calls over time
    • Number of calls initiated over time
    • Total calls, total time spent on calls, average/median call duration
    • Call duration distribution
    • Average/median time between calls
    • Time spent on calls by week day / hour
    • Most calls initiated

v1.0.3

14 Jul 04:32
65b524d
Compare
Choose a tag to compare
  • Telegram now supports both date and date_unixtime in exports. #80
  • Telegram exports now do not break when there are DST changes in the middle of a file. #79 #80
  • Activity by hour/weekday Y-axis now starts at 0. (4cb8ae4)

v1.0.2

29 Jun 03:54
9e79760
Compare
Choose a tag to compare
  • Bugfix in big exports: when the message buffer reaches 2^32 bits serialization breaks because bitwise operations are done in 32 bits. Now we use BigInts where necessary and avoid some bitwise operations. #83

v1.0.1

03 Apr 16:11
452037f
Compare
Choose a tag to compare
  • Bugfix Discord: regular emoji were not being rendered correctly in MessageLabel because the ID was being set (due to DCE now including an empty ID) (87ab3f8)
  • Bugfix in URL parsing: some GET parameters were not being matched. Now using the same regex used by Discord. Added tests. #72
  • Added platform clarification about CLI in DCE (de8c517)

v1.0.0

03 Mar 02:37
e9864a1
Compare
Choose a tag to compare

After a lot of work in #39, #53, #55 and #58 (more than 200 commits of refactors and improvements) I can say I'm happy to call this the first release of Chat Analytics!

This is the first entry in the changelog, so I'll just list some changes that were introduced in the PRs:

Pipeline

  • Support for multiple guilds
  • Mostly all the pipeline code has been rewritten with comments and better code overall
  • TESTING: added a lot of tests for the pipeline (+200) with >90% coverage (if excluding aggregation)
  • Now input files that have overlapped messages are merged (duplicate messages are ignored)
  • Now we keep the latest information about authors and channels and guilds, like the name and avatar
  • 4x speedup in base91 decoding
  • I'm sure there is a lot more to put here but I can't remember

App

  • Changed branding a bit
  • Now it displays the number of files being processed/to be processed
  • It displays the number of guilds when done
  • Moved platform instructions to its own file, and separated platform information from the app, so it can be used in the pipeline
  • Generation errors are now reported to Plausible
  • Now the resulting report HTML file includes the name of the guild/server/group/chat
  • Fix a leak in PII when using Plausible

Report

  • The block request system have been completely replaced: Card now does not require a block key, data must be retrieved with useBlockData, to allow multiple blocks in a single card
  • Improved chart performance:
    • Defer chart creation until the chart is visible
    • Disable chart ticks when not in view
    • Resizing debounced
    • Also removed a lot of boilerplate making a common wrapper, this allowed the optimizations above
  • Created boxplot with histogram chart
  • Now bot authors have an icon alongside their name
  • All charts now have proper tooltips and hover information
  • The timeline tab now shows the number of messages per guild or per group if appropiate
  • Added a link to report issues in ErrorBoundary
  • Most charts have been modified to look prettier (colors, margins, kind of series, etc)
  • Words have its own stats now: usage over time, who write them the most, which channels they are used the most.
  • Added a few statistics in Message statistics
  • Renamed "combined" to "heatmap" in activity by hour/weekday
  • Fixed the scale of the activity by hour/weekday heatmap, it was inverted
  • Added a card: "Edited messages [by author/in channel]"
  • Added a card: "Time between sending and editing"
  • AnimatedBars now memoize the sort of the items array (used extensively)
  • Now the "Messages sent over time" will default to by month if there is more than 2 years of data (instead of by day)
  • Renamed "non-bot" to "human"
  • Added a card: "Linked by domain hierarchy"
  • Added a card: "Most links sent [by author/in channel]"
  • A lot other performance and bug fixes

Documentation

  • Added documentation, there was practically none before
  • Cool graphic depicting the pipeline