1
0

5 Revīzijas 6f3cf56c40 ... 4bbd569d11

Autors SHA1 Ziņojums Datums
  allens 4bbd569d11 Merge branch 'development' 1 nedēļu atpakaļ
  allens 104297be8e Updated version number to 1.1.12 1 nedēļu atpakaļ
  allens 905c6050a7 Updated version number to 1.1.12 1 nedēļu atpakaļ
  allens 15ce91abe0 Updated Owncast version number after testing with version 0.2.5 1 nedēļu atpakaļ
  allens 335a229f6b Resolved double points announcements issue https://git.deadtom.me/deadtom/OwnchatBot/issues/5 1 nedēļu atpakaļ

+ 1 - 1
README.md

@@ -25,7 +25,7 @@ A feature rich chatbot for Owncast.
 - [Attribution](#attribution)
 
 ## Features
-* Compatible with Owncast v0.2.4.
+* Compatible with Owncast v0.2.5.
 * The standard chat points/rewards system most of us are familiar with. Viewer redeems their points for a reward, streamer does a thing or some other function gets triggered.
 * Voting. The streamer can create votes for viewers to choose from.
   * The current vote tally can be set up as a browser source, to display on-screen.

+ 1 - 1
ownchatbot/bot_messages.py

@@ -143,7 +143,7 @@ def help_message(user_id):  # Build help message
     kofi_integration = current_app.config['KOFI_SETTINGS']['integration']
     gb_settings = current_app.config['GB_SETTINGS']
     gb_integration = current_app.config['GB_SETTINGS']['integration']
-    message = f'OwnchatBot v1.1.10<br> \
+    message = f'OwnchatBot v1.1.12<br> \
             You get {current_app.config["POINTS_AWARD"]} points for every {current_app.config["POINTS_INTERVAL"]} minutes you\'re in chat.<br> \
             You can see your points, the rewards queue, and other helpful information by clicking on the \"Points Rewards\" button.<br><br> \
             <b><u>Chat commands:</u></b><br> \

+ 1 - 1
ownchatbot/templates/mgmt.html

@@ -706,7 +706,7 @@
         <br><br>
     </div>
     <footer>
-        Version 1.1.10<br>
+        Version 1.1.12<br>
         If you are thrilled to death with OwnchatBot, and want to throw a little monetary love DeadTOm's way, <a href=https://ko-fi.com/deadtom>he's on Ko-fi</a>.<br>
         OwnchatBot © 2025 by <a href=https://www.deadtom.me>DeadTOm</a> is licensed under <a href=https://creativecommons.org/licenses/by-sa/4.0/>Creative Commons Attribution-ShareAlike 4.0 International</a>.
     </footer>

+ 1 - 1
ownchatbot/templates/userpanel.html

@@ -121,7 +121,7 @@
         <hr>
         <h4>Other stuff</h4>
         <div>
-            Version 1.1.10<br>
+            Version 1.1.12<br>
             OwnchatBot can be downloaded from <a href=https://git.deadtom.me/deadtom/OwnchatBot>https://git.deadtom.me/deadtom/OwnchatBot</a>.<br>
             If you are thrilled to death with OwnchatBot, and want to throw a little monetary love DeadTOm's way, <a href=https://ko-fi.com/deadtom>he's on Ko-fi</a>.<br>
             OwnchatBot © 2025 by <a href=https://www.deadtom.me>DeadTOm</a> is licensed under <a href=https://creativecommons.org/licenses/by-sa/4.0/>Creative Commons Attribution-ShareAlike 4.0 International</a>.

+ 2 - 2
ownchatbot/webhooks.py

@@ -91,9 +91,9 @@ def chat_hook():
                     if 'type' in details and details['type'] == 'goal':
                         rewards_msg = f'{rewards_msg}<br>* {prefix}{reward} goal at {details["target"]} contributed {porps(details["target"])}.'
                     elif 'type' in details and details['type'] == 'vote':
-                        rewards_msg = f'{rewards_msg}<br>* {prefix}{reward} vote for {details["price"]} {porps(details["price"])}.'
+                        rewards_msg = f'{rewards_msg}<br>* {prefix}{reward} vote for {porps(details["price"])}.'
                     else:
-                        rewards_msg = f'{rewards_msg}<br>* {prefix}{reward} for {details["price"]} {porps(details["price"])}.'
+                        rewards_msg = f'{rewards_msg}<br>* {prefix}{reward} for {porps(details["price"])}.'
                     if 'info' in details:
                         rewards_msg = f'{rewards_msg}<br>{details["info"]}'
                     else:

+ 1 - 1
pyproject.toml

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
 
 [project]
 name = "ownchatbot"
-version = "1.1.10"
+version = "1.1.12"
 authors = [
     {name = "DeadTOm", email = "deadtom@deadtom.me"},
 ]

+ 1 - 1
setup.py

@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
 
 setup(
     name='ownchatbot',
-    version='1.1.10',
+    version='1.1.12',
     packages=find_packages(),
     include_package_data=True,
     install_requires=[