Skip to content

Commit

Permalink
Limbo Emulator v6.0.1 (QEMU 2.9.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
limboemu committed Sep 21, 2021
1 parent 90bd17c commit 3bfb6e9
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
600.00
600.01
4 changes: 2 additions & 2 deletions limbo-android-arm/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.limbo.emu.main.arm"
android:installLocation="auto"
android:versionCode="60000"
android:versionName="6.0.0-arm" >
android:versionCode="60001"
android:versionName="6.0.1-arm" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand Down
4 changes: 4 additions & 0 deletions limbo-android-lib/src/main/assets/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* Limbo v6.0.1
Use QEMU 5.1.0 for stability
See 6.0.0 Release Notes for other features

* Limbo Legacy v6.0.0
Using QEMU 2.9.1 for better performance!
WARNING:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class Config {
public enum EMU_VERSION {
QEMUv2_9_1, QEMUv5_1_0
}
public static final EMU_VERSION emuVersion = EMU_VERSION.QEMUv2_9_1;
public static final EMU_VERSION emuVersion = EMU_VERSION.QEMUv5_1_0;

// Constants
public static final int SDL_MOUSE_LEFT = 1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ BUILD_GUEST?=x86_64-softmmu

# QEMU Version
# values: 2.9.1, 5.1.0
USE_QEMU_VERSION ?= 2.9.1
USE_QEMU_VERSION ?= 5.1.0

# If you want to use SDL interface
USE_SDL ?= true
Expand Down
4 changes: 2 additions & 2 deletions limbo-android-ppc/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.limbo.emu.main.ppc"
android:installLocation="auto"
android:versionCode="60000"
android:versionName="6.0.0-ppc" >
android:versionCode="60001"
android:versionName="6.0.1-ppc" >


<uses-permission android:name="android.permission.INTERNET" />
Expand Down
4 changes: 2 additions & 2 deletions limbo-android-sparc/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.limbo.emu.main.sparc"
android:installLocation="auto"
android:versionCode="60000"
android:versionName="6.0.0-sparc" >
android:versionCode="60001"
android:versionName="6.0.1-sparc" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand Down
4 changes: 2 additions & 2 deletions limbo-android-x86/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.limbo.emu.main"
android:installLocation="auto"
android:versionCode="60000"
android:versionName="6.0.0-x86" >
android:versionCode="60001"
android:versionName="6.0.1-x86" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Expand Down

0 comments on commit 3bfb6e9

Please sign in to comment.