8000 Release 0.1.7 · sidworks-dev/sw-db-sync@87a0ca3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 87a0ca3

Browse files
committed
Release 0.1.7
1 parent cb34b3d commit 87a0ca3

11 files changed

+11
-11
lines changed

dist/controllers/mainController.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/controllers/mainController.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/tasks/importTask.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/tasks/importTask.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/tasks/shopwareConfigureTask.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/tasks/shopwareConfigureTask.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sw-db-sync",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"description": "Database synchronizer for Shopware 6",
55
"author": {
66
"name": "Jelle Siderius"

src/controllers/mainController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class MainController {
2828
'databaseFileName': '',
2929
'databaseFullPath': '',
3030
'strip': '',
31-
'syncImages': false,
31+
'syncImages': 'no',
3232
'rsyncInstalled': false,
3333
'import': 'no',
3434
'currentFolderIsShopware': false,

src/tasks/importTask.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class ImportTask {
7171
}
7272
);
7373

74-
if (config.settings.syncImages) {
74+
if (config.settings.syncImages == 'yes') {
7575
this.importTasks.push(
7676
{
7777
title: 'Synchronizing public/media & public/thumbnail',

src/tasks/shopwareConfigureTask.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ShopwareConfigureTask {
3939
}
4040
);
4141

42-
if (!config.settings.syncImages) {
42+
if (config.settings.syncImages == 'no') {
4343
this.configureTasks.push(
4444
{
4545
title: "Emptying media tables",

0 commit comments

Comments
 (0)
0