diff --git a/android/gradle.properties b/android/gradle.properties
index 3487476dc637023e34426ce50caf3343f91e3038..c2a871af8ab063d06f9d9304e63850ba93031951 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -1,5 +1,5 @@
 org.gradle.jvmargs=-Xmx1536M
 android.useAndroidX=true
 android.enableJetifier=true
-app.versionName=0.0.23
-app.versionCode=23
+app.versionName=0.0.24
+app.versionCode=24
diff --git a/fastlane/metadata/android/en-US/changelogs/24.txt b/fastlane/metadata/android/en-US/changelogs/24.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f06267989b210ed58507acf521d37f8582a726bc
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/24.txt
@@ -0,0 +1 @@
+Move global parameters in bottom of settings page.
diff --git a/fastlane/metadata/android/fr-FR/changelogs/24.txt b/fastlane/metadata/android/fr-FR/changelogs/24.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4ffa1a9974168b7df6b71f3d5cd85476b6f285a9
--- /dev/null
+++ b/fastlane/metadata/android/fr-FR/changelogs/24.txt
@@ -0,0 +1 @@
+Déplacement des paramètres globaux en bas de page.
diff --git a/lib/ui/widgets/parameters.dart b/lib/ui/widgets/parameters.dart
index 3c79260a624a54c05f7d1697ceef0f794f9fb0c0..e334834dc678edaaa38048ea5892b90390cc5ff1 100644
--- a/lib/ui/widgets/parameters.dart
+++ b/lib/ui/widgets/parameters.dart
@@ -91,6 +91,10 @@ class Parameters extends StatelessWidget {
       lines.add(SizedBox(height: separatorHeight));
     });
 
+    lines.add(SizedBox(height: separatorHeight));
+    lines.add(buildStartNewGameButton());
+    lines.add(SizedBox(height: separatorHeight));
+
     // Global settings
     DefaultGlobalSettings.availableParameters.forEach((code) {
       lines.add(Row(
@@ -104,9 +108,6 @@ class Parameters extends StatelessWidget {
       lines.add(SizedBox(height: separatorHeight));
     });
 
-    lines.add(SizedBox(height: separatorHeight));
-    lines.add(buildStartNewGameButton());
-
     return Column(
       children: lines,
     );
diff --git a/pubspec.yaml b/pubspec.yaml
index 2f2f682b18806a5824607d9488e6982ed54b5b8e..9ab963d2a85b14c0fce29f89b600507d993c9b01 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -3,7 +3,7 @@ description: Jeweled Game
 
 publish_to: 'none'
 
-version: 0.0.23+23
+version: 0.0.24+24
 
 environment:
   sdk: '^3.0.0'