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

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
yemreak committed Sep 11, 2020
2 parents 774798d + ff6c99f commit 0e51232
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 14 deletions.
Binary file modified build/YHotkeys-Installer.exe
Binary file not shown.
11 changes: 1 addition & 10 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,7 @@ description: YHotkeys'de neler değişti
* 🌍 Google kısayollarını çalışamazsa google üzerinden arama yapmakta
* ➕ Your Phone ve Mail kısayolları eklendi (<kbd>❖ Win</kbd> <kbd>P</kbd>: phone, <kbd>❖ Win</kbd> <kbd>M</kbd>: mail)
* ➕ Emojiler artırıldı


## 🏷️ 2.4.3.2

👨‍🔧 Ufak geliştirmeler ve iyileştirmeler

* 🚀 Başlangıçta otomatik olarak başlatma ayarı kuruluma eklendi
* 🌍 Google kısayollarını çalışamazsa google üzerinden arama yapmakta
* ➕ Your Phone ve Mail kısayolları eklendi (<kbd>❖ Win</kbd> <kbd>P</kbd>: phone, <kbd>❖ Win</kbd> <kbd>M</kbd>: mail)
* ➕ Emojiler artırıldı
* 💦 Tüm aktif uygulamaları kapatma kısayolu eklendi ❖ Win ⎋ Esc


## 🏷️ 2.4.3.2
Expand Down
Binary file modified src/YHotkeys.exe
Binary file not shown.
10 changes: 6 additions & 4 deletions src/lib/core/event.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,11 @@ return """C:\Program Files (x86)\Microsoft\Edge\Application\msedge_proxy.exe"" -
CreateStartProgramCmd(name) {
filepath = %A_AppData%\Microsoft\Windows\Start Menu\Programs\%name%.lnk
if not FileExist(filepath) {
url := "https://www.google.com/search?q=" . name
filepath := ExplorerCommand(url)
filepath := "https://www.google.com/search?q=" . name
}
command = explorer.exe "%filepath%"
return command
return ExplorerCommand(filepath)
}

CloseAllActivePrograms() {
Run, powershell -Command "Get-Process | Where-Object {$_.MainWindowTitle -ne """"""} | stop-process", ,hide
}
1 change: 1 addition & 0 deletions src/lib/util/hotkeys.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

F1::TranslateWithPopup()
+F1::TranslateInline()
#Esc::CloseAllActivePrograms()

; ---------------------------------- Özellik Kısayolları ----------------------------------

Expand Down

0 comments on commit 0e51232

Please sign in to comment.