reversed "v10" commit
This commit is contained in:
parent
d8aafadcc7
commit
7b92900432
10 changed files with 115 additions and 76 deletions
18
src/Bar.ahk
18
src/Bar.ahk
|
@ -1,12 +1,16 @@
|
|||
/*
|
||||
:title: bug.n -- Tiling Window Management
|
||||
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n>
|
||||
:license: GNU General Public License version 3;
|
||||
LICENSE.md or at <http://www.gnu.org/licenses/>
|
||||
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 <http://www.gnu.org/licenses/>
|
||||
|
||||
@version 9.0.0
|
||||
*/
|
||||
|
||||
Bar_init(m) {
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
/*
|
||||
:title: bug.n -- Tiling Window Management
|
||||
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n>
|
||||
:license: GNU General Public License version 3;
|
||||
LICENSE.md or at <http://www.gnu.org/licenses/>
|
||||
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 <http://www.gnu.org/licenses/>
|
||||
|
||||
@version 9.0.0
|
||||
*/
|
||||
|
||||
Config_init() {
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
/*
|
||||
:title: bug.n -- Tiling Window Management
|
||||
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n>
|
||||
:license: GNU General Public License version 3;
|
||||
LICENSE.md or at <http://www.gnu.org/licenses/>
|
||||
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 <http://www.gnu.org/licenses/>
|
||||
|
||||
@version 9.0.0
|
||||
*/
|
||||
|
||||
Debug_initLog(filename, level = 0, truncateFile = True)
|
||||
|
|
29
src/Main.ahk
29
src/Main.ahk
|
@ -1,25 +1,28 @@
|
|||
/*
|
||||
:title: bug.n -- Tiling Window Management
|
||||
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n>
|
||||
:license: GNU General Public License version 3;
|
||||
LICENSE.md or at <http://www.gnu.org/licenses/>
|
||||
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 <http://www.gnu.org/licenses/>
|
||||
|
||||
@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
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
/*
|
||||
:title: bug.n -- Tiling Window Management
|
||||
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n>
|
||||
:license: GNU General Public License version 3;
|
||||
LICENSE.md or at <http://www.gnu.org/licenses/>
|
||||
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 <http://www.gnu.org/licenses/>
|
||||
|
||||
@version 9.0.0
|
||||
*/
|
||||
|
||||
Manager_init()
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
/*
|
||||
:title: bug.n -- Tiling Window Management
|
||||
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n>
|
||||
:license: GNU General Public License version 3;
|
||||
LICENSE.md or at <http://www.gnu.org/licenses/>
|
||||
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 <http://www.gnu.org/licenses/>
|
||||
|
||||
@version 9.0.0
|
||||
*/
|
||||
|
||||
Monitor_init(m, doRestore) {
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
/*
|
||||
:title: bug.n -- Tiling Window Management
|
||||
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n>
|
||||
:license: GNU General Public License version 3;
|
||||
LICENSE.md or at <http://www.gnu.org/licenses/>
|
||||
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 <http://www.gnu.org/licenses/>
|
||||
|
||||
@version 9.0.0
|
||||
*/
|
||||
|
||||
ResourceMonitor_init() {
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
/*
|
||||
:title: bug.n -- Tiling Window Management
|
||||
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n>
|
||||
:license: GNU General Public License version 3;
|
||||
LICENSE.md or at <http://www.gnu.org/licenses/>
|
||||
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 <http://www.gnu.org/licenses/>
|
||||
|
||||
@version 9.0.0
|
||||
*/
|
||||
|
||||
Tiler_addSubArea(m, v, i, areaX, areaY, areaW, areaH) {
|
||||
|
|
18
src/View.ahk
18
src/View.ahk
|
@ -1,12 +1,16 @@
|
|||
/*
|
||||
:title: bug.n -- Tiling Window Management
|
||||
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n>
|
||||
:license: GNU General Public License version 3;
|
||||
LICENSE.md or at <http://www.gnu.org/licenses/>
|
||||
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 <http://www.gnu.org/licenses/>
|
||||
|
||||
@version 9.0.0
|
||||
*/
|
||||
|
||||
View_init(m, v)
|
||||
|
|
|
@ -1,12 +1,16 @@
|
|||
/*
|
||||
:title: bug.n -- Tiling Window Management
|
||||
:copyright: (c) 2016 by Joshua Fuhs & joten <https://github.com/fuhsjr00/bug.n>
|
||||
:license: GNU General Public License version 3;
|
||||
LICENSE.md or at <http://www.gnu.org/licenses/>
|
||||
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 <http://www.gnu.org/licenses/>
|
||||
|
||||
@version 9.0.0
|
||||
*/
|
||||
|
||||
Window_activate(wndId) {
|
||||
|
|
Loading…
Reference in a new issue