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
2 changes: 1 addition & 1 deletion .github/workflows/flutter_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.41.1
flutter-version: 3.44.0

- name: Install dependencies
run: flutter pub get
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh_pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.41.0
flutter-version: 3.44.0

- name: Install Package Dependencies
run: flutter pub get
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 12.4.8
- **CHORE**: Update CI to Flutter 3.44 and fix deprecated API usages.

## 12.4.7
- **FIX**(example): Update Supabase initialization to use publishable key and upgrade `supabase_flutter` dependency to 2.14.1.

Expand Down
2 changes: 1 addition & 1 deletion example/lib/features/reorder_layer_example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ class _ReorderLayerSheetState extends State<ReorderLayerSheet> {
);
},
itemCount: widget.layers.length,
onReorder: widget.onReorder,
onReorderItem: widget.onReorder,
);
}
}
1 change: 0 additions & 1 deletion example/linux/flutter/generated_plugins.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ list(APPEND FLUTTER_PLUGIN_LIST
)

list(APPEND FLUTTER_FFI_PLUGIN_LIST
jni
onnxruntime
)

Expand Down
2 changes: 1 addition & 1 deletion example/macos/Flutter/GeneratedPluginRegistrant.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
ProVideoEditorPlugin.register(with: registry.registrar(forPlugin: "ProVideoEditorPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
VideoPlayerPlugin.register(with: registry.registrar(forPlugin: "VideoPlayerPlugin"))
FVPVideoPlayerPlugin.register(with: registry.registrar(forPlugin: "FVPVideoPlayerPlugin"))
VolumeControllerPlugin.register(with: registry.registrar(forPlugin: "VolumeControllerPlugin"))
WakelockPlusMacosPlugin.register(with: registry.registrar(forPlugin: "WakelockPlusMacosPlugin"))
}
1 change: 0 additions & 1 deletion example/windows/flutter/generated_plugins.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ list(APPEND FLUTTER_PLUGIN_LIST
)

list(APPEND FLUTTER_FFI_PLUGIN_LIST
jni
onnxruntime
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class GroundedMainBarState extends State<GroundedMainBar>
child: SizeTransition(
sizeFactor: animation,
axis: Axis.vertical,
axisAlignment: -1,
alignment: Alignment.topCenter,
child: child,
),
);
Expand Down
2 changes: 1 addition & 1 deletion lib/designs/whatsapp/whatsapp_sticker_editor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ class _WhatsAppStickerPageState extends State<WhatsAppStickerPage> {
child: _isStickerEditorEnabled
? SizeTransition(
sizeFactor: animation,
axisAlignment: -1,
alignment: Alignment.topCenter,
child: child,
)
: ScaleTransition(
Expand Down
3 changes: 1 addition & 2 deletions lib/features/clips_editor/pages/clips_editor_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,7 @@ class ClipsEditorPageState extends State<ClipsEditorPage>
child: ReorderableListView.builder(
reverse: reversedList,
padding: clipsEditorConfigs.style.bodyPadding,
onReorder: (oldIndex, newIndex) {
if (newIndex > oldIndex) newIndex--;
onReorderItem: (oldIndex, newIndex) {
final item = _videoClips.removeAt(oldIndex);
_videoClips.insert(newIndex, item);
setState(() {});
Expand Down
2 changes: 1 addition & 1 deletion lib/features/main_editor/main_editor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3118,7 +3118,7 @@ class ProImageEditorState extends State<ProImageEditor>
transitionBuilder: (child, animation) {
return SizeTransition(
sizeFactor: animation,
axisAlignment: -1,
alignment: Alignment.topCenter,
child: child,
);
},
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: pro_image_editor
description: "A Flutter image editor: Seamlessly enhance your images with user-friendly editing features."
version: 12.4.7
version: 12.4.8
homepage: https://github.com/hm21/pro_image_editor/
repository: https://github.com/hm21/pro_image_editor/
documentation: https://github.com/hm21/pro_image_editor/
Expand Down
Loading