Skip to content

Commit d6438e5

Browse files
Added Help link to GitHub Project for easier access to support
1 parent 26f53f5 commit d6438e5

File tree

10 files changed

+71
-19
lines changed

10 files changed

+71
-19
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ TelePrompter - Change Log
55

66
![icon](assets/img/icon-256x256.png "icon")
77

8+
:white_check_mark: v1.2.2 Release Notes ( January 29th, 2023 )
9+
---
10+
11+
- [X] Added Help link to GitHub Project for easier access to support
12+
813
:white_check_mark: v1.2.1 Release Notes ( December 31st, 2022 )
914
---
1015

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,3 @@ Key | Alternatives | Description
4646
<kbd>ESC</kbd> | | Resets GUI
4747

4848
We also made an effort to make sure your text will be easy to read. So if you are pasting text from a word document, we'll do some cleaning up to make the breaks flow more easily.
49-
50-
Get Updates
51-
---
52-
53-
Follow this project on GitHub, or you can follow me on Twitter for updates: **[@mrmidi](http://twitter.com/mrmidi "Follow @mrmidi on Twitter")**
54-
55-
#### Do you use this TelePrompter?
56-
57-
[![Buy Me Coffee](https://peterschmalfeldt.com/buy-me-coffee.png)](https://www.paypal.me/manifestinteractive)
File renamed without changes.

assets/css/style.v120.css renamed to assets/css/style.v122.css

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,36 @@ input[type="color"]::-webkit-color-swatch {
351351
border-radius: 8px;
352352
}
353353

354+
#get-help {
355+
color: #999;
356+
top: 0;
357+
left: 10px;
358+
position: absolute;
359+
z-index: 100;
360+
width: 60px;
361+
height: 60px;
362+
display: block;
363+
line-height: 60px;
364+
text-decoration: none;
365+
text-align: center;
366+
font-size: 40px;
367+
transition: color 0.25s;
368+
}
369+
#get-help:hover, #get-help:focus {
370+
color: #FFF;
371+
}
372+
373+
a.sponsor-project {
374+
cursor: pointer;
375+
pointer-events: all;
376+
color: #4197d7;
377+
text-decoration: none;
378+
text-transform: uppercase;
379+
}
380+
a.sponsor-project:hover, a.sponsor-project:focus {
381+
text-decoration: underline;
382+
}
383+
354384
@media only screen and (min-width: 601px) and (max-width: 960px) {
355385
header {
356386
height: 130px;
@@ -394,6 +424,10 @@ input[type="color"]::-webkit-color-swatch {
394424
.buttons {
395425
margin-right: 0 !important;
396426
}
427+
428+
#get-help {
429+
left: 0;
430+
}
397431
}
398432

399433
@media only screen and (max-width: 600px) {
@@ -490,6 +524,14 @@ input[type="color"]::-webkit-color-swatch {
490524
.overlay .bottom {
491525
top: 230px;
492526
}
527+
528+
#get-help {
529+
left: 0;
530+
width: 40px;
531+
height: 40px;
532+
line-height: 40px;
533+
font-size: 30px;
534+
}
493535
}
494536

495537
@media only screen and (min-width: 376px) and (max-width: 420px) {
@@ -529,6 +571,10 @@ input[type="color"]::-webkit-color-swatch {
529571
.sliders label > span {
530572
display: unset;
531573
}
574+
575+
#get-help {
576+
left: 40px;
577+
}
532578
}
533579

534580
@media only screen and (max-width: 320px) {
File renamed without changes.

assets/js/remote.v120.js renamed to assets/js/remote.v122.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* TelePrompter v1.2.0 - Browser-based TelePrompter with Remote Control
3-
* (c) 2021 Peter Schmalfeldt
2+
* TelePrompter v1.2.2 - Browser-based TelePrompter with Remote Control
3+
* (c) 2023 Peter Schmalfeldt
44
* License: https://github.com/manifestinteractive/teleprompter/blob/master/LICENSE
55
*/
66
var TelePrompterRemote = (function() {

assets/js/script.v120.js renamed to assets/js/script.v122.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* TelePrompter v1.2.0 - Browser-based TelePrompter with Remote Control
3-
* (c) 2021 Peter Schmalfeldt
2+
* TelePrompter v1.2.2 - Browser-based TelePrompter with Remote Control
3+
* (c) 2023 Peter Schmalfeldt
44
* License: https://github.com/manifestinteractive/teleprompter/blob/master/LICENSE
55
*/
66
var TelePrompter = (function() {
@@ -27,7 +27,7 @@ var TelePrompter = (function() {
2727
timerExp = 10,
2828
timerGA,
2929
timerURL,
30-
version = 'v1.2.0';
30+
version = 'v1.2.2';
3131

3232
/* Default App Settings */
3333
var defaultConfig = {

index.html

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<!-- Styles -->
6262
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap">
6363
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/redmond/jquery-ui.min.css" />
64-
<link rel="stylesheet" href="assets/css/style.v120.css">
64+
<link rel="stylesheet" href="assets/css/style.v122.css">
6565
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
6666

6767
<!-- DNS Pre-Connects -->
@@ -73,6 +73,9 @@
7373
</head>
7474

7575
<body id="gui">
76+
<a href="https://github.com/manifestinteractive/teleprompter#readme" id="get-help" target="_blank" title="Get Help with TelePrompter" aria-label="Get Help with TelePrompter" data-ga data-category="Nav" data-action="Help" data-label="Get Help">
77+
<i class="icon-question-sign"></i>
78+
</a>
7679
<div id="modal">
7780
<a class="button icon-remove-circle close-modal" href="javascript:void(0)" role="button" aria-label="Close Modal" title="Close Modal" data-ga data-category="Nav" data-action="Modal" data-label="Close Modal"></a>
7881

@@ -160,6 +163,13 @@ <h1><i class="icon icon-bullhorn"></i> <span class="clock">00:00:00</span></h1>
160163
Microsoft Word document, we'll do some cleaning up to make the breaks flow more easily.
161164
<br><br>
162165
Thanks for stopping by.
166+
<br><br>
167+
Love this TelePrompter?
168+
<br><br>
169+
<a href="https://github.com/manifestinteractive/teleprompter#project-support" contenteditable="false" class="sponsor-project" target="_blank" title="Support TelePrompter" aria-label="Support TelePrompter" data-ga data-category="Nav" data-action="Help" data-label="Support TelePrompter">
170+
Support Our Work :)
171+
</a><br><br>
172+
Thanks !!!
163173
</div>
164174
<i class="icon-play marker" style="display: none"></i>
165175
</article>
@@ -189,8 +199,8 @@ <h1><i class="icon icon-bullhorn"></i> <span class="clock">00:00:00</span></h1>
189199
});
190200
</script>
191201

192-
<script src="assets/js/plugins.v120.js"></script>
193-
<script src="assets/js/script.v120.js"></script>
202+
<script src="assets/js/plugins.v122.js"></script>
203+
<script src="assets/js/script.v122.js"></script>
194204

195205
<script>
196206
// Load Service Worker for PWA

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": "teleprompter",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "Browser-based TelePrompter with Remote Control",
55
"homepage": "https://github.com/manifestinteractive/teleprompter",
66
"license": "MIT",

0 commit comments

Comments
 (0)