Skip to content
This repository was archived by the owner on Apr 5, 2022. It is now read-only.

Commit 0e51232

Browse files
committed
Merge branch 'dev'
2 parents 774798d + ff6c99f commit 0e51232

File tree

5 files changed

+8
-14
lines changed

5 files changed

+8
-14
lines changed

build/YHotkeys-Installer.exe

512 Bytes
Binary file not shown.

docs/changelog.md

+1-10
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,7 @@ description: YHotkeys'de neler değişti
1616
* 🌍 Google kısayollarını çalışamazsa google üzerinden arama yapmakta
1717
* ➕ Your Phone ve Mail kısayolları eklendi (<kbd>❖ Win</kbd> <kbd>P</kbd>: phone, <kbd>❖ Win</kbd> <kbd>M</kbd>: mail)
1818
* ➕ Emojiler artırıldı
19-
20-
21-
## 🏷️ 2.4.3.2
22-
23-
👨‍🔧 Ufak geliştirmeler ve iyileştirmeler
24-
25-
* 🚀 Başlangıçta otomatik olarak başlatma ayarı kuruluma eklendi
26-
* 🌍 Google kısayollarını çalışamazsa google üzerinden arama yapmakta
27-
* ➕ Your Phone ve Mail kısayolları eklendi (<kbd>❖ Win</kbd> <kbd>P</kbd>: phone, <kbd>❖ Win</kbd> <kbd>M</kbd>: mail)
28-
* ➕ Emojiler artırıldı
19+
* 💦 Tüm aktif uygulamaları kapatma kısayolu eklendi ❖ Win ⎋ Esc
2920

3021

3122
## 🏷️ 2.4.3.2

src/YHotkeys.exe

512 Bytes
Binary file not shown.

src/lib/core/event.ahk

+6-4
Original file line numberDiff line numberDiff line change
@@ -215,9 +215,11 @@ return """C:\Program Files (x86)\Microsoft\Edge\Application\msedge_proxy.exe"" -
215215
CreateStartProgramCmd(name) {
216216
filepath = %A_AppData%\Microsoft\Windows\Start Menu\Programs\%name%.lnk
217217
if not FileExist(filepath) {
218-
url := "https://www.google.com/search?q=" . name
219-
filepath := ExplorerCommand(url)
218+
filepath := "https://www.google.com/search?q=" . name
220219
}
221-
command = explorer.exe "%filepath%"
222-
return command
220+
return ExplorerCommand(filepath)
221+
}
222+
223+
CloseAllActivePrograms() {
224+
Run, powershell -Command "Get-Process | Where-Object {$_.MainWindowTitle -ne """"""} | stop-process", ,hide
223225
}

src/lib/util/hotkeys.ahk

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
F1::TranslateWithPopup()
2222
+F1::TranslateInline()
23+
#Esc::CloseAllActivePrograms()
2324

2425
; ---------------------------------- Özellik Kısayolları ----------------------------------
2526

0 commit comments

Comments
 (0)