diff -pruN 1.1-1/CHANGELOG 1.2-1/CHANGELOG
--- 1.1-1/CHANGELOG	2022-04-05 06:04:55.000000000 +0000
+++ 1.2-1/CHANGELOG	2022-08-01 15:58:20.000000000 +0000
@@ -1,3 +1,6 @@
+1.2
+* Port to Qt6
+
 1.1
 * Better SVG icon
 * Better in-game "graphics"
diff -pruN 1.1-1/debian/changelog 1.2-1/debian/changelog
--- 1.1-1/debian/changelog	2022-04-04 21:45:56.000000000 +0000
+++ 1.2-1/debian/changelog	2022-07-31 14:27:59.000000000 +0000
@@ -1,3 +1,11 @@
+explosive-c4 (1.2-1) unstable; urgency=low
+
+  * New upstream release
+  * Migrated to Qt6
+  * Bump Standards-Version to 4.6.1.0
+
+ -- Salvo 'LtWorf' Tomaselli <tiposchi@tiscali.it>  Sun, 31 Jul 2022 16:27:59 +0200
+
 explosive-c4 (1.1-1) unstable; urgency=low
 
   * New upstream release
diff -pruN 1.1-1/debian/control 1.2-1/debian/control
--- 1.1-1/debian/control	2022-04-04 21:45:56.000000000 +0000
+++ 1.2-1/debian/control	2022-07-31 14:27:59.000000000 +0000
@@ -4,10 +4,10 @@ Priority: optional
 Maintainer: Salvo 'LtWorf' Tomaselli <tiposchi@tiscali.it>
 Build-Depends:
  debhelper-compat (= 13),
- qt5-qmake,
- qtbase5-dev,
- qttools5-dev-tools
-Standards-Version: 4.6.0
+ qmake6,
+ qt6-base-dev,
+ qt6-l10n-tools
+Standards-Version: 4.6.1.0
 Homepage: https://github.com/ltworf/explosive-c4
 Vcs-Browser: https://github.com/ltworf/explosive-c4
 Rules-Requires-Root: no
@@ -15,7 +15,7 @@ Rules-Requires-Root: no
 Package: explosive-c4
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Recommends: qtwayland5
+Recommends: qt6-wayland
 Description: Four in a row game
  The classic four in a row game.
  Two players can play on the same device, or it can be played
diff -pruN 1.1-1/debian/rules 1.2-1/debian/rules
--- 1.1-1/debian/rules	2022-04-04 21:45:56.000000000 +0000
+++ 1.2-1/debian/rules	2022-07-31 14:27:59.000000000 +0000
@@ -4,3 +4,7 @@ export DEB_BUILD_MAINT_OPTIONS = hardeni
 
 %:
 	dh $@ --sourcedirectory=src
+
+override_dh_auto_configure:
+	ln -s /usr/bin/qmake6 ./qmake
+	PATH=`pwd`:$(PATH) dh_auto_configure
diff -pruN 1.1-1/debian/upstream/metadata 1.2-1/debian/upstream/metadata
--- 1.1-1/debian/upstream/metadata	1970-01-01 00:00:00.000000000 +0000
+++ 1.2-1/debian/upstream/metadata	2022-07-31 14:27:59.000000000 +0000
@@ -0,0 +1,6 @@
+Donation: https://liberapay.com/ltworf
+Repository-Browse: https://github.com/ltworf/explosive-c4
+Repository: https://github.com/ltworf/explosive-c4.git
+Changelog: https://raw.githubusercontent.com/ltworf/explosive-c4/master/CHANGELOG
+Bug-Database: https://github.com/ltworf/explosive-c4/issues
+Bug-Submit: https://github.com/ltworf/explosive-c4/issues/new
diff -pruN 1.1-1/README.md 1.2-1/README.md
--- 1.1-1/README.md	2022-04-05 06:04:55.000000000 +0000
+++ 1.2-1/README.md	2022-08-01 15:58:20.000000000 +0000
@@ -20,8 +20,6 @@ Build
 Install the build requirements listed in `debian/control`.
 Adapt the package names to whatever they might be on your distribution.
 
-
-
 ```bash
 mkdir build; cd build; qmake ../src; make -j
 
diff -pruN 1.1-1/src/boardwidget.cpp 1.2-1/src/boardwidget.cpp
--- 1.1-1/src/boardwidget.cpp	2022-04-05 06:04:55.000000000 +0000
+++ 1.2-1/src/boardwidget.cpp	2022-08-01 15:58:20.000000000 +0000
@@ -192,7 +192,7 @@ void BoardWidget::changed(int row, int c
 
 void BoardWidget::mousePressEvent(QMouseEvent *ev) {
     QWidget::mousePressEvent(ev);
-    int column = (ev->x() - margin_x) / diameter;
+    int column = (ev->position().x() - margin_x) / diameter;
 
     int rows;
     int cols;
diff -pruN 1.1-1/src/explosive-c4.pro 1.2-1/src/explosive-c4.pro
--- 1.1-1/src/explosive-c4.pro	2022-04-05 06:04:55.000000000 +0000
+++ 1.2-1/src/explosive-c4.pro	2022-08-01 15:58:20.000000000 +0000
@@ -23,9 +23,7 @@
 #
 #-------------------------------------------------
 
-QT       += core gui
-
-greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
+QT       += core widgets
 
 TARGET = explosive-c4
 TEMPLATE = app
