From 9ea8b284a61f1f842814aaaac254449da0a63450 Mon Sep 17 00:00:00 2001 From: joten Date: Mon, 15 Jan 2018 16:55:50 +0100 Subject: [PATCH] Prepared the release of version 9.0.1 --- doc/CHANGES.md | 8 ++++++++ doc/Customization.md | 4 ++-- doc/Default_configuration.md | 12 +++++++++--- src/Bar.ahk | 4 ++-- src/Config.ahk | 4 ++-- src/Debug.ahk | 4 ++-- src/Main.ahk | 6 +++--- src/Manager.ahk | 4 ++-- src/Monitor.ahk | 4 ++-- src/ResourceMonitor.ahk | 4 ++-- src/Tiler.ahk | 4 ++-- src/View.ahk | 4 ++-- src/Window.ahk | 4 ++-- 13 files changed, 40 insertions(+), 26 deletions(-) diff --git a/doc/CHANGES.md b/doc/CHANGES.md index 1d7b6c7..7d8a836 100644 --- a/doc/CHANGES.md +++ b/doc/CHANGES.md @@ -6,6 +6,14 @@ * `~` changed * `+` added +### 9.0.1 + +1. `+` Added a cheat sheet for the default hotkeys. +2. `~` Revised the directory structure regarding the test and build tools. +3. `+` Added a build script to create the executable and the cheat sheet as a printable HTML file. +4. `~` Moved the `/usr/*.{ini,png}` files from the main repository to the Wiki and adding a page with configuration examples. +5. `+` Added a tutorial describing bug.n and dynamic tiling in more detail. + ### 9.0.0 1. `~` Renamed the function `Manager_toggleDecor` to `Window_toggleDecor`. diff --git a/doc/Customization.md b/doc/Customization.md index 2b3b2d6..1875fb7 100644 --- a/doc/Customization.md +++ b/doc/Customization.md @@ -35,8 +35,8 @@ The available configuration variables are listed in the document associated functions are listed in the document "[Default hotkeys](./Default_hotkeys.md)". -You may find a sample and template configuration file in the -[usr directory](../usr/). +You may find a sample and template configuration file on the Wiki page +[Configuration examples](https://github.com/fuhsjr00/bug.n/wiki/Configuration-examples). ### Re-using Win+L diff --git a/doc/Default_configuration.md b/doc/Default_configuration.md index 8207096..9e584aa 100644 --- a/doc/Default_configuration.md +++ b/doc/Default_configuration.md @@ -77,8 +77,7 @@ separated list, which contains the following items: > A valid color value is either one of the 16 primary HTML [color names](https://autohotkey.com/docs/commands/Progress.htm#colors) -or a 6-digit RGB color value. Examples are `Red` or `FF0000`; for a more -elaborate example have a look at [joten_01.ini](../usr/joten_01.ini). +or a 6-digit RGB color value. Examples are `Red` or `FF0000`. ------------------------------------------------------------------------------- `Config_backColor_#2=;;;;;;;;` @@ -494,7 +493,14 @@ Firefox web browser. If the window's title bar is hidden, it looks distorted. These windows should also be treated as pop-up windows. ------------------------------------------------------------------------------- -`Config_ruleCount=17` +`Config_rule_#18=ApplicationFrameWindow;.*Edge;;1;0;0;0;1;0;` + +Windows with the class ApplicationFrameWindow are not handled by bug.n by +default. Edge is one application with that window class, which does not load in +the background and is set manually to be managed by bug.n. + +------------------------------------------------------------------------------- +`Config_ruleCount=18` This variable will be automatically set to the total number of active rules above. diff --git a/src/Bar.ahk b/src/Bar.ahk index 32b5047..b506618 100644 --- a/src/Bar.ahk +++ b/src/Bar.ahk @@ -1,6 +1,6 @@ /* bug.n -- tiling window management - Copyright (c) 2010-2015 Joshua Fuhs, joten + Copyright (c) 2010-2018 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 @@ -10,7 +10,7 @@ @license GNU General Public License version 3 ../LICENSE.md or - @version 9.0.0 + @version 9.0.1 */ Bar_init(m) { diff --git a/src/Config.ahk b/src/Config.ahk index b8c8f5c..6391869 100644 --- a/src/Config.ahk +++ b/src/Config.ahk @@ -1,6 +1,6 @@ /* bug.n -- tiling window management - Copyright (c) 2010-2015 Joshua Fuhs, joten + Copyright (c) 2010-2018 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 @@ -10,7 +10,7 @@ @license GNU General Public License version 3 ../LICENSE.md or - @version 9.0.0 + @version 9.0.1 */ Config_init() { diff --git a/src/Debug.ahk b/src/Debug.ahk index 3889e67..c2203ad 100644 --- a/src/Debug.ahk +++ b/src/Debug.ahk @@ -1,6 +1,6 @@ /* bug.n -- tiling window management - Copyright (c) 2010-2015 Joshua Fuhs, joten + Copyright (c) 2010-2018 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 @@ -10,7 +10,7 @@ @license GNU General Public License version 3 ../LICENSE.md or - @version 9.0.0 + @version 9.0.1 */ Debug_initLog(filename, level = 0, truncateFile = True) diff --git a/src/Main.ahk b/src/Main.ahk index 830e90e..a5c6efe 100644 --- a/src/Main.ahk +++ b/src/Main.ahk @@ -1,6 +1,6 @@ /* bug.n -- tiling window management - Copyright (c) 2010-2015 Joshua Fuhs, joten + Copyright (c) 2010-2018 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 @@ -10,11 +10,11 @@ @license GNU General Public License version 3 ../LICENSE.md or - @version 9.0.0 + @version 9.0.1 */ NAME := "bug.n" -VERSION := "9.0.0" +VERSION := "9.0.1" ;; Script settings OnExit, Main_cleanup diff --git a/src/Manager.ahk b/src/Manager.ahk index 4e7301e..c666aa7 100644 --- a/src/Manager.ahk +++ b/src/Manager.ahk @@ -1,6 +1,6 @@ /* bug.n -- tiling window management - Copyright (c) 2010-2015 Joshua Fuhs, joten + Copyright (c) 2010-2018 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 @@ -10,7 +10,7 @@ @license GNU General Public License version 3 ../LICENSE.md or - @version 9.0.0 + @version 9.0.1 */ Manager_init() diff --git a/src/Monitor.ahk b/src/Monitor.ahk index e585059..94e73ba 100644 --- a/src/Monitor.ahk +++ b/src/Monitor.ahk @@ -1,6 +1,6 @@ /* bug.n -- tiling window management - Copyright (c) 2010-2015 Joshua Fuhs, joten + Copyright (c) 2010-2018 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 @@ -10,7 +10,7 @@ @license GNU General Public License version 3 ../LICENSE.md or - @version 9.0.0 + @version 9.0.1 */ Monitor_init(m, doRestore) { diff --git a/src/ResourceMonitor.ahk b/src/ResourceMonitor.ahk index a452d3d..deeb48c 100644 --- a/src/ResourceMonitor.ahk +++ b/src/ResourceMonitor.ahk @@ -1,6 +1,6 @@ /* bug.n -- tiling window management - Copyright (c) 2010-2015 Joshua Fuhs, joten + Copyright (c) 2010-2018 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 @@ -10,7 +10,7 @@ @license GNU General Public License version 3 ../LICENSE.md or - @version 9.0.0 + @version 9.0.1 */ ResourceMonitor_init() { diff --git a/src/Tiler.ahk b/src/Tiler.ahk index 7898ace..5ace6e8 100644 --- a/src/Tiler.ahk +++ b/src/Tiler.ahk @@ -1,6 +1,6 @@ /* bug.n -- tiling window management - Copyright (c) 2010-2015 Joshua Fuhs, joten + Copyright (c) 2010-2018 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 @@ -10,7 +10,7 @@ @license GNU General Public License version 3 ../LICENSE.md or - @version 9.0.0 + @version 9.0.1 */ Tiler_addSubArea(m, v, i, areaX, areaY, areaW, areaH) { diff --git a/src/View.ahk b/src/View.ahk index c4ba5b8..2785208 100644 --- a/src/View.ahk +++ b/src/View.ahk @@ -1,6 +1,6 @@ /* bug.n -- tiling window management - Copyright (c) 2010-2015 Joshua Fuhs, joten + Copyright (c) 2010-2018 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 @@ -10,7 +10,7 @@ @license GNU General Public License version 3 ../LICENSE.md or - @version 9.0.0 + @version 9.0.1 */ View_init(m, v) diff --git a/src/Window.ahk b/src/Window.ahk index 1f7ebff..8032be5 100644 --- a/src/Window.ahk +++ b/src/Window.ahk @@ -1,6 +1,6 @@ /* bug.n -- tiling window management - Copyright (c) 2010-2015 Joshua Fuhs, joten + Copyright (c) 2010-2018 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 @@ -10,7 +10,7 @@ @license GNU General Public License version 3 ../LICENSE.md or - @version 9.0.0 + @version 9.0.1 */ Window_activate(wndId) {