From 70fb0eace143254f0a435f74f8c1765849f55e1e Mon Sep 17 00:00:00 2001 From: stmayer Date: Mon, 11 Aug 2008 10:55:06 +0000 Subject: =?UTF-8?q?AHK:=20Ebene4-Ziffernblock:=20NumPadAdd=20und=20NumPadS?= =?UTF-8?q?ub=20korrigiert=20Changelog=20angepa=C3=9Ft,=20Changes=20angepa?= =?UTF-8?q?=C3=9Ft=20(wozu=20diese=20neue=20Datei=20eigtl=3F)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.neo-layout.org@743 b9310e46-f624-0410-8ea1-cfbb3a30dc96 --- windows/autohotkey/CHANGES.txt | 5 +++++ windows/autohotkey/Source/Changelog-and-Todo.ahk | 6 ++++-- windows/autohotkey/Source/Keys-Neo.ahk | 9 +++++---- windows/autohotkey/neo20.ahk | 9 +++++---- windows/autohotkey/neo20.exe | Bin 446327 -> 457966 bytes 5 files changed, 19 insertions(+), 10 deletions(-) diff --git a/windows/autohotkey/CHANGES.txt b/windows/autohotkey/CHANGES.txt index b61c6bb..ff0daa3 100644 --- a/windows/autohotkey/CHANGES.txt +++ b/windows/autohotkey/CHANGES.txt @@ -1,5 +1,10 @@ == Neo 2.0 Autohotkey-Treiber für Windows == +== 2008-08-11 Matthias Wächter == + +Ebene4-Ziffernblock: NumpadAdd und NumPadSub korriegiert + + == 2008-08-10 Matthias Wächter == • Erstmal ist fast kein Stein auf dem anderen geblieben. Die grobe Struktur und das Verhalten (natürlich auch die Tastenbelegung ist 100% NEO!) sind grundsätzlich gleich geblieben, aber einerseits hat sich im Feinen viel getan (z.B. Tab-Behandlung), andererseits schauen viele Zeilen altbekannten Codes jetzt anders aus. diff --git a/windows/autohotkey/Source/Changelog-and-Todo.ahk b/windows/autohotkey/Source/Changelog-and-Todo.ahk index 1363c71..cdcfb6b 100644 --- a/windows/autohotkey/Source/Changelog-and-Todo.ahk +++ b/windows/autohotkey/Source/Changelog-and-Todo.ahk @@ -37,8 +37,10 @@ Matthias W * CHANGEHISTORY: * ****************** - - +Revision 742 (von Matthias Wächter, commited von Stefan Mayer) +- Ebene4-Ziffernblock: NumPadAdd und NumPadSub korrigiert +Revision 740 (von Matthias Wächter, commited von HCW) +- "Mega-Patch" (Skript verkürzt, Ebenenabfrage verändert, ...), siehe CHANGES.txt Revision 728 (von Dennis Heidsiek): - Ist die Datei [...]\Anwendungsdaten\NEO2\NEO2.ini vorhanden, werden dort eventuell vonhandene Werte für die Globalen Schalter beim Start übernommen Revision 707 (von Dennis Heidsiek): diff --git a/windows/autohotkey/Source/Keys-Neo.ahk b/windows/autohotkey/Source/Keys-Neo.ahk index ca98dec..3e37a63 100644 --- a/windows/autohotkey/Source/Keys-Neo.ahk +++ b/windows/autohotkey/Source/Keys-Neo.ahk @@ -67,9 +67,9 @@ neo_1: if (PriorDeadKey = "comp") CompKey := "1" - else if (PriorCompKey = "r") + else if (PriorCompKey == "r") CompKey := "r_1" - else if (PriorCompKey = "R") + else if (PriorCompKey == "R") CompKey := "R_1" } else if (Ebene = 2) @@ -352,7 +352,7 @@ neo_0: else if (Ebene = 3) send {blind}’ else if (Ebene = 4) - Send {blind}{NumpadMinus} + Send {blind}{NumpadSub} else if (Ebene = 5) { CompKey := PriorCompKey @@ -600,7 +600,7 @@ neo_q: send {blind}{&} else if ((Ebene = 4) and !(CheckDeadUni("c1",0x207A) or CheckDeadUni("c5",0x208A))) - Send {blind}{NumPadPlus} + Send {blind}{NumPadAdd} else if (Ebene = 5) SendUnicodeChar(0x03D5) ; phi symbol (varphi) else if (Ebene = 6) @@ -1622,3 +1622,4 @@ return + diff --git a/windows/autohotkey/neo20.ahk b/windows/autohotkey/neo20.ahk index 1b8a783..270c7bb 100644 --- a/windows/autohotkey/neo20.ahk +++ b/windows/autohotkey/neo20.ahk @@ -1095,9 +1095,9 @@ neo_1: if (PriorDeadKey = "comp") CompKey := "1" - else if (PriorCompKey = "r") + else if (PriorCompKey == "r") CompKey := "r_1" - else if (PriorCompKey = "R") + else if (PriorCompKey == "R") CompKey := "R_1" } else if (Ebene = 2) @@ -1380,7 +1380,7 @@ neo_0: else if (Ebene = 3) send {blind}’ else if (Ebene = 4) - Send {blind}{NumpadMinus} + Send {blind}{NumpadSub} else if (Ebene = 5) { CompKey := PriorCompKey @@ -1628,7 +1628,7 @@ neo_q: send {blind}{&} else if ((Ebene = 4) and !(CheckDeadUni("c1",0x207A) or CheckDeadUni("c5",0x208A))) - Send {blind}{NumPadPlus} + Send {blind}{NumPadAdd} else if (Ebene = 5) SendUnicodeChar(0x03D5) ; phi symbol (varphi) else if (Ebene = 6) @@ -2650,6 +2650,7 @@ return + /* ------------------------------------------------------ Methode KeyboardLED zur Steuerung der Keyboard-LEDs diff --git a/windows/autohotkey/neo20.exe b/windows/autohotkey/neo20.exe index 95c8357..5bbe43d 100644 Binary files a/windows/autohotkey/neo20.exe and b/windows/autohotkey/neo20.exe differ -- cgit v1.2.3