Skip to content

Commit

Permalink
Working on 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinsolla committed Apr 14, 2022
1 parent 86c4747 commit 2ad206d
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 33 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A letter game.

https://play.google.com/store/apps/details?id=com.joa.encasillado

> Current Google Play Store version: 19 (1.2.1)
> Current Google Play Store version: 12 (1.2.3)*
> Latest Beta version: 21 (1.2.2)
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ if (flutterRoot == null) {

/** AUMENTAR CON CADA UPDATE */
//def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
def flutterVersionCode = 21
def flutterVersionCode = 22
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}

/** CAMBIAR CON CADA UPDATE */
//def flutterVersionName = localProperties.getProperty('flutter.versionName')
def flutterVersionName = '1.2.2'
def flutterVersionName = '1.2.3'
if (flutterVersionName == null) {
flutterVersionName = '1.0.0'
}
Expand Down
2 changes: 1 addition & 1 deletion app_versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ LISTADO DE VERSIONES:
14 (1.1.3)
16 (1.1.5)
19 (1.2.1)
22 (1.2.3)*

--BETA-VERSIONS
1 (1.0.0)
Expand All @@ -30,4 +31,3 @@ LISTADO DE VERSIONES:
15 (1.1.4)
17 (1.2.0)
21 (1.2.2)
22 (1.2.2)**
2 changes: 1 addition & 1 deletion lib/common/miscellaneous.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** APP VERSION */
const String appVersion = "1.2.2 Beta";
const String appVersion = "1.2.3";

/** PERSISTENT DATA */
bool colorBlind = false;
Expand Down
7 changes: 7 additions & 0 deletions lib/databases.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const List <String> gameDB = ["AARON",
"AGRIO",
"AGROR",
"AGUAR",
"AGUDA",
"AGUDO",
"AGUJA",
"AHOGO",
Expand Down Expand Up @@ -77,6 +78,7 @@ const List <String> gameDB = ["AARON",
"AÑICO",
"ANIMO",
"ANTES",
"ANTIA",
"ANTRO",
"ANUAL",
"AORTA",
Expand Down Expand Up @@ -192,6 +194,7 @@ const List <String> gameDB = ["AARON",
"BEATO",
"BEBER",
"BECAR",
"BEIGE",
"BELEN",
"BELFO",
"BELGA",
Expand Down Expand Up @@ -381,6 +384,7 @@ const List <String> gameDB = ["AARON",
"CHIVA",
"CHIVO",
"CHOCA",
"CHOCO",
"CHONI",
"CHOPE",
"CHOPO",
Expand Down Expand Up @@ -779,6 +783,7 @@ const List <String> gameDB = ["AARON",
"GULAG",
"GUSTO",

"HABER",
"HABIL",
"HABLA",
"HACER",
Expand Down Expand Up @@ -901,6 +906,7 @@ const List <String> gameDB = ["AARON",
"LABIA",
"LABIO",
"LABOR",
"LACIO",
"LACON",
"LACRA",
"LADRA",
Expand Down Expand Up @@ -1555,6 +1561,7 @@ const List <String> gameDB = ["AARON",
"TANIA",
"TANTO",
"TAPAR",
"TAPEO",
"TAPIA",
"TAPIR",
"TAPON",
Expand Down
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ void main() {
selectedDatabase = databasesList[0];

/** TERMINAL DEBUGGING */
terminalPrinting = true;
terminalPrinting = false;

infinite_generate_word();
wotd_generate_word();
Expand Down
39 changes: 12 additions & 27 deletions lib/pages/release_notes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,18 @@ class _ReleaseNotesState extends State<ReleaseNotes> {
),
textAlign: TextAlign.center,
),
SizedBox(height: 10,),
Text(
"Palabras registradas: " + (selectedDatabase.length).toString(),
style: TextStyle(
fontSize: 15,
color: appBlack,
fontWeight: FontWeight.bold,
decoration: TextDecoration.none,
fontFamily: 'RaleWay',
),
textAlign: TextAlign.center,
),
SizedBox(
height: 15,
),
Expand Down Expand Up @@ -160,33 +172,6 @@ class _ReleaseNotesState extends State<ReleaseNotes> {
SizedBox(
height: 7.5,
),
Text(
"Modo 'La Palabra del Día' mejorado",
style: TextStyle(
fontSize: 16,
color: appBlack,
fontWeight: FontWeight.bold,
decoration: TextDecoration.none,
fontFamily: 'RaleWay',
),
textAlign: TextAlign.left,
),
Text(
"Ahora no podrás repetir la palabra una vez la hayas resuelto, "
"tendrás que esperar al día siguiente para poder jugar la "
"próxima, de esta forma se evitan trampas.\n",
style: TextStyle(
fontSize: 15,
color: appBlack,
fontWeight: FontWeight.normal,
decoration: TextDecoration.none,
fontFamily: 'RaleWay',
),
textAlign: TextAlign.left,
),
SizedBox(
height: 7.5,
),
Text(
"Lista de palabras actualizada",
style: TextStyle(
Expand Down

0 comments on commit 2ad206d

Please sign in to comment.