Prepared the release of version 9.0.1

This commit is contained in:
joten 2018-01-15 16:55:50 +01:00
parent 26d86e608c
commit 9ea8b284a6
13 changed files with 40 additions and 26 deletions

View File

@ -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`.

View File

@ -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

View File

@ -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=<COLOR_GRADIENTACTIVECAPTION>;;;;;;;<COLOR_MENU>;<COLOR_MENU>`
@ -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.

View File

@ -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 <http://www.gnu.org/licenses/>
@version 9.0.0
@version 9.0.1
*/
Bar_init(m) {

View File

@ -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 <http://www.gnu.org/licenses/>
@version 9.0.0
@version 9.0.1
*/
Config_init() {

View File

@ -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 <http://www.gnu.org/licenses/>
@version 9.0.0
@version 9.0.1
*/
Debug_initLog(filename, level = 0, truncateFile = True)

View File

@ -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 <http://www.gnu.org/licenses/>
@version 9.0.0
@version 9.0.1
*/
NAME := "bug.n"
VERSION := "9.0.0"
VERSION := "9.0.1"
;; Script settings
OnExit, Main_cleanup

View File

@ -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 <http://www.gnu.org/licenses/>
@version 9.0.0
@version 9.0.1
*/
Manager_init()

View File

@ -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 <http://www.gnu.org/licenses/>
@version 9.0.0
@version 9.0.1
*/
Monitor_init(m, doRestore) {

View File

@ -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 <http://www.gnu.org/licenses/>
@version 9.0.0
@version 9.0.1
*/
ResourceMonitor_init() {

View File

@ -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 <http://www.gnu.org/licenses/>
@version 9.0.0
@version 9.0.1
*/
Tiler_addSubArea(m, v, i, areaX, areaY, areaW, areaH) {

View File

@ -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 <http://www.gnu.org/licenses/>
@version 9.0.0
@version 9.0.1
*/
View_init(m, v)

View File

@ -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 <http://www.gnu.org/licenses/>
@version 9.0.0
@version 9.0.1
*/
Window_activate(wndId) {