mirror of
https://github.com/touchHLE/touchHLE.git
synced 2026-01-31 01:25:24 +01:00
Link to website
This commit is contained in:
@@ -8,6 +8,7 @@ version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MPL-2.0"
|
||||
authors = ["hikari_no_yume <hikari@noyu.me>", "Contributors to touchHLE"]
|
||||
homepage = "https://touchhle.org/"
|
||||
|
||||
[package]
|
||||
name = "touchHLE"
|
||||
@@ -15,6 +16,7 @@ version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
authors = { workspace = true }
|
||||
homepage = { workspace = true }
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
@@ -6,6 +6,8 @@ As an HLE, touchHLE is radically different from a low-level emulator (LLE) like
|
||||
|
||||
The goal of this project is to run games from the early days of iOS. Only iPhone/iPod touch apps for iPhone OS 2.x have been tested so far. Modern/64-bit iOS app support is explicitly a non-goal, and support for apps that aren't games is unlikely to be prioritized due to the complexity. On the other hand, it's likely that we'll attempt to support apps for some newer 32-bit versions (especially 3.x and 4.x) and the iPad in future. iPhone OS 1.x support might be attempted also.
|
||||
|
||||
Visit our homepage! <https://touchhle.org/>
|
||||
|
||||
## Important disclaimer
|
||||
|
||||
This project is not affiliated with or endorsed by Apple Inc in any way. iPhone, iPhone OS, iOS, iPod, iPod touch and iPad may be trademarks of Apple Inc in the United States or other countries.
|
||||
@@ -30,6 +32,8 @@ Currently, the supported functionality is not much more than what the single sup
|
||||
|
||||
## App support
|
||||
|
||||
For pretty screenshots and video, [check out the home page!](https://touchhle.org/)
|
||||
|
||||
- Super Monkey Ball (2008, App Store launch title), tested versions 1.0, 1.02, 1.3 (1.3 is the most heavily tested)
|
||||
- Fully playable, everything works. Among other things:
|
||||
- Sound effects and music
|
||||
|
||||
@@ -7,6 +7,7 @@ version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
authors = { workspace = true }
|
||||
homepage = { workspace = true }
|
||||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
|
||||
@@ -7,6 +7,7 @@ version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
authors = { workspace = true }
|
||||
homepage = { workspace = true }
|
||||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
|
||||
@@ -7,6 +7,7 @@ version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
authors = { workspace = true }
|
||||
homepage = { workspace = true }
|
||||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
|
||||
@@ -134,7 +134,7 @@ pub struct Options {
|
||||
}
|
||||
|
||||
fn main() -> Result<(), String> {
|
||||
println!("touchHLE {}", VERSION);
|
||||
println!("touchHLE {} — https://touchhle.org/", VERSION);
|
||||
println!();
|
||||
|
||||
fn parse_degrees(arg: &str, name: &str) -> Result<f32, String> {
|
||||
|
||||
@@ -7,6 +7,7 @@ version = { workspace = true }
|
||||
edition = { workspace = true }
|
||||
license = { workspace = true }
|
||||
authors = { workspace = true }
|
||||
homepage = { workspace = true }
|
||||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
|
||||
Reference in New Issue
Block a user