Skip to content
This repository has been archived by the owner on Apr 27, 2020. It is now read-only.

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronhktan committed Jan 25, 2018
1 parent 8086f6a commit df41deb
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,5 @@
"watchface": false
}
},
"version": "2.52.0"
"version": "2.53.0"
}
4 changes: 2 additions & 2 deletions src/c/localize.c
Original file line number Diff line number Diff line change
Expand Up @@ -1239,9 +1239,9 @@ char* localize_get_credits_row_title() {

char* localize_get_new_version_title() {
if (strncmp(localize_get_locale(), "es", 2) == 0) {
return "¡Versión 2.52!";
return "¡Versión 2.53!";
} else {
return "Version 2.52!";
return "Version 2.53!";
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/c/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static void inbox_received_handler(DictionaryIterator *iter, void *context) {
}

static void init() {
APP_LOG(APP_LOG_LEVEL_INFO, "You are running version 2.52 of the Breathe app.");
APP_LOG(APP_LOG_LEVEL_INFO, "You are running version 2.53 of the Breathe app.");
// Open AppMessage connection
app_message_register_inbox_received(inbox_received_handler);
app_message_open(256, 256);
Expand Down
2 changes: 1 addition & 1 deletion src/c/settings_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ static void menu_draw_row_callback(GContext* ctx, const Layer *cell_layer, MenuI
case 5: // This is the about section
switch (cell_index->row) {
case 0: // This is the version number
menu_cell_basic_draw(ctx, cell_layer, localize_get_version_row_title(), "v2.52, 2017-12-16", NULL);
menu_cell_basic_draw(ctx, cell_layer, localize_get_version_row_title(), "v2.53, 2018-01-24", NULL);
break;
case 1: // This is the credits
menu_cell_basic_draw(ctx, cell_layer, localize_get_credits_row_title(), "cheeseisdisgusting", NULL);
Expand Down
2 changes: 1 addition & 1 deletion src/pkjs/config-de.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = [
},
{
"type": "text",
"defaultValue": "Dies sind die Einstellungen für die Breathe-App. Sie benutzen Version 2.52 von Breathe.",
"defaultValue": "Dies sind die Einstellungen für die Breathe-App. Sie benutzen Version 2.53 von Breathe.",
},
{
"type": "section",
Expand Down
2 changes: 1 addition & 1 deletion src/pkjs/config-es.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = [
},
{
"type": "text",
"defaultValue": "Esta es la página de ajustes para la app Breathe. Estás usando la versión 2.52 de la app.",
"defaultValue": "Esta es la página de ajustes para la app Breathe. Estás usando la versión 2.53 de la app.",
},
{
"type": "section",
Expand Down
2 changes: 1 addition & 1 deletion src/pkjs/config-fr.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = [
},
{
"type": "text",
"defaultValue": "Ceci est la page de configuration pour l'app Breathe. Vous utilisez version 2.52 de l'app.",
"defaultValue": "Ceci est la page de configuration pour l'app Breathe. Vous utilisez version 2.53 de l'app.",
},
{
"type": "section",
Expand Down
2 changes: 1 addition & 1 deletion src/pkjs/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = [
},
{
"type": "text",
"defaultValue": "This is the settings page for the Breathe app. You are running version 2.52 of Breathe.",
"defaultValue": "This is the settings page for the Breathe app. You are running version 2.53 of Breathe.",
},
{
"type": "section",
Expand Down

0 comments on commit df41deb

Please sign in to comment.