Skip to content

Commit

Permalink
Get ready for 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
XorTroll committed Aug 20, 2023
1 parent 3b0d98e commit 94234f8
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 28 deletions.
24 changes: 2 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,29 +91,9 @@ This are the properties an amiibo has:

### Virtual amiibo creation

While old emuiibo formats are supported and converted to the current format (see above), it is strongly suggested to, unless bin dumps might be indispensable, `emuiigen` be used, our PC utility designed to create and edit virtual amiibos:
While old emuiibo formats are supported and converted to the current format (see above), it is strongly suggested to, unless bin dumps might be indispensable, `emuiigen` be used, the intuitive PC utility designed to create and edit virtual amiibos:

> TODO: finish updating this for emuiigen
![Screenshot](emutool/Screenshot.png)

On the left half of the program:

- In the first dropdown menu on top, you can choose amiibos from a certain collection. In the second dropdown menu next to it, you can choose any amiibo you want to create.

On the right half of the tool:

- You can choose a name for the amiibo you want to create, a custom directory name (if you uncheck "Use name as directory name" below it).

- You can then choose if you want the amiibo to use randomized UUIDs. This means that the console always read it as a new/unique amiibo (some games have restrictions to use the same amiibo only once or once a day). Note that this might cause issues for games which save data into amiibos, so avoid using it on those!

- Then, you can choose if you want to save the amiibo picture shown on the left into the amiibo folder (it will be saved as a PNG file).

**Optional**:

- If you have a FTP connection on your switch console, you can directly save your amiibo on your SD into `/emuiibo/amiibo`

In the last step you click on "Create virtual amiibo" and choose a location, where you want to save it to. If an SD card with emuiibo is detected, the program will point to that SD's `/emuiibo/amiibo` folder.
![Screenshot](screenshots/emuiigen.png)

Now you can copy the generated amiibo folder onto your SD card, in `sd:/emuiibo/amiibo` or in any subdirectories inside it!

Expand Down
2 changes: 1 addition & 1 deletion emuiibo/Cargo.lock

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

2 changes: 1 addition & 1 deletion emuiibo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "emuiibo"
version = "1.0.0"
version = "1.1.0"
authors = ["XorTroll"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion emuiigen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<groupId>com.xortroll.emuiibo.emuiigen</groupId>
<artifactId>emuiigen</artifactId>

<version>1.0.0</version>
<version>1.1.0</version>
<name>emuiigen</name>

<properties>
Expand Down
4 changes: 2 additions & 2 deletions emuiigen/src/Utils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ class Utils {
}

fun ensureValidFileDirectoryName(str: String) : String {
// Ensure valid ASCII (for Switch filesystem)
// Ensure no trailing dots (for NTFS)
val str_no_trailing_dots = str.trimEnd('.');

// Ensure no trailing dots (for NTFS)
// Ensure valid ASCII (for Switch filesystem)
val str_no_accents = unaccentString(str_no_trailing_dots);

return str_no_accents;
Expand Down
2 changes: 1 addition & 1 deletion overlay/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ include $(DEVKITPRO)/libnx/switch_rules
#---------------------------------------------------------------------------------
APP_TITLE := emuiibo
VER_MAJOR := 1
VER_MINOR := 0
VER_MINOR := 1
VER_MICRO := 0
APP_VERSION := $(VER_MAJOR).$(VER_MINOR).$(VER_MICRO)
TARGET := $(APP_TITLE)
Expand Down
Binary file added screenshots/emuiigen.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 94234f8

Please sign in to comment.