Skip to content

Commit

Permalink
v 3.15.4 (#219)
Browse files Browse the repository at this point in the history
* Fix  #207 no of last executions (#214)

* fix statistics 2

* fix: #207 no of last executions

* Release 3 15 4 (#218)

* fix statistics 2

* fix: #207 no of last executions

* release 3.15.4 rc1
  • Loading branch information
dbeck121 authored Sep 26, 2024
1 parent 7c5ee5f commit 5362097
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/JS/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const prev_feature = [
{ "caption": "Useful Links in Browser Bar Popup", "description": "Access relevant links directly from the browser bar popup for enhanced navigation and productivity.", "image": "chrome3.png" },
{ "caption": "Last Visited iFlows", "description": "Keep track of your last visited integration flows for quick reference and easy access.", "image": "" }]
const stats_cards = [
{ "color": "bg-primary", "count": 24572, "icon": "fa fa-download", "rating": 4.7, "label": "Total weekly Users", "link": "javascript:void(0);" },
{ "color": "bg-primary", "count": 24572, "icon": "fa fa-download", "rating": 5, "label": "Total weekly Users", "link": "javascript:void(0);" },
{ "color": "bg-danger", "count": 19642, "icon": "fab fa-chrome", "rating": 4.97, "label": "Chrome Users", "link": "https://chrome.google.com/webstore/detail/sap-cpi-helper/epoggeaemnkacpinjfgccbjakglngkpb" },
{ "color": "bg-warning", "count": 4700, "icon": "fab fa-edge", "rating": 5, "label": "Edge Users", "link": "https://microsoftedge.microsoft.com/addons/detail/sap-cpi-helper/chnohkopccdfgpglplooonoaigfgfkda" },
{ "color": "bg-info", "count": 230, "icon": "fab fa-firefox", "rating": 5, "label": "FireFox Users", "link": "https://addons.mozilla.org/de/firefox/addon/cpi-helper/" }]
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "SAP CPI Helper",
"short_name": "CPI Helper",
"version": "3.15.3",
"version": "3.15.4",
"description": "Extends the SAP Cloud Platform Integration with some useful features to improve usability.",
"author": "Dominic Beckbauer",
"homepage_url": "https://github.com/dbeck121/CPI-Helper-Chrome-Extension",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json_v2
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
},
"name": "SAP CPI Helper",
"short_name": "CPI Helper",
"version": "3.15.3",
"version": "3.15.4",
"description": "Extends the SAP Cloud Platform Integration with some useful features to improve usability.",
"author": "Dominic Beckbauer",
"homepage_url": "https://github.com/dbeck121/CPI-Helper-Chrome-Extension",
Expand Down
3 changes: 2 additions & 1 deletion scripts/contentScript.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,11 @@ function openInfo(url) {
//refresh the logs in message window
var getLogsTimer;
var activeInlineItem;
var numberEntries = hostData.count || 10;


//fill the message sidebar
async function renderMessageSidebar() {
var numberEntries = hostData.count || 10;
var createRow = function (elements, trClass) {
var tr = document.createElement("tr");
tr.className = trClass;
Expand Down

0 comments on commit 5362097

Please sign in to comment.