Skip to content

Commit

Permalink
testing for vetube
Browse files Browse the repository at this point in the history
  • Loading branch information
metalalchemist committed Feb 9, 2024
1 parent 1a846cc commit 60c39c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/betube64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Compiling
run: |
pyinstaller VeTube.py --windowed
pyinstaller VeTube.py
gdown 1ZtF6zus0A7kC9Lwr_kTUbw0MiOoZq29H -O dist/VeTube/bootstrap.exe
cp -R chat_downloader dist/VeTube/_internal/
cp -R doc dist/VeTube/
Expand Down
4 changes: 2 additions & 2 deletions VeTube.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def estadisticas(self, event):
sizer_estadisticas.Add(label_total, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALL, 4)
self.text_ctrl_estadisticas = wx.TextCtrl(self.dlg_estadisticas, wx.ID_ANY, style=wx.TE_MULTILINE | wx.TE_READONLY)
self.text_ctrl_estadisticas.SetValue(_("Total de usuarios: %s\nTotal de mensajes: %s") % (len(self.usuarios), sum(self.mensajes)))
if isinstance(self.chat,TikTokLiveClient): self.text_ctrl_estadisticas.SetValue(self.text_ctrl_estadisticas.GetValue()+_('\nnuevos me gusta en el en vivo: ')+str(self.megusta)+_('\ntotal de usuarios que compartieron el en vivo: ')+str(self.compartidas)+_('\nnuevos usuarios que siguen al moderador del en vivo: ')+str(self.seguidores)+_('\nnuevos usuarios que se unieron al en vivo: ')+str(self.unidos))
if isinstance(self.chat,TikTokLiveClient): self.text_ctrl_estadisticas.SetValue(self.text_ctrl_estadisticas.GetValue()+_('\ntotal de megusta del en vivo: ')+str(self.megusta)+_('\ntotal de usuarios que compartieron el en vivo: ')+str(self.compartidas)+_('\nnuevos usuarios que siguen al moderador del en vivo: ')+str(self.seguidores)+_('\nnuevos usuarios que se unieron al en vivo: ')+str(self.unidos))
sizer_estadisticas.Add(self.text_ctrl_estadisticas, 1, wx.EXPAND | wx.ALL, 4)
button_estadisticas_descargar = wx.Button(self.dlg_estadisticas, wx.ID_ANY, _("&Guardar las estadísticas en un archivo de texto"))
button_estadisticas_descargar.Bind(wx.EVT_BUTTON, self.descargarEstadisticas)
Expand Down Expand Up @@ -1003,7 +1003,7 @@ async def on_join(self,event: JoinEvent):
self.list_box_1.Append(event.user.nickname+_(" se ha unido a tu en vivo."))
if config['sonidos'] and config['listasonidos'][2]: playsound(ajustes.rutasonidos[2],False)
async def on_like(self,event: LikeEvent):
self.megusta+=1
self.megusta=event.total_likes
if config['reader'] and config['unread'][5]:
if lista[yt][0]=='General':
if event.user.nickname not in self.gustados:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
wxPython
git+https://github.com/t1nky/playsound
playsound==1.2.2
git+https://github.com/isaackogan/TikTokLive
pyperclip
chat_downloader
Expand Down

0 comments on commit 60c39c9

Please sign in to comment.