Skip to content

Commit

Permalink
Get ready for web-store deployment (v1.1)
Browse files Browse the repository at this point in the history
After this, the extension's going public on web-stores (hopefully).
  • Loading branch information
ktg5 committed Sep 17, 2023
1 parent 6ed3a41 commit 8839863
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 12 deletions.
3 changes: 2 additions & 1 deletion html/install.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ <h2>Yo! What's good!</h2>
<br>
<br>
If you possibly step upon an issue, such as an issue with the styling,
another YouTube extension, or whatever that comes to this extension,
slower performice, something conflicting another YouTube extension,
or whatever you think seems off,
<a href='https://github.com/ktg5/PlayerTube/issues'>feel free to report them on the GitHub page!</a>
<br>
<br>
Expand Down
36 changes: 27 additions & 9 deletions html/release-note.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,36 @@
</div>

<div class="text">
<h2 class="showVersion">PlayerTube has been updated to </h2>
So, what's new?
<li>This is the first version for the PlayerTube extension!</li>
<li>Fixed <a href="https://github.com/ktg5/YT-HTML5-Player/issues/23">#23</a>, since all images are local.</li>
<li>Fixed styling.</li>
<div class="v1dot1">
<h2 class="showVersion">PlayerTube has been updated to </h2>
<li>First version to be available on web-stores! (Chrome & Firefox)</li>
<li>Fixed <a href="https://github.com/ktg5/PlayerTube/issues/1">#1 -- "Rewrite Settings Menu"</a></li>
<li>Fixed some issues with the Firefox build.</li>
<li>Fixed styling.</li>

<br>
<br>

As always, if you have any issues,
<a href='https://github.com/ktg5/PlayerTube/issues'>please report them on the GitHub page!</a>
As always, if you have any issues,
<a href='https://github.com/ktg5/PlayerTube/issues'>please report them on the GitHub page!</a>
<br>
Enjoy!
</div>
<br>
<br>
Enjoy!
<h3>Past versions...</h3>
<div class="v1">
<div style="font-weight: 600;">v1.0</div>
<li>This is the first version for the PlayerTube extension!</li>
<li>Fixed <a href="https://github.com/ktg5/YT-HTML5-Player/issues/23">#23</a>, since all images are local.</li>
<li>Fixed styling.</li>

<br>

As always, if you have any issues,
<a href='https://github.com/ktg5/PlayerTube/issues'>please report them on the GitHub page!</a>
<br>
Enjoy!
</div>
</div>

<div id="credits">
Expand Down
4 changes: 3 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ var customTheme = userConfig.customTheme;
// MOVING ELEMENTS
function moveElement(element, targetDiv, pasteDiv) {
console.log(`moveElement function: ${targetDiv.contains(element)}`)
if (targetDiv.contains(element)) {
if (pasteDiv.contains(element)) {
return;
} else if (targetDiv.contains(element)) {
pasteDiv.parentNode.insertBefore(targetDiv.removeChild(element), pasteDiv.parentNode.firstElementChild);
moveElement(element, targetDiv, pasteDiv);
} else {
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "PlayerTube",
"description": "The secret ingredient for a older (and better) looking YouTube.",
"version": "1.0",
"version": "1.1",
"homepage_url": "https://github.com/ktg5/PlayerTube",

"background": {
Expand Down

0 comments on commit 8839863

Please sign in to comment.