Skip to content

Commit

Permalink
Merge pull request #81 from melton-foundation/pranav_beta_fixes
Browse files Browse the repository at this point in the history
fix,chore: iOS non-Safari default browser bug, prepare release v1.1.1+4
  • Loading branch information
pranavsb authored Nov 13, 2020
2 parents 5d9a50f + 5b72082 commit 77dae51
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 11 deletions.
Binary file modified docs/images/directory_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3;
CURRENT_PROJECT_VERSION = 4;
DEVELOPMENT_TEAM = PN7FU82PWA;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -402,7 +402,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 1.1.0;
MARKETING_VERSION = 1.1.1;
PRODUCT_BUNDLE_IDENTIFIER = com.meltonApp;
PRODUCT_NAME = "Melton App";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -529,7 +529,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3;
CURRENT_PROJECT_VERSION = 4;
DEVELOPMENT_TEAM = PN7FU82PWA;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -545,7 +545,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 1.1.0;
MARKETING_VERSION = 1.1.1;
PRODUCT_BUNDLE_IDENTIFIER = com.meltonApp;
PRODUCT_NAME = "Melton App";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -566,7 +566,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 3;
CURRENT_PROJECT_VERSION = 4;
DEVELOPMENT_TEAM = PN7FU82PWA;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
Expand All @@ -582,7 +582,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
MARKETING_VERSION = 1.1.0;
MARKETING_VERSION = 1.1.1;
PRODUCT_BUNDLE_IDENTIFIER = com.meltonApp;
PRODUCT_NAME = "Melton App";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
9 changes: 7 additions & 2 deletions ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
Expand All @@ -34,7 +34,12 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>https</string>
<string>http</string>
</array>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIBackgroundModes</key>
Expand Down
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'dart:async';

import 'package:get_it/get_it.dart';
import 'package:melton_app/Notification/NotificationBuilder.dart';
import 'package:melton_app/notification/notification_builder.dart';
import 'package:melton_app/models/PostsNotificationModel.dart';
import 'package:melton_app/sentry/SentryService.dart';
import 'package:melton_app/util/token_handler.dart';
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/screens/directory.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import 'package:flutter/material.dart';
import 'package:melton_app/Notification/NotificationBuilder.dart';
import 'package:melton_app/notification/notification_builder.dart';
import 'package:melton_app/api/userSearchService.dart';
import 'package:melton_app/constants/constants.dart';
import 'package:melton_app/screens/DirectoryComponents/UserSearch.dart';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: App for Melton Foundation Fellows - https://meltonapp.com/

publish_to: 'none'

version: 1.1.0+3
version: 1.1.1+4

environment:
sdk: ">=2.7.0 <3.0.0"
Expand Down

0 comments on commit 77dae51

Please sign in to comment.