Skip to content

Commit

Permalink
Added support for automatic segregation of Debug/Release data source
Browse files Browse the repository at this point in the history
  • Loading branch information
goenning committed May 20, 2023
1 parent 516feb6 commit 6dda36b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.10

* Added support for automatic segregation of Debug/Release data source

## 0.0.9

* Support for self hosted instances
Expand Down
3 changes: 2 additions & 1 deletion lib/aptabase_flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class InitOptions {
///
/// Initialize the client with `Aptabase.init(appKey)` and then use `Aptabase.instance.trackEvent(eventName, props)` to record events.
class Aptabase {
static const String _sdkVersion = "aptabase_flutter@0.0.9";
static const String _sdkVersion = "aptabase_flutter@0.0.10";
static const Duration _sessionTimeout = Duration(hours: 1);

static const Map<String, String> _hosts = {
Expand Down Expand Up @@ -95,6 +95,7 @@ class Aptabase {
}

final systemProps = {
"isDebug": kDebugMode,
"osName": _sysInfo!.osName,
"osVersion": _sysInfo!.osVersion,
"locale": _sysInfo!.locale,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: aptabase_flutter
description: "Flutter SDK for Aptabase: Open Source Privacy-First and Simple Analytics for Mobile, Desktop and Web Apps"
version: 0.0.9
version: 0.0.10
homepage: https://aptabase.com
repository: https://github.com/aptabase/aptabase_flutter
issue_tracker: https://github.com/aptabase/aptabase_flutter/issues
Expand Down

0 comments on commit 6dda36b

Please sign in to comment.