Version 2.1.0

This commit is contained in:
Florian Märkl 2021-01-15 22:35:50 +01:00
parent 505910bc5f
commit fcdc414692
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
3 changed files with 11 additions and 13 deletions

View file

@ -31,8 +31,8 @@ tri_option(CHIAKI_USE_SYSTEM_JERASURE "Use system-provided jerasure instead of s
tri_option(CHIAKI_USE_SYSTEM_NANOPB "Use system-provided nanopb instead of submodule" AUTO) tri_option(CHIAKI_USE_SYSTEM_NANOPB "Use system-provided nanopb instead of submodule" AUTO)
set(CHIAKI_VERSION_MAJOR 2) set(CHIAKI_VERSION_MAJOR 2)
set(CHIAKI_VERSION_MINOR 0) set(CHIAKI_VERSION_MINOR 1)
set(CHIAKI_VERSION_PATCH 1) set(CHIAKI_VERSION_PATCH 0)
set(CHIAKI_VERSION ${CHIAKI_VERSION_MAJOR}.${CHIAKI_VERSION_MINOR}.${CHIAKI_VERSION_PATCH}) set(CHIAKI_VERSION ${CHIAKI_VERSION_MAJOR}.${CHIAKI_VERSION_MINOR}.${CHIAKI_VERSION_PATCH})
set(CPACK_PACKAGE_NAME "chiaki") set(CPACK_PACKAGE_NAME "chiaki")

View file

@ -12,13 +12,18 @@ for Linux, FreeBSD, OpenBSD, Android, macOS, Windows, Nintendo Switch and potent
![Screenshot](assets/screenshot.png) ![Screenshot](assets/screenshot.png)
## Project Status
As all relevant features are implemented, this project is considered to be finished and in maintenance mode only.
No major updates are planned and contributions are only accepted in special cases.
## Installing ## Installing
You can either download a pre-built release or build Chiaki from source. You can either download a pre-built release or build Chiaki from source.
### Downloading a Release ### Downloading a Release
Builds are provided for Linux, Android, macOS and Windows. Builds are provided for Linux, Android, macOS, Nintendo Switch and Windows.
You can download them [here](https://git.sr.ht/~thestr4ng3r/chiaki/refs). You can download them [here](https://git.sr.ht/~thestr4ng3r/chiaki/refs).
@ -26,7 +31,7 @@ You can download them [here](https://git.sr.ht/~thestr4ng3r/chiaki/refs).
* **Android**: Install from [Google Play](https://play.google.com/store/apps/details?id=com.metallic.chiaki), [F-Droid](https://f-droid.org/packages/com.metallic.chiaki/) or download the APK from Sourcehut. * **Android**: Install from [Google Play](https://play.google.com/store/apps/details?id=com.metallic.chiaki), [F-Droid](https://f-droid.org/packages/com.metallic.chiaki/) or download the APK from Sourcehut.
* **macOS**: Drag the application from the `.dmg` into your Applications folder. * **macOS**: Drag the application from the `.dmg` into your Applications folder.
* **Windows**: Extract the `.zip` file and execute `chiaki.exe`. * **Windows**: Extract the `.zip` file and execute `chiaki.exe`.
* **Switch**: Follow README specific [instructions](./switch/README.md) * **Switch**: Download the `.nro` file and copy it into the `switch/` directory on your SD card.
### Building from Source ### Building from Source
@ -39,7 +44,7 @@ cmake ..
make make
``` ```
For more detailed platform-specific instructions, see [doc/platform-build.md](doc/platform-build.md). For more detailed platform-specific instructions, see [doc/platform-build.md](doc/platform-build.md) or [switch/](./switch/README.md) for Nintendo Switch.
## Usage ## Usage
@ -63,13 +68,6 @@ Settings -> Remote Play -> Add Device, or on a PS5: Settings -> System -> Remote
You can now double-click your Console in Chiaki's main window to start Remote Play. You can now double-click your Console in Chiaki's main window to start Remote Play.
## Joining the Community or Getting Help
There are official groups for Chiaki on Telegram and IRC. They are bridged so you can join whichever you like:
- **Telegram:** https://t.me/chiakitg
- **IRC:** #chiaki on irc.freenode.net
## Acknowledgements ## Acknowledgements
This project has only been made possible because of the following Open Source projects: This project has only been made possible because of the following Open Source projects:

View file

@ -24,7 +24,7 @@ android {
applicationId "com.metallic.chiaki" applicationId "com.metallic.chiaki"
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 30 targetSdkVersion 30
versionCode 9 versionCode 10
versionName chiakiVersion versionName chiakiVersion
externalNativeBuild { externalNativeBuild {
cmake { cmake {