Skip to content

Commit

Permalink
Added keyboard shortcut Win+0 to insert °
Browse files Browse the repository at this point in the history
  • Loading branch information
Aldaviva committed Feb 13, 2023
1 parent b223ddb commit 52f99c7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 17 deletions.
2 changes: 2 additions & 0 deletions src/hotkeys.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ return
; Win+Ctrl+Alt+, ≤ less than or equal to
; Win+Ctrl+Alt+. ≥ greater than or equal to
; Win+8 × multiplication sign
; Win+0 × degree sign
; Win+Alt+↑ ↑ up arrow
; Win+Alt+→ → right arrow
; Win+Alt+↓ ↓ down arrow
Expand Down Expand Up @@ -154,6 +155,7 @@ $#+-::
#!^,:: Send {U+2264}
#!^.:: Send {U+2265}
#8:: Send {U+00D7}
#0:: Send {U+00B0}
$#!Up:: Send {U+2191}
$#!Right:: Send {U+2192}
$#!Down:: Send {U+2193}
Expand Down
34 changes: 17 additions & 17 deletions src/resources.rc
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@

1 VERSIONINFO
FILEVERSION 0,0,14,0
PRODUCTVERSION 0,0,14,0
FILEVERSION 0,0,15,0
PRODUCTVERSION 0,0,15,0
FILEOS 0x4
FILETYPE 0x1
{
BLOCK "StringFileInfo"
{
BLOCK "040904b0"
BLOCK "StringFileInfo"
{
VALUE "CompanyName", "Ben Hutchison\0"
VALUE "FileDescription", "Hotkeys\0"
VALUE "FileVersion", "0.0.14.0\0"
VALUE "LegalCopyright", "© 2022 Ben Hutchison\0"
VALUE "OriginalFilename", "hotkeys.exe\0"
VALUE "ProductName", "Hotkeys\0"
VALUE "ProductVersion", "0.0.14.0\0"
BLOCK "040904b0"
{
VALUE "CompanyName", "Ben Hutchison\0"
VALUE "FileDescription", "Hotkeys\0"
VALUE "FileVersion", "0.0.15.0\0"
VALUE "LegalCopyright", "© 2023 Ben Hutchison\0"
VALUE "OriginalFilename", "hotkeys.exe\0"
VALUE "ProductName", "Hotkeys\0"
VALUE "ProductVersion", "0.0.15.0\0"
}
}
}

BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0409 0x04B0
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0409 0x04B0
}
}

0 comments on commit 52f99c7

Please sign in to comment.