diff --git a/Dockerfile b/Dockerfile index 67fd615f77..ac9f42dc44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -196,7 +196,7 @@ RUN mkdir /var/www/cms/openooh \ && curl -o /var/www/cms/openooh/specification.json https://raw.githubusercontent.com/openooh/venue-taxonomy/main/specification.json # Help Links -RUN curl -o help_links.yaml https://raw.githubusercontent.com/xibosignage/xibo-manual/develop/help_links.yaml || true +RUN curl -o help-links.yaml https://raw.githubusercontent.com/xibosignage/xibo-manual/develop/help-links.yaml || true # Git commit fallback RUN echo $GIT_COMMIT > /var/www/cms/commit.sha diff --git a/lib/Controller/Connector.php b/lib/Controller/Connector.php index 19713a3486..5bd752eb17 100644 --- a/lib/Controller/Connector.php +++ b/lib/Controller/Connector.php @@ -73,11 +73,13 @@ public function grid(Request $request, Response $response) // Instantiate and decorate the entity try { $connector->decorate($this->connectorFactory->create($connector)); - } catch (NotFoundException $ignored) { + } catch (NotFoundException) { $this->getLog()->info('Connector installed which is not found in this CMS. ' . $connector->className); + $connector->setUnmatchedProperty('isHidden', 1); } catch (\Exception $e) { $this->getLog()->error('Incorrectly configured connector ' . $connector->className . '. e=' . $e->getMessage()); + $connector->setUnmatchedProperty('isHidden', 1); } } diff --git a/lib/Controller/PlaylistDashboard.php b/lib/Controller/PlaylistDashboard.php index 45627d99db..edbcd2531c 100644 --- a/lib/Controller/PlaylistDashboard.php +++ b/lib/Controller/PlaylistDashboard.php @@ -201,6 +201,7 @@ public function show(Request $request, Response $response, $id) $module = $this->moduleFactory->getByType($widget->type); $widget->setUnmatchedProperty('name', $widget->getOptionValue('name', $module->name)); $widget->setUnmatchedProperty('regionSpecific', $module->regionSpecific); + $widget->setUnmatchedProperty('moduleIcon', $module->icon); // Check my permissions if ($module->regionSpecific == 0) { diff --git a/lib/Controller/Region.php b/lib/Controller/Region.php index 6836e00926..99e9211611 100644 --- a/lib/Controller/Region.php +++ b/lib/Controller/Region.php @@ -240,7 +240,7 @@ public function add(Request $request, Response $response, $id) $region = $this->regionFactory->create( $sanitizedParams->getString('type', ['default' => 'frame']), $this->getUser()->userId, - $layout->layout . '-' . (count($layout->regions) + 1), + '', $sanitizedParams->getInt('width', ['default' => 250]), $sanitizedParams->getInt('height', ['default' => 250]), $sanitizedParams->getInt('top', ['default' => 50]), diff --git a/lib/Entity/Module.php b/lib/Entity/Module.php index 895ff3fa68..28dc823965 100644 --- a/lib/Entity/Module.php +++ b/lib/Entity/Module.php @@ -68,6 +68,12 @@ class Module implements \JsonSerializable */ public $description; + /** + * @SWG\Property(description="An icon to use in the toolbar") + * @var string + */ + public $icon; + /** * @SWG\Property(description="The type code for this module") * @var string diff --git a/lib/Entity/ModuleTemplate.php b/lib/Entity/ModuleTemplate.php index e410c7ce82..9af2a56510 100644 --- a/lib/Entity/ModuleTemplate.php +++ b/lib/Entity/ModuleTemplate.php @@ -51,6 +51,12 @@ class ModuleTemplate implements \JsonSerializable /** @var string The title */ public $title; + /** + * Icon + * @var string + */ + public $icon; + /** * Thumbnail * this is the location to a module template's thumbnail, which should be added to the installation diff --git a/lib/Factory/ModuleFactory.php b/lib/Factory/ModuleFactory.php index 829915e23f..89ebdf3de4 100644 --- a/lib/Factory/ModuleFactory.php +++ b/lib/Factory/ModuleFactory.php @@ -646,6 +646,7 @@ private function createFromXml(string $file, array $modulesWithSettings): Module $module->name = __($this->getFirstValueOrDefaultFromXmlNode($xml, 'name')); $module->author = $this->getFirstValueOrDefaultFromXmlNode($xml, 'author'); $module->description = __($this->getFirstValueOrDefaultFromXmlNode($xml, 'description')); + $module->icon = $this->getFirstValueOrDefaultFromXmlNode($xml, 'icon'); $module->class = $this->getFirstValueOrDefaultFromXmlNode($xml, 'class'); $module->type = $this->getFirstValueOrDefaultFromXmlNode($xml, 'type'); $module->thumbnail = $this->getFirstValueOrDefaultFromXmlNode($xml, 'thumbnail'); diff --git a/lib/Factory/ModuleTemplateFactory.php b/lib/Factory/ModuleTemplateFactory.php index 05945afafd..e7baf0b8e6 100644 --- a/lib/Factory/ModuleTemplateFactory.php +++ b/lib/Factory/ModuleTemplateFactory.php @@ -226,6 +226,7 @@ private function createFromXml(\DOMElement $xml): ModuleTemplate $template->dataType = $this->getFirstValueOrDefaultFromXmlNode($xml, 'dataType'); $template->title = __($this->getFirstValueOrDefaultFromXmlNode($xml, 'title')); $template->thumbnail = $this->getFirstValueOrDefaultFromXmlNode($xml, 'thumbnail'); + $template->icon = $this->getFirstValueOrDefaultFromXmlNode($xml, 'icon'); $template->isVisible = $this->getFirstValueOrDefaultFromXmlNode($xml, 'isVisible') !== 'false'; $template->startWidth = intval($this->getFirstValueOrDefaultFromXmlNode($xml, 'startWidth')); $template->startHeight = intval($this->getFirstValueOrDefaultFromXmlNode($xml, 'startHeight')); diff --git a/lib/Service/HelpService.php b/lib/Service/HelpService.php index 20a7734377..e4bdc5a1bb 100644 --- a/lib/Service/HelpService.php +++ b/lib/Service/HelpService.php @@ -65,7 +65,6 @@ private function loadLinks(): void if (file_exists(PROJECT_ROOT . '/custom/help-links.yaml')) { $links = (array)Yaml::parseFile(PROJECT_ROOT . '/custom/help-links.yaml'); } else if (file_exists(PROJECT_ROOT . '/help-links.yaml')) { - // TODO: pull these in from the manual on build. $links = (array)Yaml::parseFile(PROJECT_ROOT . '/help-links.yaml'); } else { $this->links = []; @@ -76,11 +75,16 @@ private function loadLinks(): void } // Parse links. + $this->links = []; + foreach ($links as $pageName => $page) { + // New page + $this->links[$pageName] = []; + foreach ($page as $link) { $helpLink = new HelpLink($link); if (!Str::startsWith($helpLink->url, ['http://', 'https://'])) { - $helpLink->url = $this->helpBase .= $helpLink->url; + $helpLink->url = $this->helpBase . $helpLink->url; } if (!empty($helpLink->summary)) { $helpLink->summary = \Parsedown::instance()->line($helpLink->summary); diff --git a/lib/Widget/Render/WidgetHtmlRenderer.php b/lib/Widget/Render/WidgetHtmlRenderer.php index 8794007298..161173ae7b 100644 --- a/lib/Widget/Render/WidgetHtmlRenderer.php +++ b/lib/Widget/Render/WidgetHtmlRenderer.php @@ -160,7 +160,8 @@ public function preview( // Render an icon. return $this->twig->fetch('module-icon-preview.twig', [ 'moduleName' => $module->name, - 'moduleType' => $module->type + 'moduleType' => $module->type, + 'moduleIcon' => $module->icon, ]); } diff --git a/lib/XTR/WidgetSyncTask.php b/lib/XTR/WidgetSyncTask.php index bdea7221f4..fe0796aef0 100644 --- a/lib/XTR/WidgetSyncTask.php +++ b/lib/XTR/WidgetSyncTask.php @@ -71,6 +71,7 @@ public function run() // Track the total time we've spent caching $timeCaching = 0.0; $countWidgets = 0; + $cutOff = Carbon::now()->subHours(2); // Update for widgets which are active on displays, or for displays which have been active recently. $sql = ' @@ -84,7 +85,7 @@ public function run() '; $smt = $this->store->getConnection()->prepare($sql); - $smt->execute(['lastAccessed' => Carbon::now()->subHours(2)]); + $smt->execute(['lastAccessed' => $cutOff->unix()]); $row = true; while ($row) { @@ -166,7 +167,7 @@ public function run() } // Remove display_media records which have not been touched for a defined period of time. - $this->removeOldDisplayLinks(); + $this->removeOldDisplayLinks($cutOff); $this->log->info('Total time spent caching is ' . $timeCaching . ', synced ' . $countWidgets . ' widgets'); @@ -337,15 +338,27 @@ private function linkDisplays(array $displays, array $mediaIds): void } /** - * Remove any display/media links which are older than $days days - * @param int $days + * Remove any display/media links which have expired. + * @param Carbon $cutOff * @return void */ - private function removeOldDisplayLinks(int $days = 5): void + private function removeOldDisplayLinks(Carbon $cutOff): void { - $sql = 'DELETE FROM `display_media` WHERE `modifiedAt` < :modifiedAt'; + $sql = ' + DELETE + FROM `display_media` + WHERE `modifiedAt` < :modifiedAt + AND `display_media`.`displayId` IN ( + SELECT `displayId` + FROM `display` + WHERE `display`.`loggedIn` = 1 + OR `display`.`lastAccessed` > :lastAccessed + ) + '; + $this->store->update($sql, [ - 'modifiedAt' => Carbon::now()->subDays($days)->format(DateFormatHelper::getSystemFormat()), + 'modifiedAt' => Carbon::now()->subDay()->format(DateFormatHelper::getSystemFormat()), + 'lastAccessed' => $cutOff->unix(), ]); } } diff --git a/modules/assets/template-thumbnails/article/elements/article-author.png b/modules/assets/template-thumbnails/article/elements/article-author.png deleted file mode 100644 index bf2bfc0705..0000000000 Binary files a/modules/assets/template-thumbnails/article/elements/article-author.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/article/elements/article-content.png b/modules/assets/template-thumbnails/article/elements/article-content.png deleted file mode 100644 index e713ec51c6..0000000000 Binary files a/modules/assets/template-thumbnails/article/elements/article-content.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/article/elements/article-link.png b/modules/assets/template-thumbnails/article/elements/article-link.png deleted file mode 100644 index 83cab92cc0..0000000000 Binary files a/modules/assets/template-thumbnails/article/elements/article-link.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/article/elements/article-summary.png b/modules/assets/template-thumbnails/article/elements/article-summary.png deleted file mode 100644 index ef4c1127be..0000000000 Binary files a/modules/assets/template-thumbnails/article/elements/article-summary.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/article/elements/article-title.png b/modules/assets/template-thumbnails/article/elements/article-title.png deleted file mode 100644 index 37609ca3ae..0000000000 Binary files a/modules/assets/template-thumbnails/article/elements/article-title.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/currency/elements/currency-change-icon.png b/modules/assets/template-thumbnails/currency/elements/currency-change-icon.png deleted file mode 100644 index f23dee7b27..0000000000 Binary files a/modules/assets/template-thumbnails/currency/elements/currency-change-icon.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/currency/elements/currency-change-percentage.png b/modules/assets/template-thumbnails/currency/elements/currency-change-percentage.png deleted file mode 100644 index e6443cb52b..0000000000 Binary files a/modules/assets/template-thumbnails/currency/elements/currency-change-percentage.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/currency/elements/currency-last-trade-price.png b/modules/assets/template-thumbnails/currency/elements/currency-last-trade-price.png deleted file mode 100644 index 4469d3a476..0000000000 Binary files a/modules/assets/template-thumbnails/currency/elements/currency-last-trade-price.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/currency/elements/currency-logo.png b/modules/assets/template-thumbnails/currency/elements/currency-logo.png deleted file mode 100644 index fd026f2ff3..0000000000 Binary files a/modules/assets/template-thumbnails/currency/elements/currency-logo.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/currency/elements/currency-name.png b/modules/assets/template-thumbnails/currency/elements/currency-name.png deleted file mode 100644 index 9ea1ec1314..0000000000 Binary files a/modules/assets/template-thumbnails/currency/elements/currency-name.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/dataset/elements/dataset-html.png b/modules/assets/template-thumbnails/dataset/elements/dataset-html.png deleted file mode 100644 index b7401ad173..0000000000 Binary files a/modules/assets/template-thumbnails/dataset/elements/dataset-html.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/dataset/elements/dataset-number.png b/modules/assets/template-thumbnails/dataset/elements/dataset-number.png deleted file mode 100644 index 1adaf56329..0000000000 Binary files a/modules/assets/template-thumbnails/dataset/elements/dataset-number.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/dataset/elements/dataset-string.png b/modules/assets/template-thumbnails/dataset/elements/dataset-string.png deleted file mode 100644 index 94da33bcd0..0000000000 Binary files a/modules/assets/template-thumbnails/dataset/elements/dataset-string.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/event/elements/calendar-event-detailed.png b/modules/assets/template-thumbnails/event/elements/calendar-event-detailed.png deleted file mode 100644 index 0f7deb1cc9..0000000000 Binary files a/modules/assets/template-thumbnails/event/elements/calendar-event-detailed.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/event/elements/calendar-event-row.png b/modules/assets/template-thumbnails/event/elements/calendar-event-row.png deleted file mode 100644 index 97245c85a6..0000000000 Binary files a/modules/assets/template-thumbnails/event/elements/calendar-event-row.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/event/elements/calendar-event-simple.png b/modules/assets/template-thumbnails/event/elements/calendar-event-simple.png deleted file mode 100644 index 5ba7b5472f..0000000000 Binary files a/modules/assets/template-thumbnails/event/elements/calendar-event-simple.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/event/elements/event-description.png b/modules/assets/template-thumbnails/event/elements/event-description.png deleted file mode 100644 index fc8b885da0..0000000000 Binary files a/modules/assets/template-thumbnails/event/elements/event-description.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/event/elements/event-location.png b/modules/assets/template-thumbnails/event/elements/event-location.png deleted file mode 100644 index 7ddbd8dbc1..0000000000 Binary files a/modules/assets/template-thumbnails/event/elements/event-location.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/event/elements/event-summary.png b/modules/assets/template-thumbnails/event/elements/event-summary.png deleted file mode 100644 index 5a12371668..0000000000 Binary files a/modules/assets/template-thumbnails/event/elements/event-summary.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/forecast/elements/weather-attribution.png b/modules/assets/template-thumbnails/forecast/elements/weather-attribution.png deleted file mode 100644 index 0fe64d0440..0000000000 Binary files a/modules/assets/template-thumbnails/forecast/elements/weather-attribution.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/forecast/elements/weather-condition-bg-image.png b/modules/assets/template-thumbnails/forecast/elements/weather-condition-bg-image.png deleted file mode 100644 index 95b85f4a2a..0000000000 Binary files a/modules/assets/template-thumbnails/forecast/elements/weather-condition-bg-image.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/forecast/elements/weather-date.png b/modules/assets/template-thumbnails/forecast/elements/weather-date.png deleted file mode 100644 index 427e66c3ce..0000000000 Binary files a/modules/assets/template-thumbnails/forecast/elements/weather-date.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/forecast/elements/weather-humidity-percent.png b/modules/assets/template-thumbnails/forecast/elements/weather-humidity-percent.png deleted file mode 100644 index 734f4a27fd..0000000000 Binary files a/modules/assets/template-thumbnails/forecast/elements/weather-humidity-percent.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/forecast/elements/weather-icon.png b/modules/assets/template-thumbnails/forecast/elements/weather-icon.png deleted file mode 100644 index 1cc26bae58..0000000000 Binary files a/modules/assets/template-thumbnails/forecast/elements/weather-icon.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/forecast/elements/weather-max-temperature.png b/modules/assets/template-thumbnails/forecast/elements/weather-max-temperature.png deleted file mode 100644 index 2f561a9561..0000000000 Binary files a/modules/assets/template-thumbnails/forecast/elements/weather-max-temperature.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/forecast/elements/weather-summary.png b/modules/assets/template-thumbnails/forecast/elements/weather-summary.png deleted file mode 100644 index 6f23ab7902..0000000000 Binary files a/modules/assets/template-thumbnails/forecast/elements/weather-summary.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/forecast/elements/weather-temperature.png b/modules/assets/template-thumbnails/forecast/elements/weather-temperature.png deleted file mode 100644 index 003090d930..0000000000 Binary files a/modules/assets/template-thumbnails/forecast/elements/weather-temperature.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/forecast/elements/weather-wind-direction.png b/modules/assets/template-thumbnails/forecast/elements/weather-wind-direction.png deleted file mode 100644 index d80038b0d8..0000000000 Binary files a/modules/assets/template-thumbnails/forecast/elements/weather-wind-direction.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/forecast/elements/weather-wind-speed-unit.png b/modules/assets/template-thumbnails/forecast/elements/weather-wind-speed-unit.png deleted file mode 100644 index 5ebdd0a811..0000000000 Binary files a/modules/assets/template-thumbnails/forecast/elements/weather-wind-speed-unit.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/forecast/elements/weather-wind-speed.png b/modules/assets/template-thumbnails/forecast/elements/weather-wind-speed.png deleted file mode 100644 index 98be355202..0000000000 Binary files a/modules/assets/template-thumbnails/forecast/elements/weather-wind-speed.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/social-media/elements/social-media-description.png b/modules/assets/template-thumbnails/social-media/elements/social-media-description.png deleted file mode 100644 index 8432e84819..0000000000 Binary files a/modules/assets/template-thumbnails/social-media/elements/social-media-description.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/social-media/elements/social-media-post-dark.png b/modules/assets/template-thumbnails/social-media/elements/social-media-post-dark.png deleted file mode 100644 index 928b22be0a..0000000000 Binary files a/modules/assets/template-thumbnails/social-media/elements/social-media-post-dark.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/social-media/elements/social-media-post-horizontal.png b/modules/assets/template-thumbnails/social-media/elements/social-media-post-horizontal.png deleted file mode 100644 index 9fe23a4a2d..0000000000 Binary files a/modules/assets/template-thumbnails/social-media/elements/social-media-post-horizontal.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/social-media/elements/social-media-post-photo.png b/modules/assets/template-thumbnails/social-media/elements/social-media-post-photo.png deleted file mode 100644 index caa109cc1a..0000000000 Binary files a/modules/assets/template-thumbnails/social-media/elements/social-media-post-photo.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/social-media/elements/social-media-post-vintage-photo.png b/modules/assets/template-thumbnails/social-media/elements/social-media-post-vintage-photo.png deleted file mode 100644 index 636ed404c7..0000000000 Binary files a/modules/assets/template-thumbnails/social-media/elements/social-media-post-vintage-photo.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/social-media/elements/social-media-profile-photo.png b/modules/assets/template-thumbnails/social-media/elements/social-media-profile-photo.png deleted file mode 100644 index 56c5a04b20..0000000000 Binary files a/modules/assets/template-thumbnails/social-media/elements/social-media-profile-photo.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/social-media/elements/social-media-username.png b/modules/assets/template-thumbnails/social-media/elements/social-media-username.png deleted file mode 100644 index 311af509dc..0000000000 Binary files a/modules/assets/template-thumbnails/social-media/elements/social-media-username.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/social-media/fulltime-np.png b/modules/assets/template-thumbnails/social-media/fulltime-np.png index f588c34bf1..262e31358d 100644 Binary files a/modules/assets/template-thumbnails/social-media/fulltime-np.png and b/modules/assets/template-thumbnails/social-media/fulltime-np.png differ diff --git a/modules/assets/template-thumbnails/social-media/fulltime.png b/modules/assets/template-thumbnails/social-media/fulltime.png index 22438c0d59..eda7e5a665 100644 Binary files a/modules/assets/template-thumbnails/social-media/fulltime.png and b/modules/assets/template-thumbnails/social-media/fulltime.png differ diff --git a/modules/assets/template-thumbnails/social-media/profileleft.png b/modules/assets/template-thumbnails/social-media/profileleft.png index e3cfd15eee..0c2d589c0b 100644 Binary files a/modules/assets/template-thumbnails/social-media/profileleft.png and b/modules/assets/template-thumbnails/social-media/profileleft.png differ diff --git a/modules/assets/template-thumbnails/social-media/profileright.png b/modules/assets/template-thumbnails/social-media/profileright.png index c18811c8ec..07ee31d5b5 100644 Binary files a/modules/assets/template-thumbnails/social-media/profileright.png and b/modules/assets/template-thumbnails/social-media/profileright.png differ diff --git a/modules/assets/template-thumbnails/social-media/twitter1.png b/modules/assets/template-thumbnails/social-media/twitter1.png index 9e5dc58223..eced2422dc 100644 Binary files a/modules/assets/template-thumbnails/social-media/twitter1.png and b/modules/assets/template-thumbnails/social-media/twitter1.png differ diff --git a/modules/assets/template-thumbnails/social-media/twitter2.png b/modules/assets/template-thumbnails/social-media/twitter2.png index 61fbed5878..2a863c37d9 100644 Binary files a/modules/assets/template-thumbnails/social-media/twitter2.png and b/modules/assets/template-thumbnails/social-media/twitter2.png differ diff --git a/modules/assets/template-thumbnails/social-media/twitter4.png b/modules/assets/template-thumbnails/social-media/twitter4.png index 1364a3f5b4..bbe789f441 100644 Binary files a/modules/assets/template-thumbnails/social-media/twitter4.png and b/modules/assets/template-thumbnails/social-media/twitter4.png differ diff --git a/modules/assets/template-thumbnails/social-media/twitter6np.png b/modules/assets/template-thumbnails/social-media/twitter6np.png index 2b713dc936..ce55e11dd4 100644 Binary files a/modules/assets/template-thumbnails/social-media/twitter6np.png and b/modules/assets/template-thumbnails/social-media/twitter6np.png differ diff --git a/modules/assets/template-thumbnails/social-media/twitter6pl.png b/modules/assets/template-thumbnails/social-media/twitter6pl.png index da125c5760..c6dd5fed84 100644 Binary files a/modules/assets/template-thumbnails/social-media/twitter6pl.png and b/modules/assets/template-thumbnails/social-media/twitter6pl.png differ diff --git a/modules/assets/template-thumbnails/social-media/twitter7.png b/modules/assets/template-thumbnails/social-media/twitter7.png index bd38f1e97d..dbdc6bd653 100644 Binary files a/modules/assets/template-thumbnails/social-media/twitter7.png and b/modules/assets/template-thumbnails/social-media/twitter7.png differ diff --git a/modules/assets/template-thumbnails/social-media/twitter8.png b/modules/assets/template-thumbnails/social-media/twitter8.png index 8ddae61486..12c54cc85f 100644 Binary files a/modules/assets/template-thumbnails/social-media/twitter8.png and b/modules/assets/template-thumbnails/social-media/twitter8.png differ diff --git a/modules/assets/template-thumbnails/stocks/elements/stock-change-icon.png b/modules/assets/template-thumbnails/stocks/elements/stock-change-icon.png deleted file mode 100644 index f23dee7b27..0000000000 Binary files a/modules/assets/template-thumbnails/stocks/elements/stock-change-icon.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/stocks/elements/stock-change-percentage.png b/modules/assets/template-thumbnails/stocks/elements/stock-change-percentage.png deleted file mode 100644 index 7df737e50c..0000000000 Binary files a/modules/assets/template-thumbnails/stocks/elements/stock-change-percentage.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/stocks/elements/stock-last-trade-price.png b/modules/assets/template-thumbnails/stocks/elements/stock-last-trade-price.png deleted file mode 100644 index fc05c2e933..0000000000 Binary files a/modules/assets/template-thumbnails/stocks/elements/stock-last-trade-price.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/stocks/elements/stock-name.png b/modules/assets/template-thumbnails/stocks/elements/stock-name.png deleted file mode 100644 index 95622a58a9..0000000000 Binary files a/modules/assets/template-thumbnails/stocks/elements/stock-name.png and /dev/null differ diff --git a/modules/assets/template-thumbnails/stocks/elements/stock-symbol.png b/modules/assets/template-thumbnails/stocks/elements/stock-symbol.png deleted file mode 100644 index ed76410f77..0000000000 Binary files a/modules/assets/template-thumbnails/stocks/elements/stock-symbol.png and /dev/null differ diff --git a/modules/assets/twitter_blue.png b/modules/assets/twitter_blue.png deleted file mode 100644 index 64bbc7cb13..0000000000 Binary files a/modules/assets/twitter_blue.png and /dev/null differ diff --git a/modules/assets/twitter_content_photo.jpg b/modules/assets/twitter_content_photo.jpg deleted file mode 100644 index 2fd2e4e798..0000000000 Binary files a/modules/assets/twitter_content_photo.jpg and /dev/null differ diff --git a/modules/assets/twitter_profile_photo.jpg b/modules/assets/twitter_profile_photo.jpg deleted file mode 100644 index 40b3c70723..0000000000 Binary files a/modules/assets/twitter_profile_photo.jpg and /dev/null differ diff --git a/modules/assets/twitter_profile_photo_bigger.jpg b/modules/assets/twitter_profile_photo_bigger.jpg deleted file mode 100644 index ac669082d1..0000000000 Binary files a/modules/assets/twitter_profile_photo_bigger.jpg and /dev/null differ diff --git a/modules/assets/twitter_profile_photo_mini.jpg b/modules/assets/twitter_profile_photo_mini.jpg deleted file mode 100644 index 21726f19e6..0000000000 Binary files a/modules/assets/twitter_profile_photo_mini.jpg and /dev/null differ diff --git a/modules/assets/twitter_white.png b/modules/assets/twitter_white.png deleted file mode 100644 index 98fb257e2a..0000000000 Binary files a/modules/assets/twitter_white.png and /dev/null differ diff --git a/modules/audio.xml b/modules/audio.xml index d5d1153feb..65c260162b 100644 --- a/modules/audio.xml +++ b/modules/audio.xml @@ -1,7 +1,7 @@