Skip to content

Commit 0876770

Browse files
committed
changelog + version increment
1 parent d81056d commit 0876770

File tree

10 files changed

+40
-21
lines changed

10 files changed

+40
-21
lines changed

feedback/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [3.2.0]
2+
3+
- Hebrew translations
4+
- Bangla translations
5+
- Fixed an issue with focus on web (https://github.com/ueman/feedback/pull/359)
6+
- Bump to Flutter 3.24 and Dart 3.5
7+
18
## [3.1.0]
29

310
- Fix dialog pop issue [#293](https://github.com/ueman/feedback/pull/293). This may break custom feedback builder. Make sure to test those before updating.

feedback/example/lib/main.dart

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,11 @@ class MyHomePage extends StatelessWidget {
171171
await writeImageToStorage(feedback.screenshot);
172172

173173
// ignore: deprecated_member_use
174-
await Share.shareFiles(
175-
[screenshotFilePath],
176-
text: feedback.text,
174+
await SharePlus.instance.share(
175+
ShareParams(
176+
text: feedback.text,
177+
files: [XFile(screenshotFilePath)],
178+
),
177179
);
178180
},
179181
);

feedback/example/macos/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
platform :osx, '10.11'
1+
platform :osx, '10.14'
22

33
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
44
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

feedback/example/macos/Runner.xcodeproj/project.pbxproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 51;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXAggregateTarget section */
@@ -203,7 +203,7 @@
203203
isa = PBXProject;
204204
attributes = {
205205
LastSwiftUpdateCheck = 0920;
206-
LastUpgradeCheck = 0930;
206+
LastUpgradeCheck = 1510;
207207
ORGANIZATIONNAME = "";
208208
TargetAttributes = {
209209
33CC10EC2044A3C60003C045 = {
@@ -273,6 +273,7 @@
273273
};
274274
3399D490228B24CF009A79C7 /* ShellScript */ = {
275275
isa = PBXShellScriptBuildPhase;
276+
alwaysOutOfDate = 1;
276277
buildActionMask = 2147483647;
277278
files = (
278279
);
@@ -404,7 +405,7 @@
404405
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
405406
GCC_WARN_UNUSED_FUNCTION = YES;
406407
GCC_WARN_UNUSED_VARIABLE = YES;
407-
MACOSX_DEPLOYMENT_TARGET = 10.11;
408+
MACOSX_DEPLOYMENT_TARGET = 10.14;
408409
MTL_ENABLE_DEBUG_INFO = NO;
409410
SDKROOT = macosx;
410411
SWIFT_COMPILATION_MODE = wholemodule;
@@ -483,7 +484,7 @@
483484
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
484485
GCC_WARN_UNUSED_FUNCTION = YES;
485486
GCC_WARN_UNUSED_VARIABLE = YES;
486-
MACOSX_DEPLOYMENT_TARGET = 10.11;
487+
MACOSX_DEPLOYMENT_TARGET = 10.14;
487488
MTL_ENABLE_DEBUG_INFO = YES;
488489
ONLY_ACTIVE_ARCH = YES;
489490
SDKROOT = macosx;
@@ -530,7 +531,7 @@
530531
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
531532
GCC_WARN_UNUSED_FUNCTION = YES;
532533
GCC_WARN_UNUSED_VARIABLE = YES;
533-
MACOSX_DEPLOYMENT_TARGET = 10.11;
534+
MACOSX_DEPLOYMENT_TARGET = 10.14;
534535
MTL_ENABLE_DEBUG_INFO = NO;
535536
SDKROOT = macosx;
536537
SWIFT_COMPILATION_MODE = wholemodule;

feedback/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1000"
3+
LastUpgradeVersion = "1510"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -48,6 +48,7 @@
4848
ignoresPersistentStateOnLaunch = "NO"
4949
debugDocumentVersioning = "YES"
5050
debugServiceExtension = "internal"
51+
enableGPUValidationMode = "1"
5152
allowLocationSimulation = "YES">
5253
<BuildableProductRunnable
5354
runnableDebuggingMode = "0">
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
import Cocoa
22
import FlutterMacOS
33

4-
@NSApplicationMain
4+
@main
55
class AppDelegate: FlutterAppDelegate {
66
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
77
return true
88
}
9+
10+
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
11+
return true
12+
}
913
}

feedback/example/pubspec.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@ publish_to: none
66
version: 1.0.0+1
77

88
environment:
9-
sdk: '>=3.0.0 <4.0.0'
10-
flutter: '>=3.10.0'
9+
sdk: '>=3.5.0 <4.0.0'
10+
flutter: '>=3.24.0'
1111

1212
dependencies:
1313
cupertino_icons: ^1.0.3
1414
feedback:
1515
path: ../../feedback
1616
flutter:
1717
sdk: flutter
18-
flutter_email_sender: ^6.0.2
18+
flutter_email_sender: ^7.0.0
1919
flutter_localizations:
2020
sdk: flutter
21-
flutter_markdown: ^0.6.18
21+
flutter_markdown: ^0.7.7+1
2222
http: ^1.0.0
2323
path_provider: ^2.1.1
24-
share_plus: ^7.2.1
25-
url_launcher: ^6.1.14
24+
share_plus: ^11.0.0
25+
url_launcher: ^6.3.1
2626

2727
dev_dependencies:
2828
flutter_lints: ^5.0.0

feedback/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: feedback
22
description: A Flutter package for getting better feedback. It allows the user to give interactive feedback directly in the app.
3-
version: 3.1.0
3+
version: 3.2.0
44
homepage: https://uekoetter.dev/
55
repository: https://github.com/ueman/feedback
66
issue_tracker: https://github.com/ueman/feedback/issues
@@ -9,8 +9,8 @@ funding:
99
- https://github.com/sponsors/ueman
1010

1111
environment:
12-
sdk: '>=3.0.0 <4.0.0'
13-
flutter: '>=3.10.0'
12+
sdk: '>=3.5.0 <4.0.0'
13+
flutter: '>=3.24.0'
1414

1515
dependencies:
1616
flutter:

feedback_sentry/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.2.0
2+
3+
* Require `sentry ^9.0.0`
4+
15
## 3.1.0
26

37
* Require `sentry ^8.10.0`

feedback_sentry/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: feedback_sentry
22
description: A Flutter package for getting better feedback. It allows the user to give interactive feedback directly in the app and upload it to Sentry.io
3-
version: 3.1.0
3+
version: 3.2.0
44
homepage: https://uekoetter.dev
55
repository: https://github.com/ueman/feedback
66
issue_tracker: https://github.com/ueman/feedback/issues

0 commit comments

Comments
 (0)