Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
EddyVerbruggen committed Feb 24, 2020
1 parent e33cc23 commit 48ba24f
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion demo-ng/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"nativescript-angular": "~8.0.3",
"nativescript-camera": "~4.5.0",
"nativescript-imagepicker": "~6.3.0",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.4.0.tgz",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
"nativescript-theme-core": "~1.0.6",
"reflect-metadata": "~0.1.13",
"rxjs": "~6.5.2",
Expand Down
3 changes: 1 addition & 2 deletions demo-push/app/push-view-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,7 @@ export class PushViewModel extends Observable {
}, 500);
},

// Whether you want this plugin to automatically display the notifications or just notify the callback. Currently used on iOS only. Default true.
showNotifications: false,
showNotifications: true,

// Whether you want this plugin to always handle the notifications when the app is in foreground.
// Currently used on iOS only. Default false.
Expand Down
2 changes: 1 addition & 1 deletion demo-push/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
},
"dependencies": {
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.4.0.tgz",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
"nativescript-theme-core": "~1.0.6",
"nativescript-unit-test-runner": "0.7.0",
"tns-core-modules": "~6.3.2"
Expand Down
2 changes: 1 addition & 1 deletion demo-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
},
"dependencies": {
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.4.0.tgz",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
"nativescript-theme-core": "~1.0.6",
"nativescript-vue": "~2.4.0",
"tns-core-modules": "~6.3.2"
Expand Down
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"firebase-functions": "^2.0.5",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.4.0.tgz",
"nativescript-plugin-firebase": "file:../publish/package/nativescript-plugin-firebase-10.5.0.tgz",
"nativescript-theme-core": "^1.0.4",
"nativescript-unit-test-runner": "0.7.0",
"tns-core-modules": "~6.3.2"
Expand Down
2 changes: 1 addition & 1 deletion src/firebase.ios.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as application from "tns-core-modules/application/application";
import { device } from "tns-core-modules/platform";
import { ActionCodeSettings, DataSnapshot, FBDataSingleEvent, firestore, GetAuthTokenOptions, IdTokenResult, OnDisconnect as OnDisconnectBase, QueryOptions, User } from "./firebase";
import { DocumentSnapshot as DocumentSnapshotBase, FieldValue, firebase, GeoPoint, isDocumentReference } from "./firebase-common";
import * as firebaseFunctions from './functions/functions';
import * as firebaseFunctions from "./functions/functions";
import * as firebaseMessaging from "./messaging/messaging";
import { firebaseUtils } from "./utils";
import { getNonce, Sha256 } from "./utils/nonce-util-ios";
Expand Down
2 changes: 1 addition & 1 deletion src/messaging/messaging.ios.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { DelegateObserver, SharedNotificationDelegate } from "nativescript-shared-notification-delegate";
import * as applicationSettings from "tns-core-modules/application-settings";
import * as application from "tns-core-modules/application/application";
import { device } from "tns-core-modules/platform/platform";
import { MessagingOptions } from "../firebase";
import { DelegateObserver, SharedNotificationDelegate } from "nativescript-shared-notification-delegate";
import { firebase } from "../firebase-common";
import { firebaseUtils } from "../utils";
import { IosInteractiveNotificationAction, IosInteractiveNotificationCategory, IosInteractiveNotificationType } from "./messaging";
Expand Down
4 changes: 2 additions & 2 deletions src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nativescript-plugin-firebase",
"version": "10.4.0",
"version": "10.5.0",
"description": "Fire. Base. Firebase!",
"main": "firebase",
"typings": "index.d.ts",
Expand Down Expand Up @@ -135,7 +135,7 @@
"dependencies": {
"fs-extra": "~2.1.0",
"nativescript-hook": "~0.2.5",
"nativescript-shared-notification-delegate": "1.0.0",
"nativescript-shared-notification-delegate": "~1.0.0",
"prompt-lite": "~0.1.1",
"xcode": "~0.9.3",
"semver": "~5.7.1"
Expand Down

0 comments on commit 48ba24f

Please sign in to comment.