Prepared the release of version 9.0.1
This commit is contained in:
parent
26d86e608c
commit
9ea8b284a6
13 changed files with 40 additions and 26 deletions
|
@ -6,6 +6,14 @@
|
||||||
* `~` changed
|
* `~` changed
|
||||||
* `+` added
|
* `+` 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
|
### 9.0.0
|
||||||
|
|
||||||
1. `~` Renamed the function `Manager_toggleDecor` to `Window_toggleDecor`.
|
1. `~` Renamed the function `Manager_toggleDecor` to `Window_toggleDecor`.
|
||||||
|
|
|
@ -35,8 +35,8 @@ The available configuration variables are listed in the document
|
||||||
associated functions are listed in the document
|
associated functions are listed in the document
|
||||||
"[Default hotkeys](./Default_hotkeys.md)".
|
"[Default hotkeys](./Default_hotkeys.md)".
|
||||||
|
|
||||||
You may find a sample and template configuration file in the
|
You may find a sample and template configuration file on the Wiki page
|
||||||
[usr directory](../usr/).
|
[Configuration examples](https://github.com/fuhsjr00/bug.n/wiki/Configuration-examples).
|
||||||
|
|
||||||
### Re-using Win+L
|
### Re-using Win+L
|
||||||
|
|
||||||
|
|
|
@ -77,8 +77,7 @@ separated list, which contains the following items:
|
||||||
|
|
||||||
> A valid color value is either one of the 16 primary HTML
|
> A valid color value is either one of the 16 primary HTML
|
||||||
[color names](https://autohotkey.com/docs/commands/Progress.htm#colors)
|
[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
|
or a 6-digit RGB color value. Examples are `Red` or `FF0000`.
|
||||||
elaborate example have a look at [joten_01.ini](../usr/joten_01.ini).
|
|
||||||
|
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
`Config_backColor_#2=<COLOR_GRADIENTACTIVECAPTION>;;;;;;;<COLOR_MENU>;<COLOR_MENU>`
|
`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.
|
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
|
This variable will be automatically set to the total number of active rules
|
||||||
above.
|
above.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
bug.n -- tiling window management
|
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,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
@license GNU General Public License version 3
|
@license GNU General Public License version 3
|
||||||
../LICENSE.md or <http://www.gnu.org/licenses/>
|
../LICENSE.md or <http://www.gnu.org/licenses/>
|
||||||
|
|
||||||
@version 9.0.0
|
@version 9.0.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Bar_init(m) {
|
Bar_init(m) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
bug.n -- tiling window management
|
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,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
@license GNU General Public License version 3
|
@license GNU General Public License version 3
|
||||||
../LICENSE.md or <http://www.gnu.org/licenses/>
|
../LICENSE.md or <http://www.gnu.org/licenses/>
|
||||||
|
|
||||||
@version 9.0.0
|
@version 9.0.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Config_init() {
|
Config_init() {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
bug.n -- tiling window management
|
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,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
@license GNU General Public License version 3
|
@license GNU General Public License version 3
|
||||||
../LICENSE.md or <http://www.gnu.org/licenses/>
|
../LICENSE.md or <http://www.gnu.org/licenses/>
|
||||||
|
|
||||||
@version 9.0.0
|
@version 9.0.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Debug_initLog(filename, level = 0, truncateFile = True)
|
Debug_initLog(filename, level = 0, truncateFile = True)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
bug.n -- tiling window management
|
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,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
@ -10,11 +10,11 @@
|
||||||
@license GNU General Public License version 3
|
@license GNU General Public License version 3
|
||||||
../LICENSE.md or <http://www.gnu.org/licenses/>
|
../LICENSE.md or <http://www.gnu.org/licenses/>
|
||||||
|
|
||||||
@version 9.0.0
|
@version 9.0.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
NAME := "bug.n"
|
NAME := "bug.n"
|
||||||
VERSION := "9.0.0"
|
VERSION := "9.0.1"
|
||||||
|
|
||||||
;; Script settings
|
;; Script settings
|
||||||
OnExit, Main_cleanup
|
OnExit, Main_cleanup
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
bug.n -- tiling window management
|
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,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
@license GNU General Public License version 3
|
@license GNU General Public License version 3
|
||||||
../LICENSE.md or <http://www.gnu.org/licenses/>
|
../LICENSE.md or <http://www.gnu.org/licenses/>
|
||||||
|
|
||||||
@version 9.0.0
|
@version 9.0.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Manager_init()
|
Manager_init()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
bug.n -- tiling window management
|
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,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
@license GNU General Public License version 3
|
@license GNU General Public License version 3
|
||||||
../LICENSE.md or <http://www.gnu.org/licenses/>
|
../LICENSE.md or <http://www.gnu.org/licenses/>
|
||||||
|
|
||||||
@version 9.0.0
|
@version 9.0.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Monitor_init(m, doRestore) {
|
Monitor_init(m, doRestore) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
bug.n -- tiling window management
|
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,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
@license GNU General Public License version 3
|
@license GNU General Public License version 3
|
||||||
../LICENSE.md or <http://www.gnu.org/licenses/>
|
../LICENSE.md or <http://www.gnu.org/licenses/>
|
||||||
|
|
||||||
@version 9.0.0
|
@version 9.0.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ResourceMonitor_init() {
|
ResourceMonitor_init() {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
bug.n -- tiling window management
|
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,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
@license GNU General Public License version 3
|
@license GNU General Public License version 3
|
||||||
../LICENSE.md or <http://www.gnu.org/licenses/>
|
../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) {
|
Tiler_addSubArea(m, v, i, areaX, areaY, areaW, areaH) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
bug.n -- tiling window management
|
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,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
@license GNU General Public License version 3
|
@license GNU General Public License version 3
|
||||||
../LICENSE.md or <http://www.gnu.org/licenses/>
|
../LICENSE.md or <http://www.gnu.org/licenses/>
|
||||||
|
|
||||||
@version 9.0.0
|
@version 9.0.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
View_init(m, v)
|
View_init(m, v)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/*
|
/*
|
||||||
bug.n -- tiling window management
|
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,
|
This program is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
@license GNU General Public License version 3
|
@license GNU General Public License version 3
|
||||||
../LICENSE.md or <http://www.gnu.org/licenses/>
|
../LICENSE.md or <http://www.gnu.org/licenses/>
|
||||||
|
|
||||||
@version 9.0.0
|
@version 9.0.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
Window_activate(wndId) {
|
Window_activate(wndId) {
|
||||||
|
|
Loading…
Reference in a new issue