reversed "v10" commit

This commit is contained in:
joten 2016-03-09 19:34:57 +01:00
parent d8aafadcc7
commit 7b92900432
10 changed files with 115 additions and 76 deletions

View file

@ -1,12 +1,16 @@
/* /*
:title: bug.n -- Tiling Window Management bug.n -- tiling window management
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n> Copyright (c) 2010-2015 Joshua Fuhs, joten
:license: GNU General Public License version 3;
LICENSE.md or at <http://www.gnu.org/licenses/>
This program is distributed in the hope that it will be useful, but WITHOUT ANY This program is distributed in the hope that it will be useful,
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A but WITHOUT ANY WARRANTY; without even the implied warranty of
PARTICULAR PURPOSE. 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 <http://www.gnu.org/licenses/>
@version 9.0.0
*/ */
Bar_init(m) { Bar_init(m) {

View file

@ -1,12 +1,16 @@
/* /*
:title: bug.n -- Tiling Window Management bug.n -- tiling window management
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n> Copyright (c) 2010-2015 Joshua Fuhs, joten
:license: GNU General Public License version 3;
LICENSE.md or at <http://www.gnu.org/licenses/>
This program is distributed in the hope that it will be useful, but WITHOUT ANY This program is distributed in the hope that it will be useful,
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A but WITHOUT ANY WARRANTY; without even the implied warranty of
PARTICULAR PURPOSE. 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 <http://www.gnu.org/licenses/>
@version 9.0.0
*/ */
Config_init() { Config_init() {

View file

@ -1,12 +1,16 @@
/* /*
:title: bug.n -- Tiling Window Management bug.n -- tiling window management
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n> Copyright (c) 2010-2015 Joshua Fuhs, joten
:license: GNU General Public License version 3;
LICENSE.md or at <http://www.gnu.org/licenses/>
This program is distributed in the hope that it will be useful, but WITHOUT ANY This program is distributed in the hope that it will be useful,
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A but WITHOUT ANY WARRANTY; without even the implied warranty of
PARTICULAR PURPOSE. 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 <http://www.gnu.org/licenses/>
@version 9.0.0
*/ */
Debug_initLog(filename, level = 0, truncateFile = True) Debug_initLog(filename, level = 0, truncateFile = True)

View file

@ -1,25 +1,28 @@
/* /*
:title: bug.n -- Tiling Window Management bug.n -- tiling window management
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n> Copyright (c) 2010-2015 Joshua Fuhs, joten
:license: GNU General Public License version 3;
LICENSE.md or at <http://www.gnu.org/licenses/>
This program is distributed in the hope that it will be useful, but WITHOUT ANY This program is distributed in the hope that it will be useful,
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A but WITHOUT ANY WARRANTY; without even the implied warranty of
PARTICULAR PURPOSE. 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 <http://www.gnu.org/licenses/>
@version 9.0.0
*/ */
VERSION := "10.0.0" NAME := "bug.n"
VERSION := "9.0.0"
;; script settings ;; Script settings
#NoEnv
OnExit, Main_cleanup OnExit, Main_cleanup
SendMode Input
SetBatchLines, -1 SetBatchLines, -1
SetTitleMatchMode, 3 SetTitleMatchMode, 3
SetTitleMatchMode, fast SetTitleMatchMode, fast
SetWinDelay, 10 SetWinDelay, 10
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. #NoEnv
#SingleInstance force #SingleInstance force
#Warn ; Enable warnings to assist with detecting common errors. #Warn ; Enable warnings to assist with detecting common errors.
#WinActivateForce #WinActivateForce
@ -37,7 +40,7 @@ SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Config_filePath := Main_appDir "\Config.ini" Config_filePath := Main_appDir "\Config.ini"
Config_init() Config_init()
Menu, Tray, Tip, bug.n %VERSION% Menu, Tray, Tip, %NAME% %VERSION%
IfExist %A_ScriptDir%\logo.ico IfExist %A_ScriptDir%\logo.ico
Menu, Tray, Icon, %A_ScriptDir%\logo.ico Menu, Tray, Icon, %A_ScriptDir%\logo.ico
Menu, Tray, NoStandard Menu, Tray, NoStandard

View file

@ -1,12 +1,16 @@
/* /*
:title: bug.n -- Tiling Window Management bug.n -- tiling window management
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n> Copyright (c) 2010-2015 Joshua Fuhs, joten
:license: GNU General Public License version 3;
LICENSE.md or at <http://www.gnu.org/licenses/>
This program is distributed in the hope that it will be useful, but WITHOUT ANY This program is distributed in the hope that it will be useful,
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A but WITHOUT ANY WARRANTY; without even the implied warranty of
PARTICULAR PURPOSE. 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 <http://www.gnu.org/licenses/>
@version 9.0.0
*/ */
Manager_init() Manager_init()

View file

@ -1,12 +1,16 @@
/* /*
:title: bug.n -- Tiling Window Management bug.n -- tiling window management
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n> Copyright (c) 2010-2015 Joshua Fuhs, joten
:license: GNU General Public License version 3;
LICENSE.md or at <http://www.gnu.org/licenses/>
This program is distributed in the hope that it will be useful, but WITHOUT ANY This program is distributed in the hope that it will be useful,
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A but WITHOUT ANY WARRANTY; without even the implied warranty of
PARTICULAR PURPOSE. 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 <http://www.gnu.org/licenses/>
@version 9.0.0
*/ */
Monitor_init(m, doRestore) { Monitor_init(m, doRestore) {

View file

@ -1,12 +1,16 @@
/* /*
:title: bug.n -- Tiling Window Management bug.n -- tiling window management
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n> Copyright (c) 2010-2015 Joshua Fuhs, joten
:license: GNU General Public License version 3;
LICENSE.md or at <http://www.gnu.org/licenses/>
This program is distributed in the hope that it will be useful, but WITHOUT ANY This program is distributed in the hope that it will be useful,
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A but WITHOUT ANY WARRANTY; without even the implied warranty of
PARTICULAR PURPOSE. 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 <http://www.gnu.org/licenses/>
@version 9.0.0
*/ */
ResourceMonitor_init() { ResourceMonitor_init() {

View file

@ -1,12 +1,16 @@
/* /*
:title: bug.n -- Tiling Window Management bug.n -- tiling window management
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n> Copyright (c) 2010-2015 Joshua Fuhs, joten
:license: GNU General Public License version 3;
LICENSE.md or at <http://www.gnu.org/licenses/>
This program is distributed in the hope that it will be useful, but WITHOUT ANY This program is distributed in the hope that it will be useful,
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A but WITHOUT ANY WARRANTY; without even the implied warranty of
PARTICULAR PURPOSE. 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 <http://www.gnu.org/licenses/>
@version 9.0.0
*/ */
Tiler_addSubArea(m, v, i, areaX, areaY, areaW, areaH) { Tiler_addSubArea(m, v, i, areaX, areaY, areaW, areaH) {

View file

@ -1,12 +1,16 @@
/* /*
:title: bug.n -- Tiling Window Management bug.n -- tiling window management
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n> Copyright (c) 2010-2015 Joshua Fuhs, joten
:license: GNU General Public License version 3;
LICENSE.md or at <http://www.gnu.org/licenses/>
This program is distributed in the hope that it will be useful, but WITHOUT ANY This program is distributed in the hope that it will be useful,
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A but WITHOUT ANY WARRANTY; without even the implied warranty of
PARTICULAR PURPOSE. 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 <http://www.gnu.org/licenses/>
@version 9.0.0
*/ */
View_init(m, v) View_init(m, v)

View file

@ -1,12 +1,16 @@
/* /*
:title: bug.n -- Tiling Window Management bug.n -- tiling window management
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n> Copyright (c) 2010-2015 Joshua Fuhs, joten
:license: GNU General Public License version 3;
LICENSE.md or at <http://www.gnu.org/licenses/>
This program is distributed in the hope that it will be useful, but WITHOUT ANY This program is distributed in the hope that it will be useful,
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A but WITHOUT ANY WARRANTY; without even the implied warranty of
PARTICULAR PURPOSE. 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 <http://www.gnu.org/licenses/>
@version 9.0.0
*/ */
Window_activate(wndId) { Window_activate(wndId) {