Skip to content

Commit

Permalink
[V] Windy 0.14.0
Browse files Browse the repository at this point in the history
#17 - Make usage of %A_LineFile% to get better include-behaviour
#18 - Windy: Setting transparency fails on windows without caption
#19 - Windy: Property scale[] for proportional Resizing when moving monitor
#20 - Windy: Consider Property scale in Property monitorId
#21 - WindLy: Remove unneeded output to messagebox
  • Loading branch information
hoppfrosch committed Jan 20, 2015
2 parents 35795da + 3392691 commit 59848e1
Show file tree
Hide file tree
Showing 16 changed files with 212 additions and 104 deletions.
3 changes: 2 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
(on Branch: **master**, since **2014-10-26**)

-----------------------------------------------------------------
* **Merge branch 'release/0.13.0'** (via Commit [e3766c0](https://github.com/hoppfrosch/AHK_Windy/commit/e3766c01fdf01f6a69eea7d9f5764e0e0de3bb44))
* **Windy 0.13.0** (via Commit [35795da](https://github.com/hoppfrosch/AHK_Windy/commit/35795da9bda44dda986765df87ed534eadab10bf))
* [#16](https://github.com/hoppfrosch/AHK_EDE/issues/16) - WindLy: Iniitial Implementation of class for handling window lists
* **Windy 0.12.3** (via Commit [2f9f578](https://github.com/hoppfrosch/AHK_Windy/commit/2f9f578272bbc99c1a73a5db045c927b2c98f388))
* [#15](https://github.com/hoppfrosch/AHK_EDE/issues/15) - MultiMony: idFromMouse-Property does not work correctly
* [#14](https://github.com/hoppfrosch/AHK_EDE/issues/14) - Mousy: Method locate() destroys other GUI's
Expand Down
6 changes: 3 additions & 3 deletions Examples/Mousy/Confine.ahk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include %A_ScriptDir%\..\..\lib
#include <Windy\Recty>
#include <Windy\Mousy>
#include %A_ScriptDir%\..\..\lib\Windy
#include Recty.ahk
#include Windy.ahk

obj := new Mousy()

Expand Down
3 changes: 2 additions & 1 deletion Examples/Mousy/Move.ahk
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <Windy\Mousy>
#include %A_ScriptDir%\..\..\lib\Windy
#include Mousy.ahk

obj := new Mousy()
OutputDebug % ">>>>>[" A_ThisFunc "]>>>>>"
Expand Down
3 changes: 2 additions & 1 deletion Examples/Mousy/Speed.ahk
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <Windy\Mousy>
#include %A_ScriptDir%\..\..\lib\Windy
#include Mousy.ahk

obj := new Mousy()
obj.speed := 10
Expand Down
3 changes: 2 additions & 1 deletion Examples/Mousy/Trail.ahk
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <Windy\Mousy>
#include %A_ScriptDir%\..\..\lib\Windy
#include Mousy.ahk

CoordMode,Mouse,Screen
obj := new Mousy()
Expand Down
5 changes: 3 additions & 2 deletions Examples/WindLy/Windly_Demo01.ahk
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <Windy\WindLy>
#include <Windy\Const_WinUser>
#include %A_ScriptDir%\..\..\lib\Windy
#include WindLy.ahk
#include Const_WinUser.ahk

WinGet, Wins, List

Expand Down
3 changes: 3 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ Documentation is available on [gh_pages](http://hoppfrosch.github.io/AHK_Windy)
- [Yunit-Framework](https://github.com/Uberi/Yunit)
- **and to everyone I might have forgotten**

### Bugfixes
- [WinSet, Transparent fails on AHK GUI -caption ](http://www.autohotkey.com/board/topic/67874-winset-transparent-fails-on-ahk-gui-caption/)

### More Inspiration taken from ###

- [WindowPad](http://http://www.autohotkey.com/board/topic/19990-windowpad-window-moving-tool)/[WindowPadX](https://github.com/hoppfrosch/WindowPadX) - free - based on AutoHotkey as well
Expand Down
4 changes: 2 additions & 2 deletions YUnit_Mony.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
#Include %A_ScriptDir%\Yunit\Yunit.ahk
#Include %A_ScriptDir%\Yunit\Window.ahk
#Include %A_ScriptDir%\Yunit\StdOut.ahk
#include lib\Windy\Mony.ahk
#include lib\Windy\Recty.ahk
#include <Windy\Mony>
#include <Windy\Recty>

#Warn All
;#Warn LocalSameAsGlobal, Off
Expand Down
9 changes: 5 additions & 4 deletions YUnit_MultiMony.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
#Include %A_ScriptDir%\Yunit\Yunit.ahk
#Include %A_ScriptDir%\Yunit\Window.ahk
#Include %A_ScriptDir%\Yunit\StdOut.ahk
#include lib\Windy\MultiMony.ahk
#include lib\Windy\Mony.ahk
#include lib\Windy\Recty.ahk
#include lib\Windy\Windy.ahk
#include <Windy\MultiMony>
#include <Windy\Mony>
#include <Windy\Recty>
#include <Windy\Windy>

#Warn All
;#Warn LocalSameAsGlobal, Off
#SingleInstance force
Expand Down

0 comments on commit 59848e1

Please sign in to comment.