Skip to content

Commit a6b7d03

Browse files
# Release v1.0.30
## New Features - Added About screen with app information and developer credits (#5 & #11) - Integrated UPI donation functionality in the About screen - Added UPI ID display with copy functionality - Implemented UPI payment options with validation - Added url_launcher plugin registration for cross-platform support (Linux, Windows, macOS) ## UI Improvements - Enhanced footer design with animated heart and updated text styles - Updated social media icons to SVG format - Refined form layout in job scheduling section ## Fixes & Improvements - Updated versioning logic in GitHub Actions - Set new version 1.0.30 in pubspec.yaml - Improved error handling in job scheduling - Reverted to default Android back button behavior ## Refactoring - Cleaned up license dialog and improved creator information layout - Removed unused code - Commented out unused date formatting logic ## Development - Updated GitHub Actions workflow for automated versioning and release process
2 parents a662fce + 783ef41 commit a6b7d03

File tree

5 files changed

+236
-464
lines changed

5 files changed

+236
-464
lines changed

android/app/src/main/AndroidManifest.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,22 @@
4242
<action android:name="android.intent.action.PROCESS_TEXT"/>
4343
<data android:mimeType="text/plain"/>
4444
</intent>
45+
<intent>
46+
<action android:name="android.intent.action.VIEW" />
47+
<data android:scheme="upi" />
48+
</intent>
49+
<intent>
50+
<action android:name="android.intent.action.VIEW" />
51+
<data android:scheme="tez" />
52+
</intent>
53+
<intent>
54+
<action android:name="android.intent.action.VIEW" />
55+
<data android:scheme="phonepe" />
56+
</intent>
57+
<intent>
58+
<action android:name="android.intent.action.VIEW" />
59+
<data android:scheme="paytmmp" />
60+
</intent>
4561
</queries>
4662

4763
<uses-permission android:name="android.permission.INTERNET"/>

ios/Runner/Info.plist

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@
4343
<string>UIInterfaceOrientationLandscapeLeft</string>
4444
<string>UIInterfaceOrientationLandscapeRight</string>
4545
</array>
46+
<key>LSApplicationQueriesSchemes</key>
47+
<array>
48+
<string>upi</string>
49+
<string>tez</string>
50+
<string>phonepe</string>
51+
<string>paytmmp</string>
52+
</array>
4653
<key>CADisableMinimumFrameDurationOnPhone</key>
4754
<true/>
4855
<key>UIApplicationSupportsIndirectInputEvents</key>

lib/presentation/screens/about/index.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import 'package:lottie/lottie.dart';
55
import 'package:package_info_plus/package_info_plus.dart';
66
import 'package:sysadmin/core/utils/color_extension.dart';
77
import 'package:sysadmin/core/widgets/ios_scaffold.dart';
8-
import 'package:sysadmin/presentation/screens/about/upi.dart';
8+
import 'package:sysadmin/presentation/screens/about/upi_donation_screen.dart';
99
import 'package:url_launcher/url_launcher.dart';
1010

1111
class AboutScreen extends StatefulWidget {

lib/presentation/screens/about/upi.dart

Lines changed: 0 additions & 159 deletions
This file was deleted.

0 commit comments

Comments
 (0)