Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.4.0] - 2026-02-12

### Added

- Session tracking with automatic SESSION_START lifecycle events

## [1.3.2] - 2025-12-17

### Changed
Expand Down
1 change: 1 addition & 0 deletions clix/src/main/kotlin/so/clix/services/SessionService.kt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ internal class SessionService(
if (lastActivity != null) {
val elapsed = System.currentTimeMillis() - lastActivity
if (elapsed <= effectiveTimeoutMs) {
pendingMessageId = null
updateLastActivity()
ClixLogger.debug("Continuing existing session")
return
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
clix = "1.3.2"
clix = "1.4.0"
# Plugins
android-gradle-plugin = "8.9.2"
gms = "4.4.2"
Expand Down