diff --git a/sdkjs-plugins/content/autocomplete/config.json b/sdkjs-plugins/content/autocomplete/config.json index 6af7f637..06f58fd4 100644 --- a/sdkjs-plugins/content/autocomplete/config.json +++ b/sdkjs-plugins/content/autocomplete/config.json @@ -29,10 +29,14 @@ "onInputHelperClear", "onInputHelperInput" ], - "storeBackground" : { - "light" : "#F5F5F5", - "dark" : "#F5F5F5" - } + "store": { + "background": { + "light" : "#F5F5F5", + "dark" : "#555555" + }, + "icons": ["resources/img/icon.png", "resources/img/icon@2x.png"], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } \ No newline at end of file diff --git a/sdkjs-plugins/content/deepl/config.json b/sdkjs-plugins/content/deepl/config.json index a3ac866b..c96d9707 100644 --- a/sdkjs-plugins/content/deepl/config.json +++ b/sdkjs-plugins/content/deepl/config.json @@ -66,7 +66,6 @@ } } ], - "screens": ["resources/store/screen_1.png"], "isViewer": true, "EditorsSupport": [ "word", "slide", "cell" ], @@ -82,10 +81,59 @@ "buttons": [], "initOnSelectionChanged": true, - "storeBackground" : { - "light" : "#042B48", - "dark" : "#042B48" - } + "store": { + "background": { + "light" : "#042B48", + "dark" : "#042B48" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "theme" : "flat", + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + }, + "default": { + "normal": "resources/light/icon.png" + } + }, + { + "theme" : "flatDark", + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } diff --git a/sdkjs-plugins/content/doc2md/config.json b/sdkjs-plugins/content/doc2md/config.json index 657d6353..416edeb1 100644 --- a/sdkjs-plugins/content/doc2md/config.json +++ b/sdkjs-plugins/content/doc2md/config.json @@ -51,7 +51,6 @@ } } ], - "screens": ["resources/store/screen_1.png"], "isViewer": true, "EditorsSupport": [ "word" ], @@ -67,10 +66,56 @@ "buttons": [], "initOnSelectionChanged": true, - "storeBackground" : { - "light" : "#333333", - "dark" : "#333333" - } + "store": { + "background": { + "light" : "#333333", + "dark" : "#333333" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png", + "hover": "resources/light/icon.png", + "active": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } }, { "description": "About", diff --git a/sdkjs-plugins/content/drawio/config.json b/sdkjs-plugins/content/drawio/config.json index 7a10af1a..9f832794 100644 --- a/sdkjs-plugins/content/drawio/config.json +++ b/sdkjs-plugins/content/drawio/config.json @@ -61,7 +61,6 @@ } } ], - "screens": ["resources/store/screen_1.png"], "isViewer": false, "EditorsSupport": [ "word", "cell", "slide" ], @@ -100,10 +99,54 @@ ], "size": [ 1200, 1000 ], - "storeBackground" : { - "light" : "#F5F5F5", - "dark" : "#F5F5F5" - } + "store": { + "background": { + "light" : "#F5F5F5", + "dark" : "#F5F5F5" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } diff --git a/sdkjs-plugins/content/easybib/config.json b/sdkjs-plugins/content/easybib/config.json index cd7cd839..e43850bb 100644 --- a/sdkjs-plugins/content/easybib/config.json +++ b/sdkjs-plugins/content/easybib/config.json @@ -17,7 +17,6 @@ "200%": { "normal": "resources/img/icon@2x.png" } } ], - "screens" : ["resources/store/screen_1.png"], "isViewer" : false, "EditorsSupport" : ["word"], "initDataType" : "html", @@ -25,10 +24,23 @@ "isModal" : false, "isInsideMode" : true, "isUpdateOleOnResize" : false, - "storeBackground" : { - "light" : "#F5F5F5", - "dark" : "#F5F5F5" - } + "store": { + "background": { + "light" : "#F5F5F5", + "dark" : "#F5F5F5" + }, + "icons": [ "resources/img/icon.png", "resources/img/icon@2x.png" ], + "icons2": [ + { + "100%": { "normal": "resources/img/icon.png" }, + "125%": { "normal": "resources/img/icon@1.25x.png" }, + "150%": { "normal": "resources/img/icon@1.5x.png" }, + "175%": { "normal": "resources/img/icon@1.75x.png" }, + "200%": { "normal": "resources/img/icon@2x.png" } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } diff --git a/sdkjs-plugins/content/glavred/config.json b/sdkjs-plugins/content/glavred/config.json index e912f855..163e945e 100644 --- a/sdkjs-plugins/content/glavred/config.json +++ b/sdkjs-plugins/content/glavred/config.json @@ -55,7 +55,6 @@ } } ], - "screens" : ["resources/store/screen_1.png"], "isViewer" : true, "EditorsSupport" : ["word"], @@ -69,10 +68,54 @@ "isUpdateOleOnResize" : false, "buttons" : [ { "text": "Ok", "primary": true } ], - "storeBackground" : { - "light" : "#233450", - "dark" : "#233450" - } + "store": { + "background": { + "light" : "#233450", + "dark" : "#233450" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } \ No newline at end of file diff --git a/sdkjs-plugins/content/html/config.json b/sdkjs-plugins/content/html/config.json index e38e3676..d4afb9d4 100644 --- a/sdkjs-plugins/content/html/config.json +++ b/sdkjs-plugins/content/html/config.json @@ -61,7 +61,6 @@ } } ], - "screens": ["resources/store/screen_1.png"], "isViewer": true, "EditorsSupport": [ "word", "cell", "slide" ], @@ -77,10 +76,54 @@ "buttons": [], "initOnSelectionChanged": true, - "storeBackground" : { - "light" : "#F5F5F5", - "dark" : "#F5F5F5" - } + "store": { + "background": { + "light" : "#F5F5F5", + "dark" : "#555555" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } diff --git a/sdkjs-plugins/content/jitsi/config.json b/sdkjs-plugins/content/jitsi/config.json index 10ff1829..70405105 100644 --- a/sdkjs-plugins/content/jitsi/config.json +++ b/sdkjs-plugins/content/jitsi/config.json @@ -49,7 +49,6 @@ } } ], - "screens" : ["resources/store/screen_1.png"], "isViewer" : false, "EditorsSupport" : ["word", "cell", "slide"], @@ -63,10 +62,54 @@ "isUpdateOleOnResize" : false, "buttons" : [], - "storeBackground" : { - "light" : "#2AA0D8", - "dark" : "#2AA0D8" - } + "store": { + "background": { + "light" : "#2AA0D8", + "dark" : "#2AA0D8" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } diff --git a/sdkjs-plugins/content/macros/config.json b/sdkjs-plugins/content/macros/config.json index 917517db..61740f5b 100644 --- a/sdkjs-plugins/content/macros/config.json +++ b/sdkjs-plugins/content/macros/config.json @@ -67,7 +67,6 @@ } } ], - "screens": ["resources/store/screen_1.png"], "isViewer": false, "EditorsSupport": [ "word", "cell", "slide" ], @@ -96,10 +95,54 @@ } } ], - "storeBackground" : { - "light" : "#ED7309", - "dark" : "#ED7309" - } + "store": { + "background": { + "light" : "#ED7309", + "dark" : "#ED7309" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } diff --git a/sdkjs-plugins/content/mendeley/config.json b/sdkjs-plugins/content/mendeley/config.json index 63609c43..fbe63d64 100644 --- a/sdkjs-plugins/content/mendeley/config.json +++ b/sdkjs-plugins/content/mendeley/config.json @@ -48,7 +48,6 @@ } } ], - "screens": ["resources/store/screen_1.png"], "isViewer": false, "EditorsSupport": [ "word" ], "initDataType": "text", @@ -58,10 +57,54 @@ "isInsideMode": true, "isUpdateOleOnResize": false, "initOnSelectionChanged": false, - "storeBackground" : { - "light" : "#E5222E", - "dark" : "#E5222E" - } + "store": { + "background": { + "light" : "#E5222E", + "dark" : "#E5222E" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } diff --git a/sdkjs-plugins/content/ocr/config.json b/sdkjs-plugins/content/ocr/config.json index e4247ffb..e212edcb 100644 --- a/sdkjs-plugins/content/ocr/config.json +++ b/sdkjs-plugins/content/ocr/config.json @@ -62,7 +62,6 @@ } } ], - "screens": ["resources/store/screen_1.png"], "isViewer": false, "EditorsSupport": [ "word" ], @@ -99,10 +98,54 @@ ], "size": [ 592, 100 ], - "storeBackground" : { - "light" : "#042B48", - "dark" : "#042B48" - } + "store": { + "background": { + "light" : "#042B48", + "dark" : "#042B48" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } }, { "description": "About", diff --git a/sdkjs-plugins/content/rainbow/config.json b/sdkjs-plugins/content/rainbow/config.json index fa5a71c7..691c8ec9 100644 --- a/sdkjs-plugins/content/rainbow/config.json +++ b/sdkjs-plugins/content/rainbow/config.json @@ -61,7 +61,6 @@ } } ], - "screens": ["resources/store/screen_1.png"], "isViewer": false, "EditorsSupport": [ "word", "slide", "cell" ], @@ -85,7 +84,55 @@ "de": "Schließen" } } - ] + ], + "store": { + "background": { + "light" : "#F5F5F5", + "dark" : "#F5F5F5" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } }, { "description": "About", @@ -117,11 +164,7 @@ } ], - "size": [ 392, 147 ], - "storeBackground" : { - "light" : "#F5F5F5", - "dark" : "#F5F5F5" - } + "size": [ 392, 147 ] } ] } \ No newline at end of file diff --git a/sdkjs-plugins/content/speech/config.json b/sdkjs-plugins/content/speech/config.json index a6470992..ea945294 100644 --- a/sdkjs-plugins/content/speech/config.json +++ b/sdkjs-plugins/content/speech/config.json @@ -61,7 +61,6 @@ } } ], - "screens": ["resources/store/screen_1.png"], "isViewer": true, "EditorsSupport": [ "word" ], @@ -74,7 +73,55 @@ "isUpdateOleOnResize": false, - "buttons": [] + "buttons": [], + "store": { + "background": { + "light" : "#F5F5F5", + "dark" : "#F5F5F5" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } }, { "description": "Settings", @@ -106,11 +153,7 @@ } ], - "size": [ 300, 150 ], - "storeBackground" : { - "light" : "#F5F5F5", - "dark" : "#F5F5F5" - } + "size": [ 300, 150 ] } ] } diff --git a/sdkjs-plugins/content/telegram/config.json b/sdkjs-plugins/content/telegram/config.json index 95c0986a..03e170e6 100644 --- a/sdkjs-plugins/content/telegram/config.json +++ b/sdkjs-plugins/content/telegram/config.json @@ -18,7 +18,6 @@ "200%": { "normal": "resources/img/icon@2x.png" } } ], - "screens" : ["resources/store/screen_1.png"], "isViewer" : true, "EditorsSupport" : ["word", "cell", "slide"], @@ -32,10 +31,23 @@ "isUpdateOleOnResize" : false, "buttons" : [ ], - "storeBackground" : { - "light" : "#26A8DE", - "dark" : "#26A8DE" - } + "store": { + "background": { + "light" : "#26A8DE", + "dark" : "#26A8DE" + }, + "icons": [ "resources/img/icon.png", "resources/img/icon@2x.png" ], + "icons2": [ + { + "100%": { "normal": "resources/img/icon.png" }, + "125%": { "normal": "resources/img/icon@1.25x.png" }, + "150%": { "normal": "resources/img/icon@1.5x.png" }, + "175%": { "normal": "resources/img/icon@1.75x.png" }, + "200%": { "normal": "resources/img/icon@2x.png" } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } \ No newline at end of file diff --git a/sdkjs-plugins/content/thesaurus/config.json b/sdkjs-plugins/content/thesaurus/config.json index 821429fb..f3b61683 100644 --- a/sdkjs-plugins/content/thesaurus/config.json +++ b/sdkjs-plugins/content/thesaurus/config.json @@ -61,7 +61,6 @@ } } ], - "screens": ["resources/store/screen_1.png"], "isViewer": true, "EditorsSupport": [ "word", "cell", "slide" ], @@ -77,10 +76,54 @@ "buttons": [], "initOnSelectionChanged": true, - "storeBackground" : { - "light" : "#F44725", - "dark" : "#F44725" - } + "store": { + "background": { + "light" : "#F44725", + "dark" : "#F44725" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } diff --git a/sdkjs-plugins/content/translator/config.json b/sdkjs-plugins/content/translator/config.json index 871a6ac6..d300aefe 100644 --- a/sdkjs-plugins/content/translator/config.json +++ b/sdkjs-plugins/content/translator/config.json @@ -46,10 +46,23 @@ "buttons": [], "initOnSelectionChanged": true, - "storeBackground" : { - "light" : "#F5F5F5", - "dark" : "#F5F5F5" - } + "store": { + "background": { + "light" : "#F5F5F5", + "dark" : "#555555" + }, + "icons": [ "resources/img/icon.png", "resources/img/icon@2x.png" ], + "icons2": [ + { + "100%": { "normal": "resources/img/icon.png" }, + "125%": { "normal": "resources/img/icon@1.25x.png" }, + "150%": { "normal": "resources/img/icon@1.5x.png" }, + "175%": { "normal": "resources/img/icon@1.75x.png" }, + "200%": { "normal": "resources/img/icon@2x.png" } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } diff --git a/sdkjs-plugins/content/wordpress/config.json b/sdkjs-plugins/content/wordpress/config.json index c435756a..6a521b1c 100644 --- a/sdkjs-plugins/content/wordpress/config.json +++ b/sdkjs-plugins/content/wordpress/config.json @@ -48,7 +48,6 @@ } } ], - "screens" : ["resources/store/screen_1.png"], "isViewer" : false, "EditorsSupport" : ["word"], "initDataType" : "html", @@ -56,10 +55,54 @@ "isModal" : false, "isInsideMode" : true, "isUpdateOleOnResize" : false, - "storeBackground" : { - "light" : "#F5F5F5", - "dark" : "#F5F5F5" - } + "store": { + "background": { + "light" : "#F5F5F5", + "dark" : "#555555" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } \ No newline at end of file diff --git a/sdkjs-plugins/content/wordscounter/config.json b/sdkjs-plugins/content/wordscounter/config.json index d0727f7a..80972d45 100644 --- a/sdkjs-plugins/content/wordscounter/config.json +++ b/sdkjs-plugins/content/wordscounter/config.json @@ -78,10 +78,54 @@ "initOnSelectionChanged": true, "events" : ["onTargetPositionChanged"], - "storeBackground" : { - "light" : "#ED7309", - "dark" : "#ED7309" - } + "store": { + "background": { + "light" : "#ED7309", + "dark" : "#ED7309" + }, + "icons": [ "resources/light/icon.png", "resources/light/icon@2x.png" ], + "icons2": [ + { + "style" : "light", + + "100%": { + "normal": "resources/light/icon.png" + }, + "125%": { + "normal": "resources/light/icon@1.25x.png" + }, + "150%": { + "normal": "resources/light/icon@1.5x.png" + }, + "175%": { + "normal": "resources/light/icon@1.75x.png" + }, + "200%": { + "normal": "resources/light/icon@2x.png" + } + }, + { + "style" : "dark", + + "100%": { + "normal": "resources/dark/icon.png" + }, + "125%": { + "normal": "resources/dark/icon@1.25x.png" + }, + "150%": { + "normal": "resources/dark/icon@1.5x.png" + }, + "175%": { + "normal": "resources/dark/icon@1.75x.png" + }, + "200%": { + "normal": "resources/dark/icon@2x.png" + } + } + ], + "screenshots" : [] + } } ] } \ No newline at end of file diff --git a/sdkjs-plugins/content/youtube/config.json b/sdkjs-plugins/content/youtube/config.json index 4e79db25..21aae274 100644 --- a/sdkjs-plugins/content/youtube/config.json +++ b/sdkjs-plugins/content/youtube/config.json @@ -18,7 +18,6 @@ "200%": { "normal": "resources/img/icon@2x.png" } } ], - "screens": ["resources/store/screen_1.png"], "isViewer": true, "isDisplayedInViewer": false, "EditorsSupport": [ "word", "cell", "slide" ], @@ -51,10 +50,23 @@ ], "size": [ 350, 90 ], - "storeBackground" : { - "light" : "#FF0000", - "dark" : "#FF0000" - } + "store": { + "background": { + "light" : "#FF0000", + "dark" : "#FF0000" + }, + "icons": [ "resources/img/icon.png", "resources/img/icon@2x.png" ], + "icons2": [ + { + "100%": { "normal": "resources/img/icon.png" }, + "125%": { "normal": "resources/img/icon@1.25x.png" }, + "150%": { "normal": "resources/img/icon@1.5x.png" }, + "175%": { "normal": "resources/img/icon@1.75x.png" }, + "200%": { "normal": "resources/img/icon@2x.png" } + } + ], + "screenshots" : ["resources/store/screen_1.png"] + } } ] } diff --git a/store/resources/img/defaults/dark/icon.png b/store/resources/img/defaults/dark/icon.png new file mode 100644 index 00000000..dc4bd2d5 Binary files /dev/null and b/store/resources/img/defaults/dark/icon.png differ diff --git a/store/resources/img/defaults/dark/icon@1.25x.png b/store/resources/img/defaults/dark/icon@1.25x.png new file mode 100644 index 00000000..851f29c8 Binary files /dev/null and b/store/resources/img/defaults/dark/icon@1.25x.png differ diff --git a/store/resources/img/defaults/dark/icon@1.5x.png b/store/resources/img/defaults/dark/icon@1.5x.png new file mode 100644 index 00000000..821c5e22 Binary files /dev/null and b/store/resources/img/defaults/dark/icon@1.5x.png differ diff --git a/store/resources/img/defaults/dark/icon@1.75x.png b/store/resources/img/defaults/dark/icon@1.75x.png new file mode 100644 index 00000000..d2509ccc Binary files /dev/null and b/store/resources/img/defaults/dark/icon@1.75x.png differ diff --git a/store/resources/img/defaults/dark/icon@2x.png b/store/resources/img/defaults/dark/icon@2x.png new file mode 100644 index 00000000..8b9a7c31 Binary files /dev/null and b/store/resources/img/defaults/dark/icon@2x.png differ diff --git a/store/resources/img/defaults/light/icon.png b/store/resources/img/defaults/light/icon.png new file mode 100644 index 00000000..0dac23f0 Binary files /dev/null and b/store/resources/img/defaults/light/icon.png differ diff --git a/store/resources/img/defaults/light/icon@1.25x.png b/store/resources/img/defaults/light/icon@1.25x.png new file mode 100644 index 00000000..2cf2e282 Binary files /dev/null and b/store/resources/img/defaults/light/icon@1.25x.png differ diff --git a/store/resources/img/defaults/light/icon@1.5x.png b/store/resources/img/defaults/light/icon@1.5x.png new file mode 100644 index 00000000..4cb57c99 Binary files /dev/null and b/store/resources/img/defaults/light/icon@1.5x.png differ diff --git a/store/resources/img/defaults/light/icon@1.75x.png b/store/resources/img/defaults/light/icon@1.75x.png new file mode 100644 index 00000000..34a8b5eb Binary files /dev/null and b/store/resources/img/defaults/light/icon@1.75x.png differ diff --git a/store/resources/img/defaults/light/icon@2x.png b/store/resources/img/defaults/light/icon@2x.png new file mode 100644 index 00000000..3ac235a2 Binary files /dev/null and b/store/resources/img/defaults/light/icon@2x.png differ