Skip to content

Commit ff3d7cf

Browse files
committed
Merge branch 'develop' into beta
2 parents 1ca7366 + 04735b7 commit ff3d7cf

26 files changed

+479
-416
lines changed

app.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class ArcInit {
2222
/* global ipc, ArcContextMenu, ArcElectronDrive, OAuth2Handler,
2323
ThemeManager, ArcPreferencesProxy, CookieBridge, WorkspaceManager,
2424
FilesystemProxy, ElectronAmfService, versionInfo, WindowSearchService,
25-
UpgradeHelper, ImportFilePrePprocessor */
25+
UpgradeHelper, ImportFilePrePprocessor, EncryptionService */
2626
this.created = false;
2727
this.contextActions = new ArcContextMenu();
2828
this.driveBridge = new ArcElectronDrive();
@@ -33,6 +33,7 @@ class ArcInit {
3333
this.fs = new FilesystemProxy();
3434
this.amfService = new ElectronAmfService();
3535
this.search = new WindowSearchService();
36+
this.encryption = new EncryptionService();
3637
}
3738
/**
3839
* @return {ImportFilePrePprocessor} Instance of import processor class.
@@ -66,6 +67,7 @@ class ArcInit {
6667
this.fs.listen();
6768
this.amfService.listen();
6869
this.search.listen();
70+
this.encryption.listen();
6971

7072
ipc.on('checking-for-update', () => {
7173
this.updateEventHandler('checking-for-update');

appresources/themes/@advanced-rest-client/arc-electron-anypoint-theme/arc-electron-anypoint-theme

Lines changed: 0 additions & 1 deletion
This file was deleted.

appresources/themes/@advanced-rest-client/arc-electron-anypoint-theme/arc-electron-anypoint-theme.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,4 +338,5 @@ body {
338338
--arc-toolbar-back-icon-color: #000;
339339
--arc-env-selector-background-color: transparent;
340340
--arc-env-selector-color: #000;
341+
--arc-toolbar-icon-color: #fff;
341342
}

appresources/themes/@advanced-rest-client/arc-electron-anypoint-theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@advanced-rest-client/arc-electron-anypoint-theme",
33
"description": "Anypoint theme definition for Advanced REST Client",
4-
"version": "3.0.0",
4+
"version": "3.0.2",
55
"license": "Apache-2.0",
66
"main": "arc-electron-anypoint-theme.css",
77
"authors": [

appresources/themes/@advanced-rest-client/arc-electron-dark-theme/arc-electron-dark-theme.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ body {
247247
--arc-env-container-color: #fff;
248248
--arc-toolbar-variables-toggle-icon-color: #fff;
249249
--arc-toolbar-back-icon-color: #fff;
250+
--arc-toolbar-icon-color: #fff;
250251
}
251252

252253
body[narrow] {

appresources/themes/@advanced-rest-client/arc-electron-dark-theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@advanced-rest-client/arc-electron-dark-theme",
33
"description": "Dark theme definition for Advanced REST Client",
4-
"version": "3.0.0",
4+
"version": "3.0.2",
55
"license": "Apache-2.0",
66
"main": "arc-electron-dark-theme.css",
77
"authors": [

appresources/themes/@advanced-rest-client/arc-electron-default-theme/arc-electron-default-theme.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ body {
136136
--arc-env-container-color: #fff;
137137
--arc-toolbar-variables-toggle-icon-color: #fff;
138138
--arc-toolbar-back-icon-color: #fff;
139+
--arc-toolbar-icon-color: #fff;
139140
}
140141

141142
body[narrow] {

appresources/themes/@advanced-rest-client/arc-electron-default-theme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@advanced-rest-client/arc-electron-default-theme",
33
"description": "A default theme definition for Advanced REST Client",
4-
"version": "3.0.0",
4+
"version": "3.0.2",
55
"license": "Apache-2.0",
66
"main": "arc-electron-default-theme.css",
77
"authors": [

appresources/themes/themes-info.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"_id": "advanced-rest-client/arc-electron-default-theme",
77
"title": "Default theme",
88
"name": "@advanced-rest-client/arc-electron-default-theme",
9-
"version": "3.0.0",
9+
"version": "3.0.2",
1010
"location": "@advanced-rest-client/arc-electron-default-theme",
1111
"mainFile": "@advanced-rest-client/arc-electron-default-theme/arc-electron-default-theme.css",
1212
"description": "Advanced REST Client default theme",
@@ -16,7 +16,7 @@
1616
"_id": "advanced-rest-client/arc-electron-anypoint-theme",
1717
"title": "Anypoint theme",
1818
"name": "@advanced-rest-client/arc-electron-anypoint-theme",
19-
"version": "3.0.0",
19+
"version": "3.0.2",
2020
"location": "@advanced-rest-client/arc-electron-anypoint-theme",
2121
"mainFile": "@advanced-rest-client/arc-electron-anypoint-theme/arc-electron-anypoint-theme.css",
2222
"description": "Advanced REST Client anypoint theme",
@@ -26,7 +26,7 @@
2626
"_id": "advanced-rest-client/arc-electron-dark-theme",
2727
"title": "Dark theme",
2828
"name": "@advanced-rest-client/arc-electron-dark-theme",
29-
"version": "3.0.0",
29+
"version": "3.0.2",
3030
"location": "@advanced-rest-client/arc-electron-dark-theme",
3131
"mainFile": "@advanced-rest-client/arc-electron-dark-theme/arc-electron-dark-theme.css",
3232
"description": "Advanced REST Client dark theme",

appveyor.yml

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

0 commit comments

Comments
 (0)