diff --git a/.gitignore b/.gitignore index ec94583..38e6883 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ *.exe *.zip +config.ini +*.json +*.suo +*.sqlite diff --git a/VERSION b/VERSION index 3ce186f..3849426 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.0.8 +v0.0.9 diff --git a/_COMPILE.bat b/_COMPILE.bat index e39ee86..1192d13 100644 --- a/_COMPILE.bat +++ b/_COMPILE.bat @@ -3,4 +3,4 @@ Ahk2Exe.exe /in "virtual_desktop_enhancer.ahk" /icon "app.ico" /compress 2 :loop @tasklist /fi "imagename eq Ahk2Exe.exe" |find ":" > nul @if errorlevel 1 goto loop > nul -zip -r virtual_desktop_enhancer.zip virtual_desktop_enhancer.exe _INSTALL.bat _UNINSTALL.bat README.md VERSION +zip -r virtual_desktop_enhancer.zip virtual_desktop_enhancer.exe config.default.ini _INSTALL.bat _UNINSTALL.bat README.md VERSION diff --git a/config.default.ini b/config.default.ini index ace5325..4afe393 100644 --- a/config.default.ini +++ b/config.default.ini @@ -1,6 +1,20 @@ [config] +; Configures prefix for hotkeys that switch between desktops. +; Default: Ctrl-Win- switch_to_desktop_prefix=^# + +; Configures the prefix for hotkeys that move windows between desktops. +; Default: Win-Alt- move_active_window_to_desktop_prefix=!# + +; Configures the prefix for hotkeys that move windows between desktops and follow. +; Ctrl-Win-Alt- move_active_window_to_desktop_and_follow_prefix=^!# + +; Enables or disables desktop looping. +; 0 to disable, 1 to enable. enable_desktop_looping=0 + +; Enables or disables animating of looping. +; 0 to disable, 1 to enable. animate_desktop_looping=0