Browse Source

Merge pull request #764 from ente-io/fix_padding_social

Minor UI Fixes
Neeraj Gupta 2 years ago
parent
commit
ee19fd8687

+ 4 - 4
ios/Runner.xcodeproj/project.pbxproj

@@ -180,7 +180,7 @@
 				TargetAttributes = {
 					97C146ED1CF9000F007C117D = {
 						CreatedOnToolsVersion = 7.3.1;
-						DevelopmentTeam = 2BUSYC7FN9;
+						DevelopmentTeam = 6Z68YJY9Q2;
 						LastSwiftMigration = 1100;
 						ProvisioningStyle = Automatic;
 					};
@@ -494,7 +494,7 @@
 				CODE_SIGN_IDENTITY = "Apple Development";
 				CODE_SIGN_STYLE = Automatic;
 				CURRENT_PROJECT_VERSION = 11;
-				DEVELOPMENT_TEAM = 2BUSYC7FN9;
+				DEVELOPMENT_TEAM = 6Z68YJY9Q2;
 				ENABLE_BITCODE = NO;
 				FRAMEWORK_SEARCH_PATHS = (
 					"$(inherited)",
@@ -651,7 +651,7 @@
 				CODE_SIGN_IDENTITY = "Apple Development";
 				CODE_SIGN_STYLE = Automatic;
 				CURRENT_PROJECT_VERSION = 11;
-				DEVELOPMENT_TEAM = 2BUSYC7FN9;
+				DEVELOPMENT_TEAM = 6Z68YJY9Q2;
 				ENABLE_BITCODE = NO;
 				FRAMEWORK_SEARCH_PATHS = (
 					"$(inherited)",
@@ -685,7 +685,7 @@
 				CODE_SIGN_IDENTITY = "Apple Development";
 				CODE_SIGN_STYLE = Automatic;
 				CURRENT_PROJECT_VERSION = 11;
-				DEVELOPMENT_TEAM = 2BUSYC7FN9;
+				DEVELOPMENT_TEAM = 6Z68YJY9Q2;
 				ENABLE_BITCODE = NO;
 				FRAMEWORK_SEARCH_PATHS = (
 					"$(inherited)",

+ 0 - 1
lib/ui/settings/social_section_widget.dart

@@ -32,7 +32,6 @@ class SocialSectionWidget extends StatelessWidget {
     );
     options.addAll(
       [
-        sectionOptionSpacing,
         const SocialsMenuItemWidget("Blog", "https://ente.io/blog"),
         sectionOptionSpacing,
         const SocialsMenuItemWidget("Twitter", "https://twitter.com/enteio"),

+ 2 - 2
lib/ui/viewer/actions/delete_empty_albums.dart

@@ -37,7 +37,7 @@ class _DeleteEmptyAlbumsState extends State<DeleteEmptyAlbums> {
         onTap: () async {
           await showActionSheet(
             context: context,
-            isDismissible: false,
+            isDismissible: true,
             buttons: [
               ButtonWidget(
                 labelText: "Yes",
@@ -91,7 +91,7 @@ class _DeleteEmptyAlbumsState extends State<DeleteEmptyAlbums> {
     for (int i = 0; i < collections.length; i++) {
       if (mounted && !_isCancelled) {
         _deleteProgress.value =
-            "Deleting ${(i + 1).toString().padLeft(collections.length.toString().length, '0')}/ "
+            "Deleting ${(i + 1).toString().padLeft(collections.length.toString().length, '0')} / "
             "${collections.length} ";
         try {
           await CollectionsService.instance

+ 1 - 1
pubspec.yaml

@@ -12,7 +12,7 @@ description: ente photos application
 # Read more about iOS versioning at
 # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
 
-version: 0.7.0+400
+version: 0.7.3+403
 
 environment:
   sdk: '>=2.17.0 <3.0.0'