-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from mprasil/beta
Merge Beta to master
- Loading branch information
Showing
19 changed files
with
457 additions
and
216 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- a/src/app/services/services.module.ts | ||
+++ b/src/app/services/services.module.ts | ||
@@ -116,17 +116,15 @@ const exportService = new ExportService(folderService, cipherService, apiService | ||
const importService = new ImportService(cipherService, folderService, apiService, i18nService, collectionService); | ||
const auditService = new AuditService(cryptoFunctionService, apiService); | ||
|
||
-const analytics = new Analytics(window, () => platformUtilsService.isDev() || platformUtilsService.isSelfHost(), | ||
+const analytics = new Analytics(window, () => platformUtilsService.isDev() || platformUtilsService.isSelfHost() || true, | ||
platformUtilsService, storageService, appIdService); | ||
containerService.attachToWindow(window); | ||
|
||
export function initFactory(): Function { | ||
return async () => { | ||
await (storageService as HtmlStorageService).init(); | ||
- const isDev = platformUtilsService.isDev(); | ||
- if (!isDev && platformUtilsService.isSelfHost()) { | ||
- environmentService.baseUrl = window.location.origin; | ||
- } | ||
+ const isDev = false; | ||
+ environmentService.baseUrl = window.location.origin; | ||
await apiService.setUrls({ | ||
base: isDev ? null : window.location.origin, | ||
api: isDev ? 'http://localhost:4000' : null, |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
nightly-2018-06-26 | ||
nightly-2018-07-18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.