diff --git a/CHANGELOG b/CHANGELOG
index b55f7c0..ee02e0b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -4,9 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
-## [Unreleased]
+## [1.1]
### Added
-- added profiles dialog
+- connecting to and controlling a ScStw Basestation is now possible
+- creating profiles and saving times is now possible (only when connected to a ScStw Basestation)
+- dark mode
+### Changed
+- new, more modern style
+- new start tone which is compliant with the IFSC norm
+- new and improved codebase
+
## [0.04] - 2018-08-11
### Added
diff --git a/android-sources/AndroidManifest.xml b/android-sources/AndroidManifest.xml
index 3c9ea48..db20d7f 100644
--- a/android-sources/AndroidManifest.xml
+++ b/android-sources/AndroidManifest.xml
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
-->
-
+
diff --git a/resources/qml/main.qml b/resources/qml/main.qml
index 17c434b..687abc8 100644
--- a/resources/qml/main.qml
+++ b/resources/qml/main.qml
@@ -141,7 +141,7 @@ Window {
width: parent.width * 0.7
height: parent.height * 0.7
- text: implicitText === "NEXT_START_ACTION" ? ["at your \nmarks", "ready", "starting..."][speedBackend.nextStartAction]:implicitText
+ text: implicitText === "NEXT_START_ACTION" ? ["at your \nmarks", "ready", "starting...", ""][speedBackend.nextStartAction]:implicitText
color: appTheme.style.textColor
@@ -476,7 +476,7 @@ Window {
ProgressCircle {
id: prog
anchors.fill: startButt
- opacity: app.state === "STARTING" || app.state === "IDLE" ? 1:0
+ opacity: app.state === "STARTING" ? 1:0
scale: startButt.scale
diff --git a/resources/shared/graphics/speedclimbing_stopwatch_ios.png b/resources/shared/graphics/speedclimbing_stopwatch_ios.png
index d429782..1c0beeb 100644
Binary files a/resources/shared/graphics/speedclimbing_stopwatch_ios.png and b/resources/shared/graphics/speedclimbing_stopwatch_ios.png differ