Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/App.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Copyright (c) 2010-2019 Joshua Fuhs, joten

@license GNU General Public License version 3
@version 9.1.0
@version 9.2.0

App.ahk -- shared scaffolding for bug.n entry points (Main.ahk and
Bench_main.ahk). Holds the filesystem helpers and the standard init
Expand Down
2 changes: 1 addition & 1 deletion src/Bar.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@license GNU General Public License version 3
../LICENSE.md or <http://www.gnu.org/licenses/>

@version 9.1.0
@version 9.2.0
*/

Bar_init(m) {
Expand Down
4 changes: 2 additions & 2 deletions src/Bench_main.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Copyright (c) 2010-2019 Joshua Fuhs, joten

@license GNU General Public License version 3
@version 9.1.0
@version 9.2.0

Bench_main.ahk -- separate compilation entry point for performance
benchmarking. Builds to bugn-bench.exe so it can coexist with the
Expand All @@ -19,7 +19,7 @@
*/

NAME := "bug.n-bench"
VERSION := "9.1.0"
VERSION := "9.2.0"

;; Script settings -- mirror Main.ahk except for #SingleInstance, where
;; the bench gets its own (different exe) and is not affected by the
Expand Down
2 changes: 1 addition & 1 deletion src/Config.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@license GNU General Public License version 3
../LICENSE.md or <http://www.gnu.org/licenses/>

@version 9.1.0
@version 9.2.0
*/

Config_init() {
Expand Down
2 changes: 1 addition & 1 deletion src/Debug.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@license GNU General Public License version 3
../LICENSE.md or <http://www.gnu.org/licenses/>

@version 9.1.0
@version 9.2.0
*/

Debug_initLog(filename, level = 0, truncateFile = True)
Expand Down
4 changes: 2 additions & 2 deletions src/Main.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
@license GNU General Public License version 3
../LICENSE.md or <http://www.gnu.org/licenses/>

@version 9.1.0
@version 9.2.0
*/

NAME := "bug.n"
VERSION := "9.1.0"
VERSION := "9.2.0"

;; Script settings
OnExit, Main_cleanup
Expand Down
2 changes: 1 addition & 1 deletion src/Main_evalCommand.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Copyright (c) 2010-2019 Joshua Fuhs, joten

@license GNU General Public License version 3
@version 9.1.0
@version 9.2.0

Main_evalCommand.ahk -- dispatcher for Config-defined hotkey commands
and Bar click handlers. Lives in its own file so Bench_main.ahk can
Expand Down
2 changes: 1 addition & 1 deletion src/Manager.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@license GNU General Public License version 3
../LICENSE.md or <http://www.gnu.org/licenses/>

@version 9.1.0
@version 9.2.0
*/

Manager_init()
Expand Down
2 changes: 1 addition & 1 deletion src/Monitor.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@license GNU General Public License version 3
../LICENSE.md or <http://www.gnu.org/licenses/>

@version 9.1.0
@version 9.2.0
*/

Monitor_init(m, doRestore) {
Expand Down
2 changes: 1 addition & 1 deletion src/ResourceMonitor.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@license GNU General Public License version 3
../LICENSE.md or <http://www.gnu.org/licenses/>

@version 9.1.0
@version 9.2.0
*/

ResourceMonitor_init() {
Expand Down
2 changes: 1 addition & 1 deletion src/Tiler.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@license GNU General Public License version 3
../LICENSE.md or <http://www.gnu.org/licenses/>

@version 9.1.0
@version 9.2.0
*/

Tiler_addSubArea(m, v, i, areaX, areaY, areaW, areaH) {
Expand Down
2 changes: 1 addition & 1 deletion src/View.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@license GNU General Public License version 3
../LICENSE.md or <http://www.gnu.org/licenses/>

@version 9.1.0
@version 9.2.0
*/

View_init(m, v)
Expand Down
2 changes: 1 addition & 1 deletion src/Window.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@license GNU General Public License version 3
../LICENSE.md or <http://www.gnu.org/licenses/>

@version 9.1.0
@version 9.2.0
*/

;; Returns the currently-active OS window's ID. Thin wrapper around
Expand Down
Loading