Skip to content

Commit

Permalink
Merge pull request #50 from Carifio24/v3-5-0
Browse files Browse the repository at this point in the history
Version 3.5.0
  • Loading branch information
Carifio24 authored Dec 6, 2023
2 parents 2e871f0 + 1ac9717 commit c3d11f6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ android {
keyPassword System.getenv('ANDROID_KEY_PASSWORD')
}
}
compileSdkVersion 33
compileSdk 33
defaultConfig {
applicationId "dnd.jon.spellbook"
minSdkVersion 24
targetSdkVersion 33
versionCode 3004000
versionName "3.4.0"
versionCode 3005000
versionName "3.5.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
signingConfig signingConfigs.release
}
Expand Down
8 changes: 4 additions & 4 deletions app/src/main/java/dnd/jon/spellbook/GlobalInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

class GlobalInfo {

static final Version VERSION = new Version(3,4,0);
static final Version VERSION = new Version(3,5,0);
static final String VERSION_CODE = VERSION.string();

// We don't always want to show an update message
// i.e. for updates that are pure bugfixes, the old message may be
// more useful to users
static final Version UPDATE_LOG_VERSION = new Version(3,4,0);
static final Version UPDATE_LOG_VERSION = new Version(3,5,0);
static final String UPDATE_LOG_CODE = UPDATE_LOG_VERSION.string();
static final int UPDATE_LOG_TITLE_ID = R.string.update_03_04_00_title;
static final int UPDATE_LOG_DESCRIPTION_ID = R.string.update_03_04_00_description;
static final int UPDATE_LOG_TITLE_ID = R.string.update_03_05_00_title;
static final int UPDATE_LOG_DESCRIPTION_ID = R.string.update_03_05_00_description;

static final int ANDROID_VERSION = android.os.Build.VERSION.SDK_INT;

Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values-pt/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,8 @@
<string name="update_03_03_00_description">Esta atualização adiciona um botão à janela de slots de feitiço para recuperar todos os slots gastos. Além disso, isso remove um bug onde a configuração para alterar o idioma ortográfico era exibida quando não era suportada.</string>
<string name="update_03_04_00_title">Atualização da versão 3.4.0</string>
<string name="update_03_04_00_description">Esta atualização adiciona um botão à janela de feitiço que permite ao personagem <b>lançar um feitiço</b>. Isso usa um espaço de magia do nível apropriado, se houver algum disponível.</string>
<string name="update_03_05_00_title">Atualização da versão 3.5.0</string>
<string name="update_03_05_00_description">O livro de feitiços foi atualizado para incluir feitiços de <b>Cenário de Campanha Tal\'Dorei: Renascido</b> e <b>Sigil e as Terras Distantes</b>. Além disso, esta atualização corrige alguns pequenos bugs de interface do usuário e erros de texto.</string>

<!-- Character profile actions -->
<string name="rename">Renomear</string>
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,8 @@
<string name="update_03_03_00_description">This update adds a button to the spell slots window to regain all spent slots. Additionally, this removes a bug where the setting to change spell language was displayed when it wasn\'t supported.</string>
<string name="update_03_04_00_title">Version 3.4.0 update</string>
<string name="update_03_04_00_description">This update adds a button to the spell window allowing a character to <b>cast a spell</b>. This uses a spell slot of the appropriate level, if one is available.</string>
<string name="update_03_05_00_title">Version 3.5.0</string>
<string name="update_03_05_00_description">The spellbook has been updated to include spells from <b>Tal\'Dorei Campaign Setting Reborn</b> and <b>Sigil and the Outlands</b>. Additionally, this update corrects some minor UI bugs and text mistakes.</string>

<!-- Character profile actions -->
<string name="rename">Rename</string>
Expand Down

0 comments on commit c3d11f6

Please sign in to comment.