2014-03-08 22:32:32 +00:00
|
|
|
## Changes
|
|
|
|
|
|
|
|
##### Legend
|
2014-03-09 11:31:42 +00:00
|
|
|
|
2014-03-08 22:32:32 +00:00
|
|
|
* `-` deleted
|
|
|
|
* `~` changed
|
|
|
|
* `+` added
|
|
|
|
|
2015-01-25 13:04:17 +00:00
|
|
|
### 9.0.0
|
|
|
|
|
2015-01-30 19:13:10 +00:00
|
|
|
1. `~` Renamed the function `Manager_toggleDecor` to `Window_toggleDecor`.
|
|
|
|
2. `~` Renamed the function `View_toggleFloating` to `View_toggleFloatingWindow`.
|
2015-01-28 17:11:47 +00:00
|
|
|
3. `~` Migrated the following functions to `View_setLayoutProperty`: `View_setGapWidth`, `View_setMFactor`, `View_setMX`,
|
2015-01-30 19:13:10 +00:00
|
|
|
`View_setMY` and `View_rotateLayoutAxis`.
|
2015-01-28 19:12:57 +00:00
|
|
|
4. `~` Revised the following functions to allow setting absolute and relative values: `Debug_setLogLevel`,
|
2015-01-28 19:49:03 +00:00
|
|
|
`Manager_activateMonitor`, `Manager_setViewMonitor`, `Manager_setWindowMonitor`, `Monitor_activateView`, `Monitor_setWindowTag`,
|
2015-01-30 19:13:10 +00:00
|
|
|
`View_setGapWidth`, `View_setLayout`, `View_setMFactor`, `View_shuffleWindow`.
|
2018-01-14 21:53:01 +00:00
|
|
|
5. `~` Revised the interface, i.e. the parameters, of the following functions for setting absolute and relative values -- but did
|
2015-01-30 19:13:10 +00:00
|
|
|
not implement the functionality: `Monitor_toggleWindowTag`, `View_activateWindow`.
|
|
|
|
6. `~` Revised the bar color scheme.
|
2015-02-01 19:02:08 +00:00
|
|
|
7. `~` Revised the rule layout. The third parameter is not compared to the window style anymore, but is a function name, which is
|
|
|
|
called with the window ID as a paramater, when applying the rule.
|
2015-02-01 20:13:48 +00:00
|
|
|
8. `~` Revised the default rule set.
|
2015-02-08 16:40:19 +00:00
|
|
|
9. `+` Added the possibility for sending commands to bug.n from another AutoHotkey script.
|
2015-03-07 17:57:07 +00:00
|
|
|
10. `~` Removed the function `Main_reload` and reassigned the hotkey.
|
2015-03-07 21:49:17 +00:00
|
|
|
11. `+` Added the possibility to minimize windows, making them floating and thereby excluded from tiling.
|
2015-11-25 19:57:46 +00:00
|
|
|
12. `+` Added configuration variables for customizing the date and time format shown in the status bar.
|
2015-12-23 18:09:52 +00:00
|
|
|
13. `+` Added a function to override the rules applied from `Config.ini` for the active window.
|
2016-04-09 14:47:20 +00:00
|
|
|
14. `+` Added a configuration variable for customizing the behaviour on display change messages.
|
2015-01-28 17:11:47 +00:00
|
|
|
|
2015-03-08 21:15:25 +00:00
|
|
|
| # | `-` or `~` Configuration Variables or <br/> `-` Hotkey Functions | `+` Configuration Variables or <br/> `+` Hotkey Functions |
|
2015-11-25 19:57:46 +00:00
|
|
|
| ---:| ---------------------------------------------------------------- | --------------------------------------------------------- |
|
2015-03-08 21:15:25 +00:00
|
|
|
| 1. | `#+d::Manager_toggleDecor()` | `#+d::Window_toggleDecor()` |
|
|
|
|
| 2. | `#+f::View_toggleFloating()` | `#+f::View_toggleFloatingWindow()` |
|
|
|
|
| 3. | `#Left::View_setMFactor(-0.05)` | `#Left::View_setLayoutProperty("MFactor", 0, -0.05)` |
|
|
|
|
| | `#Right::View_setMFactor(+0.05)` | `#Right::View_setLayoutProperty("MFactor", 0, +0.05)` |
|
|
|
|
| | `#^t::View_rotateLayoutAxis(1, +1)` | `#^t::View_setLayoutProperty("Axis", 0, +1, 1)` |
|
|
|
|
| | `#^Enter::View_rotateLayoutAxis(1, +2)` | `#^Enter::View_setLayoutProperty("Axis", 0, +2, 1)` |
|
|
|
|
| | `#^Tab::View_rotateLayoutAxis(2, +1)` | `#^Tab::View_setLayoutProperty("Axis", 0, +1, 2)` |
|
|
|
|
| | `#^+Tab::View_rotateLayoutAxis(3, +1)` | `#^+Tab::View_setLayoutProperty("Axis", 0, +1, 3)` |
|
|
|
|
| | `#^Up::View_setMY(+1)` | `#^Up::View_setLayoutProperty("MY", 0, +1)` |
|
|
|
|
| | `#^Down::View_setMY(-1)` | `#^Down::View_setLayoutProperty("MY", 0, -1)` |
|
|
|
|
| | `#^Right::View_setMX(+1)` | `#^Right::View_setLayoutProperty("MX", 0, +1)` |
|
|
|
|
| | `#^Left::View_setMX(-1)` | `#^Left::View_setLayoutProperty("MX", 0, -1)` |
|
|
|
|
| | `#+Left::View_setGapWidth(-2)` | `#+Left::View_setLayoutProperty("GapWidth", 0, -2)` |
|
|
|
|
| | `#+Right::View_setGapWidth(+2)` | `#+Right::View_setLayoutProperty("GapWidth", 0, +2)` |
|
|
|
|
| 4. | `#^d::Debug_setLogLevel(-1)` | `#^d::Debug_setLogLevel(0, -1)` |
|
|
|
|
| | `#^+d::Debug_setLogLevel(+1)` | `#^+d::Debug_setLogLevel(0, +1)` |
|
|
|
|
| | `#+Down::View_shuffleWindow(+1)` | `#+Down::View_shuffleWindow(0, +1)` |
|
|
|
|
| | `#+Up::View_shuffleWindow(-1)` | `#+Up::View_shuffleWindow(0, -1)` |
|
|
|
|
| | `#+Enter::View_shuffleWindow(0)` | `#+Enter::View_shuffleWindow(1)` |
|
|
|
|
| | `#+0::Monitor_setWindowTag(0)` | `#+0::Monitor_setWindowTag(10)` |
|
|
|
|
| | `#.::Manager_activateMonitor(+1)` | `#.::Manager_activateMonitor(0, +1)` |
|
|
|
|
| | `#,::Manager_activateMonitor(-1)` | `#,::Manager_activateMonitor(0, -1)` |
|
|
|
|
| | `#+.::Manager_setWindowMonitor(+1)` | `#+.::Manager_setWindowMonitor(0, +1)` |
|
|
|
|
| | `#+,::Manager_setWindowMonitor(-1)` | `#+,::Manager_setWindowMonitor(0, -1)` |
|
|
|
|
| | `#^+.::Manager_setViewMonitor(+1)` | `#^+.::Manager_setViewMonitor(0, +1)` |
|
|
|
|
| | `#^+,::Manager_setViewMonitor(-1)` | `#^+,::Manager_setViewMonitor(0, -1)` |
|
|
|
|
| 5. | `#Down::View_activateWindow(+1)` | `#Down::View_activateWindow(0, +1)` |
|
|
|
|
| | `#Up::View_activateWindow(-1)` | `#Up::View_activateWindow(0, -1)` |
|
|
|
|
| 6. | `Config_normBgColor` | |
|
|
|
|
| | `Config_normFgColor` | |
|
|
|
|
| | `Config_selBgColor` | |
|
|
|
|
| | `Config_selFgColor` | |
|
|
|
|
| | | `Config_backColor_#1` |
|
|
|
|
| | | `Config_backColor_#2` |
|
|
|
|
| | | `Config_backColor_#3` |
|
|
|
|
| | | `Config_foreColor_#1` |
|
|
|
|
| | | `Config_foreColor_#2` |
|
|
|
|
| | | `Config_foreColor_#3` |
|
|
|
|
| | | `Config_fontColor_#1` |
|
|
|
|
| | | `Config_fontColor_#2` |
|
|
|
|
| | | `Config_fontColor_#3` |
|
|
|
|
| 7. | `Config_rule_#2` | |
|
|
|
|
| 8. | `Config_rule_#3` | |
|
|
|
|
| | `Config_rule_#4` | |
|
|
|
|
| | `Config_rule_#7` | |
|
|
|
|
| | `Config_rule_#9` | |
|
|
|
|
| | `Config_rule_#10` | |
|
|
|
|
| | `Config_rule_#11` | |
|
|
|
|
| | `Config_rule_#12` | |
|
|
|
|
| | | `Config_rule_#13` |
|
|
|
|
| | | `Config_rule_#14` |
|
|
|
|
| | | `Config_rule_#15` |
|
|
|
|
| | | `Config_rule_#16` |
|
|
|
|
| | | `Config_rule_#17` |
|
|
|
|
| 10. | `#^r::Main_reload()` | |
|
|
|
|
| | `#^+r::Reload` | `#^r::Reload` |
|
|
|
|
| 11. | | `#^m::Manager_minimizeWindow()` |
|
2015-11-25 19:57:46 +00:00
|
|
|
| 12. | | `Config_readinDateFormat` |
|
|
|
|
| | | `Config_readinTimeFormat` |
|
2016-04-09 14:47:20 +00:00
|
|
|
| 14. | | `Config_monitorDisplayChangeMessages` |
|
2015-01-25 13:04:17 +00:00
|
|
|
|
2014-03-08 22:32:32 +00:00
|
|
|
### 8.4.0
|
2014-03-09 11:31:42 +00:00
|
|
|
|
|
|
|
1. `+` Session auto-save and restore. Layout and Window information is stored
|
2014-03-08 22:32:32 +00:00
|
|
|
periodically so that it may be recovered after a restart.
|
2014-03-09 11:31:42 +00:00
|
|
|
2. `+` Toggling the overflow window of the 'notify icons' by hotkey.
|
|
|
|
3. `+` Manual tiling.
|
2014-04-29 14:13:51 +00:00
|
|
|
4. `+` Increasing MFactor Resizing Over Time
|
2014-09-30 11:08:48 +00:00
|
|
|
5. `+` Bar transparency
|
2014-10-01 21:20:32 +00:00
|
|
|
6. `+` Reading in the sound volume and mute status and displaying it in the status bar.
|
2014-03-09 11:31:42 +00:00
|
|
|
|
|
|
|
| # | Configuration variables | Hotkeys |
|
|
|
|
| ---:| --------------------------------- | ----------------------------------------------- |
|
|
|
|
| 2. | | `#+y::Monitor_toggleNotifyIconOverflowWindow()` |
|
|
|
|
| 3. | `Config_largeFontSize=24` | `!Down::View_moveWindow(0, +1)` |
|
|
|
|
| | `Config_areaTraceTimeout=1000` | `!Up::View_moveWindow(0, -1)` |
|
|
|
|
| | `Config_continuouslyTraceAreas=0` | `!+Enter::Manager_maximizeWindow()` |
|
|
|
|
| | `Config_dynamicTiling=1` | `!<n>::View_moveWindow(<n>)` |
|
|
|
|
| | | `!0::View_moveWindow(10)` |
|
|
|
|
| | | `!BackSpace::View_toggleStackArea()` |
|
|
|
|
| | | `!+y::View_traceAreas()` |
|
2014-04-29 14:13:51 +00:00
|
|
|
| 4. | `Config_mFactCallInterval=700` | `View_setMFactor(d, dFact=1)` |
|
2014-09-30 11:08:48 +00:00
|
|
|
| 5. | `Config_barTransparency=off` | |
|
2014-10-01 21:20:32 +00:00
|
|
|
| 6. | `Config_readinVolume` | |
|
2014-03-08 22:32:32 +00:00
|
|
|
|
|
|
|
### 8.3.0
|
2014-03-09 11:31:42 +00:00
|
|
|
|
2014-03-08 22:32:32 +00:00
|
|
|
* `~` Changed the command line argument from specifying 'the path to the
|
|
|
|
Config.ini' to 'the path to the general data directory containing the
|
|
|
|
Config.ini and log.txt'.
|
|
|
|
* `+` Multi-dimensional tiling of the master area. The user may now specify X
|
|
|
|
and Y dimensions independently up to 9 x 9.
|
|
|
|
* `+` Created bug.n log to record major and debugging events and window
|
|
|
|
information.
|
|
|
|
* `+` 'View margins' allowing a layout to occupy a limited space of the
|
|
|
|
monitor.
|
|
|
|
* `+` 'Single window action', which allows to close or maximize windows based
|
|
|
|
on rules.
|
|
|
|
* `+` 'Reload' hotkey, which reloads the whole script.
|
|
|
|
* `+` Re-Setting the 'Reload' and 'ExitApp' hotkey in 'Config.ini'-
|
|
|
|
* `+` Added the configuration variable `Config_viewNames`, with which views can
|
|
|
|
be named and the number of views can be set. The configuration variable
|
|
|
|
`Config_viewCount` therewith becomes obsolete.
|
|
|
|
* `-` Removed the configuration variable `Config_viewCount`.
|
|
|
|
* `-` Removed the explicit listing of commands in the `Bar_cmdGui`.
|
|
|
|
* `-` Removed the default rules for Gimp, since from version 2.8 onwards Gimp
|
|
|
|
can use a single application window instead of three and more.
|
|
|
|
|
|
|
|
### 8.2.1
|
2014-03-09 11:31:42 +00:00
|
|
|
|
2014-03-08 22:32:32 +00:00
|
|
|
* `+` feature #005446: Reload function (reloading bug.n without changing the
|
|
|
|
current association of windows to views/tags)
|
|
|
|
* `+` workaround bug #018364: (Evernote: new note) Introducing the
|
|
|
|
configuration variable `Config_onActiveHiddenWnds` to set the behaviour of
|
|
|
|
bug.n for already existing but hidden windows on redraw
|
|
|
|
|
|
|
|
### 8.2.0
|
2014-03-09 11:31:42 +00:00
|
|
|
|
2014-03-08 22:32:32 +00:00
|
|
|
* `-` `Config_addRunCommands` (the 'Run' item in 'command GUI').
|
|
|
|
* `-` `Config_sessionFilePath`
|
|
|
|
* `-` `Config_topBar` (replaced by `Config_verticalBarPos`.
|
|
|
|
* `~` The default values for the color (`Config_normBgColor`,
|
|
|
|
`Config_normFgColor`, `Config_selBgColor` and `Config_selFgColor`) and font
|
|
|
|
size (`Config_fontSize`) of the status bar are now retrieved from the system
|
|
|
|
settings.
|
|
|
|
* `+` Default rules
|
|
|
|
* `+` `Config_hotkey` (setting hotkeys in 'Config.ini').
|
|
|
|
* `+` `Config_horizontalBarPos` (The horizontal position of the bar: `center`,
|
|
|
|
`left` or `right` side of the monitor or an offset in pixel (px) from the left
|
|
|
|
(>= 0) or right (< 0).
|
|
|
|
* `+` `Config_verticalBarPos` (The vertical position of the bar: `top` or
|
|
|
|
`bottom` of the monitor, `tray` = sub-window of the task bar.
|
|
|
|
* `+` `Config_barWidth` (The width of the bar in pixel (px) or with a per cent
|
|
|
|
sign (%) as a percentage.
|
|
|
|
* `+` `Config_singleRowBar` (If false, the bar will have to rows, one for the
|
|
|
|
window title and one for all other GUI controls.
|
|
|
|
* `+` `Config_spaciousBar` (If true, the height of the bar will be set to a
|
|
|
|
value equal to the height of an edit control, else it will be set to the text
|
|
|
|
height.
|
|
|
|
* `+` `Config_syncMonitorViews` (The number of monitors (2 or more), for which
|
|
|
|
views should be activated, when using the accordant hotkey. If set to 1, the
|
|
|
|
views are actiated for all monitors. If set to 0, views are activated
|
|
|
|
independently (only on the active monitor).
|
|
|
|
* `~` Changed hotkeys
|
|
|
|
+ `#s` => `#^s::Config_saveSession()`
|
|
|
|
+ `#+r` => `#^r::Reload`
|
|
|
|
+ `#+q` => `#^q::ExitApp`
|
|
|
|
* `+` `#y::Bar_toggleCommandGui()` (Open the command GUI for executing
|
|
|
|
programmes or bug.n functions.)
|
|
|
|
* `+` `#^e::Run, edit, %Config_sessionFilePath%` (Open the session file in the
|
|
|
|
standard text editor.
|
|
|
|
* `+` "<" and ">" as an argument for `Monitor_activateView`.
|
|
|
|
* `+` "<" and ">" as an argument for `Monitor_setWindowTag`.
|
|
|
|
* `+` `Manager_maximizeWindow()` to 'command GUI'
|
|
|
|
* `~` The number of windows on a view is not indicated by different background
|
|
|
|
colors anymore, but by a progress bar.
|
|
|
|
* `~` The battery status is also indicated with a progress bar.
|
|
|
|
* `+` A monitor with no windows on it can now be activated by cklicking on the
|
|
|
|
desktop and therewith changing the active window.
|
|
|
|
|
|
|
|
### 8.1.0
|
2014-03-09 11:31:42 +00:00
|
|
|
|
2014-03-08 22:32:32 +00:00
|
|
|
* `-` `Config_showTitleBars`
|
|
|
|
* `~` `Config_rules` have two more parameters (window style and if the window
|
|
|
|
is decorated; this replaces `Config_showTitleBars`).
|
2015-03-15 16:56:14 +00:00
|
|
|
* `+` <kbd>Win</kbd><kbd>Shift</kbd><kbd>X</kbd> maximizes a window to the
|
2015-03-15 15:32:09 +00:00
|
|
|
bug.n workspace.
|
2014-03-08 22:32:32 +00:00
|
|
|
* `+` You may now use `Monitor_activateView(">")` for cycling through the views
|
|
|
|
and `View_setLayout(">")` for cycling through the layouts.
|