Skip to content

Commit

Permalink
build: release bundle.
Browse files Browse the repository at this point in the history
version: 1.1.0
  • Loading branch information
poirierlouis committed Jan 7, 2024
1 parent 4200836 commit f85e4fa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

------------------------

## [1.1.0] - 2024-01-07
### Added
- START button of gamepad to show/hide GUI.

Expand Down Expand Up @@ -34,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- shortcut to show/hide GUI.

<!-- Table of releases -->
[Unreleased]: https://github.com/poirierlouis/twitch-bg3-gamepad/compare/v1.0.1...HEAD
[Unreleased]: https://github.com/poirierlouis/twitch-bg3-gamepad/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/poirierlouis/twitch-bg3-gamepad/compare/v1.0.1...v1.1.0
[1.0.1]: https://github.com/poirierlouis/twitch-bg3-gamepad/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/poirierlouis/twitch-bg3-gamepad/releases/tag/v1.0.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Twitch BG3 Gamepad
![version 1.0.1](https://img.shields.io/badge/version-1.0.1-success) ![browsers Chrome | Firefox](https://img.shields.io/badge/browsers-Chrome_|_Firefox-blue) ![License MIT](https://img.shields.io/github/license/poirierlouis/twitch-bg3-gamepad)
![version 1.1.0](https://img.shields.io/badge/version-1.1.0-success) ![browsers Chrome | Firefox](https://img.shields.io/badge/browsers-Chrome_|_Firefox-blue) ![License MIT](https://img.shields.io/github/license/poirierlouis/twitch-bg3-gamepad)

Plugin sous la forme d'un script JavaScript à installer sur le navigateur.
Permet d'utiliser une manette de console pour envoyer les commandes au chat
Expand Down
2 changes: 1 addition & 1 deletion plugin.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<body>
<div id="twitch-bg3-gamepad" class="container">
<h3>Twitch · BG3 · Gamepad</h3>
<h5>by Rayshader · v1.0.1</h5>
<h5>by Rayshader · v1.1.0</h5>

<p class="gamepad">🔴 Manette en attente de connexion</p>
<p class="chat">🔴 Chat en attente de détection</p>
Expand Down
2 changes: 1 addition & 1 deletion src/gui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export class GUI {

$author.style.margin = '0';
$author.style.textAlign = 'center';
$author.textContent = `by Rayshader · v1.0.1`;
$author.textContent = `by Rayshader · v1.1.0`;
return $author;
}

Expand Down

0 comments on commit f85e4fa

Please sign in to comment.