From 7b92900432345f074b6817e1fc0af0254b59da7d Mon Sep 17 00:00:00 2001 From: joten Date: Wed, 9 Mar 2016 19:34:57 +0100 Subject: [PATCH] reversed "v10" commit --- src/Bar.ahk | 18 +++++++++++------- src/Config.ahk | 18 +++++++++++------- src/Debug.ahk | 18 +++++++++++------- src/Main.ahk | 29 ++++++++++++++++------------- src/Manager.ahk | 18 +++++++++++------- src/Monitor.ahk | 18 +++++++++++------- src/ResourceMonitor.ahk | 18 +++++++++++------- src/Tiler.ahk | 18 +++++++++++------- src/View.ahk | 18 +++++++++++------- src/Window.ahk | 18 +++++++++++------- 10 files changed, 115 insertions(+), 76 deletions(-) diff --git a/src/Bar.ahk b/src/Bar.ahk index 8d7d29d..8bed1e8 100644 --- a/src/Bar.ahk +++ b/src/Bar.ahk @@ -1,12 +1,16 @@ /* -:title: bug.n -- Tiling Window Management -:copyright: (c) 2016 by Joshua Fuhs & joten -:license: GNU General Public License version 3; - LICENSE.md or at + bug.n -- tiling window management + Copyright (c) 2010-2015 Joshua Fuhs, joten -This program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + @license GNU General Public License version 3 + ../LICENSE.md or + + @version 9.0.0 */ Bar_init(m) { diff --git a/src/Config.ahk b/src/Config.ahk index f85105e..6740a2c 100644 --- a/src/Config.ahk +++ b/src/Config.ahk @@ -1,12 +1,16 @@ /* -:title: bug.n -- Tiling Window Management -:copyright: (c) 2016 by Joshua Fuhs & joten -:license: GNU General Public License version 3; - LICENSE.md or at + bug.n -- tiling window management + Copyright (c) 2010-2015 Joshua Fuhs, joten -This program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + @license GNU General Public License version 3 + ../LICENSE.md or + + @version 9.0.0 */ Config_init() { diff --git a/src/Debug.ahk b/src/Debug.ahk index 2614577..a9342d7 100644 --- a/src/Debug.ahk +++ b/src/Debug.ahk @@ -1,12 +1,16 @@ /* -:title: bug.n -- Tiling Window Management -:copyright: (c) 2016 by Joshua Fuhs & joten -:license: GNU General Public License version 3; - LICENSE.md or at + bug.n -- tiling window management + Copyright (c) 2010-2015 Joshua Fuhs, joten -This program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + @license GNU General Public License version 3 + ../LICENSE.md or + + @version 9.0.0 */ Debug_initLog(filename, level = 0, truncateFile = True) diff --git a/src/Main.ahk b/src/Main.ahk index 0e6b702..c439665 100644 --- a/src/Main.ahk +++ b/src/Main.ahk @@ -1,25 +1,28 @@ /* -:title: bug.n -- Tiling Window Management -:copyright: (c) 2016 by Joshua Fuhs & joten -:license: GNU General Public License version 3; - LICENSE.md or at + bug.n -- tiling window management + Copyright (c) 2010-2015 Joshua Fuhs, joten -This program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + @license GNU General Public License version 3 + ../LICENSE.md or + + @version 9.0.0 */ -VERSION := "10.0.0" +NAME := "bug.n" +VERSION := "9.0.0" -;; script settings -#NoEnv +;; Script settings OnExit, Main_cleanup -SendMode Input SetBatchLines, -1 SetTitleMatchMode, 3 SetTitleMatchMode, fast SetWinDelay, 10 -SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. +#NoEnv #SingleInstance force #Warn ; Enable warnings to assist with detecting common errors. #WinActivateForce @@ -37,7 +40,7 @@ SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. Config_filePath := Main_appDir "\Config.ini" Config_init() - Menu, Tray, Tip, bug.n %VERSION% + Menu, Tray, Tip, %NAME% %VERSION% IfExist %A_ScriptDir%\logo.ico Menu, Tray, Icon, %A_ScriptDir%\logo.ico Menu, Tray, NoStandard diff --git a/src/Manager.ahk b/src/Manager.ahk index c0589c2..2015e4c 100644 --- a/src/Manager.ahk +++ b/src/Manager.ahk @@ -1,12 +1,16 @@ /* -:title: bug.n -- Tiling Window Management -:copyright: (c) 2016 by Joshua Fuhs & joten -:license: GNU General Public License version 3; - LICENSE.md or at + bug.n -- tiling window management + Copyright (c) 2010-2015 Joshua Fuhs, joten -This program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + @license GNU General Public License version 3 + ../LICENSE.md or + + @version 9.0.0 */ Manager_init() diff --git a/src/Monitor.ahk b/src/Monitor.ahk index 76481c9..f190c53 100644 --- a/src/Monitor.ahk +++ b/src/Monitor.ahk @@ -1,12 +1,16 @@ /* -:title: bug.n -- Tiling Window Management -:copyright: (c) 2016 by Joshua Fuhs & joten -:license: GNU General Public License version 3; - LICENSE.md or at + bug.n -- tiling window management + Copyright (c) 2010-2015 Joshua Fuhs, joten -This program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + @license GNU General Public License version 3 + ../LICENSE.md or + + @version 9.0.0 */ Monitor_init(m, doRestore) { diff --git a/src/ResourceMonitor.ahk b/src/ResourceMonitor.ahk index 8bfc1f0..98e0a2b 100644 --- a/src/ResourceMonitor.ahk +++ b/src/ResourceMonitor.ahk @@ -1,12 +1,16 @@ /* -:title: bug.n -- Tiling Window Management -:copyright: (c) 2016 by Joshua Fuhs & joten -:license: GNU General Public License version 3; - LICENSE.md or at + bug.n -- tiling window management + Copyright (c) 2010-2015 Joshua Fuhs, joten -This program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + @license GNU General Public License version 3 + ../LICENSE.md or + + @version 9.0.0 */ ResourceMonitor_init() { diff --git a/src/Tiler.ahk b/src/Tiler.ahk index 7a8ee69..76f332f 100644 --- a/src/Tiler.ahk +++ b/src/Tiler.ahk @@ -1,12 +1,16 @@ /* -:title: bug.n -- Tiling Window Management -:copyright: (c) 2016 by Joshua Fuhs & joten -:license: GNU General Public License version 3; - LICENSE.md or at + bug.n -- tiling window management + Copyright (c) 2010-2015 Joshua Fuhs, joten -This program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + @license GNU General Public License version 3 + ../LICENSE.md or + + @version 9.0.0 */ Tiler_addSubArea(m, v, i, areaX, areaY, areaW, areaH) { diff --git a/src/View.ahk b/src/View.ahk index 5942cba..b858532 100644 --- a/src/View.ahk +++ b/src/View.ahk @@ -1,12 +1,16 @@ /* -:title: bug.n -- Tiling Window Management -:copyright: (c) 2016 by Joshua Fuhs & joten -:license: GNU General Public License version 3; - LICENSE.md or at + bug.n -- tiling window management + Copyright (c) 2010-2015 Joshua Fuhs, joten -This program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + @license GNU General Public License version 3 + ../LICENSE.md or + + @version 9.0.0 */ View_init(m, v) diff --git a/src/Window.ahk b/src/Window.ahk index 20bf541..5ac4f21 100644 --- a/src/Window.ahk +++ b/src/Window.ahk @@ -1,12 +1,16 @@ /* -:title: bug.n -- Tiling Window Management -:copyright: (c) 2016 by Joshua Fuhs & joten -:license: GNU General Public License version 3; - LICENSE.md or at + bug.n -- tiling window management + Copyright (c) 2010-2015 Joshua Fuhs, joten -This program is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A -PARTICULAR PURPOSE. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + @license GNU General Public License version 3 + ../LICENSE.md or + + @version 9.0.0 */ Window_activate(wndId) {