Skip to content

Commit

Permalink
Increment plugin version to 4.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
gdelataillade committed Nov 3, 2024
1 parent 51fbcd7 commit 1bd3a7a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.0.9
* Added new alarm parameter `volumeEnforced`.
* [iOS] Reopen killed app when tap on notification stop button.

## 4.0.8
* Fixed and improved isRinging method.
* [iOS] Add support for longer volume fade durations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ class AlarmService : Service() {
val volumeEnforced = intent.getBooleanExtra("volumeEnforced", false)
val fadeDuration = intent.getDoubleExtra("fadeDuration", 0.0)

Log.d("AlarmService", "volume enforced: $volumeEnforced")

// Notify the plugin about the alarm ringing
AlarmPlugin.eventSink?.success(
mapOf(
Expand Down
2 changes: 1 addition & 1 deletion example/lib/screens/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import 'package:alarm_example/widgets/tile.dart';
import 'package:flutter/material.dart';
import 'package:url_launcher/url_launcher.dart';

const version = '4.0.8';
const version = '4.0.9';

class ExampleAlarmHomeScreen extends StatefulWidget {
const ExampleAlarmHomeScreen({super.key});
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
path: ".."
relative: true
source: path
version: "4.0.8"
version: "4.0.9"
async:
dependency: transitive
description:
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: alarm
description: A simple Flutter alarm manager plugin for both iOS and Android.
version: 4.0.8
version: 4.0.9
homepage: https://github.com/gdelataillade/alarm

environment:
Expand Down

0 comments on commit 1bd3a7a

Please sign in to comment.