Skip to content

Commit

Permalink
Increment versions in preparation for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
VanceVagell committed Dec 14, 2024
1 parent 1b76e78 commit 75a48a2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion android-src/KV4PHT/.idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions android-src/KV4PHT/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "com.vagell.kv4pht"
minSdk 26
targetSdk 34
versionCode 21
versionName "1.3.1"
versionCode 22
versionName "1.4.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ public class FirmwareUtils {
private static int progressPercent = 0;

// Whenever there is new firmware, put the files in res/raw, and update these constants.
public static final int PACKAGED_FIRMWARE_VER = 2;
private static final int FIRMWARE_FILE_1_ID = R.raw.v2_kv4p_ht_esp32_wroom_32_ino_bootloader;
private static final int FIRMWARE_FILE_2_ID = R.raw.v2_kv4p_ht_esp32_wroom_32_ino_partitions;
public static final int PACKAGED_FIRMWARE_VER = 3;
private static final int FIRMWARE_FILE_1_ID = R.raw.v3_kv4p_ht_esp32_wroom_32_ino_bootloader;
private static final int FIRMWARE_FILE_2_ID = R.raw.v3_kv4p_ht_esp32_wroom_32_ino_partitions;
private static final int FIRMWARE_FILE_3_ID = R.raw.boot_app0; // This one never changes, it's the Arduino ESP32 bootloader
private static final int FIRMWARE_FILE_4_ID = R.raw.v2_kv4p_ht_esp32_wroom_32_ino;
private static final int FIRMWARE_FILE_4_ID = R.raw.v3_kv4p_ht_esp32_wroom_32_ino;

public FirmwareUtils() {
}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include <driver/i2s.h>
#include <esp_task_wdt.h>

const byte FIRMWARE_VER[8] = {'0', '0', '0', '0', '0', '0', '0', '2'}; // Should be 8 characters representing a zero-padded version, like 00000001.
const byte FIRMWARE_VER[8] = {'0', '0', '0', '0', '0', '0', '0', '3'}; // Should be 8 characters representing a zero-padded version, like 00000001.
const byte VERSION_PREFIX[7] = {'V', 'E', 'R', 'S', 'I', 'O', 'N'}; // Must match RadioAudioService.VERSION_PREFIX in Android app.

// Commands defined here must match the Android app
Expand Down

0 comments on commit 75a48a2

Please sign in to comment.