Skip to content

Commit

Permalink
Bump version from v7.1.2 to v7.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
longjunyu2 committed Aug 29, 2024
1 parent 85b00f2 commit 65efe18
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "com.winlator"
minSdk 26
targetSdk 28
versionCode 18
versionName "7.1.2-glibc"
versionCode 19
versionName "7.1.3-glibc"
externalNativeBuild {
cmake {
cppFlags ''
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/winlator/core/WineInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import java.util.regex.Pattern;

public class WineInfo implements Parcelable {
public static final WineInfo MAIN_WINE_VERSION = new WineInfo("9.15", "x86_64");
public static final WineInfo MAIN_WINE_VERSION = new WineInfo("9.16", "x86_64");
private static final Pattern pattern = Pattern.compile("^wine\\-([0-9\\.]+)\\-?([0-9\\.]+)?\\-(x86|x86_64)$");
public final String version;
public final String subversion;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import java.util.concurrent.atomic.AtomicLong;

public abstract class ImageFsInstaller {
public static final byte LATEST_VERSION = 10;
public static final byte LATEST_VERSION = 11;

private static void resetContainerImgVersions(Context context) {
ContainerManager manager = new ContainerManager(context);
Expand Down

0 comments on commit 65efe18

Please sign in to comment.