diff --git a/.hgignore b/.hgignore
index 971ed75..5bcf0c4 100644
--- a/.hgignore
+++ b/.hgignore
@@ -1,2 +1,3 @@
syntax: glob
src/Config.ini
+src/Config_test.ini
diff --git a/src/Bar.ahk b/src/Bar.ahk
index 9c51fb5..269bbfa 100644
--- a/src/Bar.ahk
+++ b/src/Bar.ahk
@@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
- * @version 8.2.2.01 (05.12.2011)
+ * @version 8.3.0
*/
Bar_init(m) {
diff --git a/src/Config.ahk b/src/Config.ahk
index 39a22ac..5943915 100644
--- a/src/Config.ahk
+++ b/src/Config.ahk
@@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
- * @version 8.2.2.01 (24.09.2011)
+ * @version 8.3.0
*/
Config_init() {
@@ -306,7 +306,7 @@ Config_restore(section, m = 0) {
Config_saveSession() {
Local m, text
- text := "; bug.n - tiling window management`n; @version " VERSION " (" A_DD "." A_MM "." A_YYYY ")`n`n"
+ text := "; bug.n - tiling window management`n; @version " VERSION "`n`n"
If FileExist(Config_filePath) {
Loop, READ, %Config_filePath%
If (SubStr(A_LoopReadLine, 1, 7) = "Config_")
diff --git a/src/Main.ahk b/src/Main.ahk
index 59606d6..6ddb9e0 100644
--- a/src/Main.ahk
+++ b/src/Main.ahk
@@ -15,11 +15,11 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
- * @version 8.2.2.01 (12.01.2012)
+ * @version 8.3.0
*/
NAME := "bug.n"
-VERSION := "8.2.2"
+VERSION := "8.3.0"
; script settings
OnExit, Main_cleanup
diff --git a/src/Manager.ahk b/src/Manager.ahk
index 42b1126..b8f08d2 100644
--- a/src/Manager.ahk
+++ b/src/Manager.ahk
@@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
- * @version 8.2.2.01 (24.09.2011)
+ * @version 8.3.0
*/
Manager_init() {
diff --git a/src/Monitor.ahk b/src/Monitor.ahk
index addfc84..c98187d 100644
--- a/src/Monitor.ahk
+++ b/src/Monitor.ahk
@@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
- * @version 8.2.2.01 (12.01.2012)
+ * @version 8.3.0
*/
Monitor_init(m) {
diff --git a/src/View.ahk b/src/View.ahk
index eb8810b..0504b05 100644
--- a/src/View.ahk
+++ b/src/View.ahk
@@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*
- * @version 8.2.2.01 (11.08.2011)
+ * @version 8.3.0
*/
View_init(m, v) {