Skip to content

Commit

Permalink
* Fixed the problem when the description of the links attached to the…
Browse files Browse the repository at this point in the history
… message was not voiced.

* Fixed minor bugs that were made in the previous version.
  • Loading branch information
unknown committed Oct 5, 2023
1 parent ba77290 commit 42492e1
Show file tree
Hide file tree
Showing 7 changed files with 330 additions and 254 deletions.
29 changes: 29 additions & 0 deletions 5.0.3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"addonId": "unigramPlus",
"displayName": "UnigramPlus",
"URL": "",
"description": "This add-on adds a lot of hotkeys for quick navigation through the main elements of the Unigram application, convenient interaction with Chat messages, and also adds many small improvements that make working in Unigram much easier",
"sha256": "60c4836644f3d2eda7f48a6c501f5f8b64418e06c64a56ff70e729b46ae3bf3c",
"homepage": "https://github.com/Kostya-Gladkiy/UnigramPlus",
"addonVersionName": "5.0.3",
"addonVersionNumber": {
"major": 5,
"minor": 0,
"patch": 3
},
"minNVDAVersion": {
"major": 2021,
"minor": 2,
"patch": 0
},
"lastTestedVersion": {
"major": 2023,
"minor": 3,
"patch": 0
},
"channel": "stable",
"publisher": "",
"sourceURL": "https://github.com/Kostya-Gladkiy/UnigramPlus",
"license": "GPL 2",
"licenseURL": "https://www.gnu.org/licenses/gpl-2.0.html"
}
6 changes: 4 additions & 2 deletions addon/appModules/unigram.py
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,9 @@ def action_message_focus(self, obj):
if not conf.get("voiceFullDescriptionOfLinkToYoutube") and description.startswith("YouTube "):
description = description.split("\n")
description = "\n".join(description[:2])
if description not in item.name: obj.name = obj.name.replace(item.name.strip(), item.name+"\n"+description)
if description not in item.name:
obj.name =re.sub(r"[.,]?{}|{}".format(keywords[3], keywords[2]), fr". \n{description}\g<0>", obj.name)
# obj.name = obj.name.replace(item.name.strip(), item.name+"\n"+description)
for link in item.children:
# if link.role == Role.LINK and link.name.startswith("http") and len(link.name) > 30: obj.name = obj.name.replace(link.name, link.name[0:30]+"...")
if link.role == Role.LINK and link.name.startswith("http") and len(link.name) > 30:
Expand Down Expand Up @@ -1163,7 +1165,7 @@ def action(title, subtitle):
try:
# Add a label to unmute the microphone on a voice call
# Add a label to turn on the camera on a voice call
if obj.UIAAutomationId == "Audio" and obj.firstChild.name == "\ue720": obj.name = obj.next.name
if obj.UIAAutomationId == "Audio" and obj.firstChild.name == "\ue720" and obj.next.UIAAutomationId == "AudioInfo": obj.name = obj.next.name
elif obj.UIAAutomationId == "Video" and obj.firstChild.name == "\ue963": obj.name = _("Enable video")
elif obj.UIAAutomationId == "Video" and obj.firstChild.name == "\ue964": obj.name = _("Disable video")
except: pass
Expand Down
10 changes: 10 additions & 0 deletions addon/doc/tr/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@ Bilinen dezavantajlardan biri, bir işlev odağı "okunmamış mesajlar" etiketi

##Değişiklik listesi:

### Sürüm 5.0.0

* Sohbetlerdeki mesajların iki kez okunmasına neden olan sorun düzeltildi.
* Açık bir profile gitmek için kısayolun düzgün çalışmamasına neden olan sorun düzeltildi.
* Gezinme menüsünü açmak için klavye kısayolunun çalışmamasına neden olan sorun düzeltildi.
* Sesli sohbetlerde mikrofonu etkinleştirme / devre dışı bırakma düğmesiyle ilgili tüm sorunlar çözüldü.
* Lehçe dilinde bir karakterin girilmesinin ALT + C kombinasyonu tarafından engellendiği bir sorun düzeltildi.
* Mesajlardaki "Sahip" ve "Yönetici" ifadelerinin telaffuzu düzeltildi.
* Diğer bazı küçük sorunlar aradan kaldırıldı.

###Sürüm 4.9.0

* Boş bir mesaj düzenleme alanında yukarı oka bastığınızda davranış yeteneği eklendi. Aşağıdaki seçeneklerden birini seçebilirsiniz: Son mesajı düzenleme özelliğini etkinleştirebilir, odağı sohbetteki son mesaja taşıyabilir veya hiçbir şey yapmazsınız.
Expand Down
Loading

0 comments on commit 42492e1

Please sign in to comment.