Skip to content

Commit

Permalink
v6.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Feb 10, 2022
1 parent e0c4214 commit d97830d
Show file tree
Hide file tree
Showing 8 changed files with 139 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/index.js

Large diffs are not rendered by default.

132 changes: 131 additions & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,144 @@
margin: 0;
}

.main {
.header {
width: 100%;
min-height: 500px;
background-color: #ffeec2;
}

.header-container {
max-width: 650px;
margin: auto;
padding-top: 200px;
}

.header-container-image {
max-width: 850px;
margin: auto;
margin-top: -200px;
}

h1 {
color: #333;
font-size: 32px;
font-weight: 900;
}

h2 {
color: #333;
font-size: 20px;
font-weight: 500;
margin-top: 5px;
}

.logo {
width: 60px;
height: auto;
position: fixed;
top: 40px;
left: 40px;
}

.head-image {
margin-top: 40px;
width: 100%;
height: auto;
max-height: 500px;
border-radius: 10px;
object-fit: cover;
}

.content {
max-width: 650px;
margin: auto;
margin-top: 40px;
margin-bottom: 40px;
color: #333;
font-size: 18px;
line-height: 26px;
font-weight: 300;
}

a {
color: rgb(57, 140, 254);
text-decoration: none;
display: block;
margin-top: 10px;
margin-bottom: 10px;
cursor: pointer;
}

.buttonlink {
display: inline-block;
width: fit-content;
font-size: 16px;
font-weight: 600;
color: rgb(255, 255, 255);
background-color: rgb(57, 140, 254);
border-style: solid;
border-width: 0px;
border-radius: 56px;
padding: 15px 40px;
text-decoration: none;
cursor: pointer;
}

@media only screen and (max-width: 600px) {
.header-container {
padding-left: 40px;
padding-right: 40px;
padding-top: 150px;
}
.head-image {
border-radius: 0px;
}
.header {
min-height: initial;
}
.content {
margin-top: 0px;
padding: 40px;
}
}
video {
border: 1px solid lightgray;
width: 100%;
background-color: #eee;
}
</style>
</head>

<body>
<img class="logo" src="https://i.ibb.co/wMGvWqh/Gleap-Logo.png" />
<div class="header">
<div class="header-container">
<h1>Gleap Demo</h1>
<h2>Gleap SDK for the Web</h2>
</div>
</div>
<div class="header-container-image">
<img class="head-image" src="./pexels-jaymantri-4827.jpg" />
</div>
<div class="content" id="haha">
<span
>The Gleap SDK for JavScript is the easiest way to integrate Gleap into
your apps! Achieve better app quality & ratings with comprehensive
in-app bug reporting. Gleap offers affordable In-App Bug Reporting for
Apps, WebApps & Websites.</span
>
<br /><br />
<span
>No more wasting time trying to reproduce a bug. Gleap reports
automatically contain a replay video, session data, logs and more. Even
better: You can add custom data to your bug details.</span
>
<br /><br />
<span
>In less than a minute you can add our Gleap SDK to your App or WebApp.
Install our SDK, build and run. A piece of cake.</span
>
</div>
<!-- index.js as found in build/index.js -->
<script src="index.js"></script>
<script src="main.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gleap",
"version": "6.7.8",
"version": "6.7.9",
"main": "build/index.js",
"scripts": {
"start": "webpack serve",
Expand Down
1 change: 1 addition & 0 deletions published/6.7.9/appwidget.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions published/6.7.9/index.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions published/6.7.9/index.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion published/latest/index.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/NetworkUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export const isLocalNetwork = function (hostname = window.location.hostname) {
["localhost", "127.0.0.1", "0.0.0.0", "", "::1"].includes(hostname) ||
hostname.startsWith("192.168.") ||
hostname.startsWith("10.0.") ||
hostname.endsWith(".local")
hostname.endsWith(".local") ||
!hostname.includes(".")
);
};

0 comments on commit d97830d

Please sign in to comment.