diff options
Diffstat (limited to 'windows/autohotkey')
| -rw-r--r-- | windows/autohotkey/Build-Update.bat | 1 | ||||
| -rw-r--r-- | windows/autohotkey/Changelog-and-Todo.txt | 3 | ||||
| -rw-r--r-- | windows/autohotkey/Source/All.ahk | 2 | ||||
| -rw-r--r-- | windows/autohotkey/Source/Compose.ahk | 2 | ||||
| -rw-r--r-- | windows/autohotkey/Source/Global-Part.ahk | 2 | ||||
| -rw-r--r-- | windows/autohotkey/Source/Keys-Neo.ahk | 2 | ||||
| -rw-r--r-- | windows/autohotkey/Source/Keys-Qwert-to-Neo.ahk | 2 | ||||
| -rw-r--r-- | windows/autohotkey/Source/Methods-Layers.ahk | 3 | ||||
| -rw-r--r-- | windows/autohotkey/Source/Methods-Lights.ahk | 2 | ||||
| -rw-r--r-- | windows/autohotkey/Source/Methods-ScreenKeyboard.ahk | 2 | ||||
| -rw-r--r-- | windows/autohotkey/Source/Methods-Unicode.ahk | 2 | ||||
| -rw-r--r-- | windows/autohotkey/Source/Warning.ahk | 2 | 
12 files changed, 24 insertions, 1 deletions
diff --git a/windows/autohotkey/Build-Update.bat b/windows/autohotkey/Build-Update.bat index fc6ebe4..ce7405d 100644 --- a/windows/autohotkey/Build-Update.bat +++ b/windows/autohotkey/Build-Update.bat @@ -8,7 +8,6 @@ REM tskill neo20-all-in-one  echo Creating a new Driver from the Source code
  REM The order *is* important!
  copy "Warning.ahk" + "Global-Part.ahk" + "Methods-Layers.ahk" + "Keys-Qwert-to-Neo.ahk" + "Keys-Neo.ahk" + "Methods-Lights.ahk" + "Methods-Other.ahk" + "Compose.ahk" + "Methods-Unicode.ahk" + "Methods-ScreenKeyboard.ahk" "..\%fn%.ahk"
 -REM if exist "..\Compose\Compose-all-in-one.ahk" copy "..\%fn%.ahk" + "..\Compose\Compose-all-in-one.ahk" "..\%fn%.ahk"
  echo Compiling the new Driver using AutoHotkey...
  "C:\Programme\AutoHotkey\Compiler\Ahk2Exe.exe" /in "..\%fn%.ahk" /out "..\%fn%.exe" /icon "..\neo.ico"
 diff --git a/windows/autohotkey/Changelog-and-Todo.txt b/windows/autohotkey/Changelog-and-Todo.txt index dec9797..29a83b9 100644 --- a/windows/autohotkey/Changelog-and-Todo.txt +++ b/windows/autohotkey/Changelog-and-Todo.txt @@ -23,6 +23,9 @@ Matthias Wächter <matthias (at) waechter.wiz. a t>  === Änderungshistorie ===
 +Revision 897 (von Dennis Heidsiek)
 +- Skript kompiliert wieder (alle .ahk-Dateien enden jetzt mit mindestens zwei Leezeilen)
 +- Ein Überbleibsel aus dem Build-Skript entfernt (bezog sich noch auf den Compose-Playground).
  Revision 888 (von Martin Roppelt)
  - Cokos mit 4 Tasten möglich.
  - horizontalen Ellipsen-CompKey wiederhergestellt.
 diff --git a/windows/autohotkey/Source/All.ahk b/windows/autohotkey/Source/All.ahk index 61eaedb..cd5ef3e 100644 --- a/windows/autohotkey/Source/All.ahk +++ b/windows/autohotkey/Source/All.ahk @@ -14,3 +14,5 @@  #Include %a_scriptdir%\Compose.ahk
  #Include %a_scriptdir%\Methods-Unicode.ahk
  #Include %a_scriptdir%\Methods-ScreenKeyboard.ahk
 +
 +
 diff --git a/windows/autohotkey/Source/Compose.ahk b/windows/autohotkey/Source/Compose.ahk index 3d2e3df..2a6dca2 100644 --- a/windows/autohotkey/Source/Compose.ahk +++ b/windows/autohotkey/Source/Compose.ahk @@ -2825,3 +2825,5 @@ CheckCompUni("<acute> <z>", 0x17A)  CheckCompUni("<c> <Z>", 0x17D)
  CheckCompUni("<c> <z>", 0x17E)
  }
 +
 +
 diff --git a/windows/autohotkey/Source/Global-Part.ahk b/windows/autohotkey/Source/Global-Part.ahk index 6b7b59d..7735edc 100644 --- a/windows/autohotkey/Source/Global-Part.ahk +++ b/windows/autohotkey/Source/Global-Part.ahk @@ -335,3 +335,5 @@ return  exitprogram:
    exitapp
  return
 +
 +
 diff --git a/windows/autohotkey/Source/Keys-Neo.ahk b/windows/autohotkey/Source/Keys-Neo.ahk index baf8db0..d7de34a 100644 --- a/windows/autohotkey/Source/Keys-Neo.ahk +++ b/windows/autohotkey/Source/Keys-Neo.ahk @@ -1151,3 +1151,5 @@ neo_tab:      DeadKey := ""
      CompKey := ""
    } return
 +
 +
 diff --git a/windows/autohotkey/Source/Keys-Qwert-to-Neo.ahk b/windows/autohotkey/Source/Keys-Qwert-to-Neo.ahk index 1abd9dd..0b1e19e 100644 --- a/windows/autohotkey/Source/Keys-Qwert-to-Neo.ahk +++ b/windows/autohotkey/Source/Keys-Qwert-to-Neo.ahk @@ -237,3 +237,5 @@ VK09SC00F::goto neo_tab  *VK2DSC052::goto neo_Numpad0   ; NumPadIns
  *VK6ESC053::                   ; NumPadDot
  *VK2ESC053::goto neo_NumpadDot ; NumPadIns
 +
 +
 diff --git a/windows/autohotkey/Source/Methods-Layers.ahk b/windows/autohotkey/Source/Methods-Layers.ahk index 133be91..c59ccb7 100644 --- a/windows/autohotkey/Source/Methods-Layers.ahk +++ b/windows/autohotkey/Source/Methods-Layers.ahk @@ -126,3 +126,6 @@ IsMod4Pressed()      else
        return (GetKeyState("<","P") or GetKeyState("SC138","P") or GetKeyState("ä","P"))
  }
 +
 +
 +
 diff --git a/windows/autohotkey/Source/Methods-Lights.ahk b/windows/autohotkey/Source/Methods-Lights.ahk index 62c2687..861f4ae 100644 --- a/windows/autohotkey/Source/Methods-Lights.ahk +++ b/windows/autohotkey/Source/Methods-Lights.ahk @@ -104,3 +104,5 @@ InsertIntegerLED(pInteger, ByRef pDest, pOffset = 0, pSize = 4) {    Loop %pSize%  ; Copy each byte in the integer into the structure as raw binary data. 
      DllCall("RtlFillMemory", "UInt", &pDest + pOffset + A_Index-1, "UInt", 1, "UChar", pInteger >> 8*(A_Index-1) & 0xFF) 
  }
 +
 +
 diff --git a/windows/autohotkey/Source/Methods-ScreenKeyboard.ahk b/windows/autohotkey/Source/Methods-ScreenKeyboard.ahk index 139f724..0ba32f6 100644 --- a/windows/autohotkey/Source/Methods-ScreenKeyboard.ahk +++ b/windows/autohotkey/Source/Methods-ScreenKeyboard.ahk @@ -154,3 +154,5 @@ ToggleAlwaysOnTop:      alwaysOnTop = 1
    }
  Return
 +
 +
 diff --git a/windows/autohotkey/Source/Methods-Unicode.ahk b/windows/autohotkey/Source/Methods-Unicode.ahk index 161e01c..4918940 100644 --- a/windows/autohotkey/Source/Methods-Unicode.ahk +++ b/windows/autohotkey/Source/Methods-Unicode.ahk @@ -31,3 +31,5 @@ SendUnicodeChar(charCode1, charCode2) {  EncodeInteger(ref,val) {
    DllCall("ntdll\RtlFillMemoryUlong","Uint",ref,"Uint",4,"Uint",val)
  }
 +
 +
 diff --git a/windows/autohotkey/Source/Warning.ahk b/windows/autohotkey/Source/Warning.ahk index b22ea65..559ce26 100644 --- a/windows/autohotkey/Source/Warning.ahk +++ b/windows/autohotkey/Source/Warning.ahk @@ -41,3 +41,5 @@ Das war die letzte WARNUNG, ich hoffe nur, dass  Sie wirklich wissen, was Sie hier tun wollen ...
  *******************************************
  */
 +
 +
  | 
