Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

#.PHONY: all dev emuiibo emuiibo-dev sysmodule sysmodule-dev overlay emuiigen dist clean emuiibo-clean emuiigen-clean

TARGET_TRIPLE := aarch64-nintendo-switch-freestanding
PROGRAM_ID := 0100000000000352

.PHONY: all dev clean emuiibo emuiibo-dev sysmodule sysmodule-dev overlay emuiigen dist dist-dev emuiibo-clean emuiigen-clean

all: emuiibo emuiigen

dev: emuiibo-dev emuiigen
Expand Down Expand Up @@ -33,6 +33,8 @@ dist: sysmodule overlay
@cp $(CURDIR)/overlay/emuiibo.ovl $(CURDIR)/SdOut/switch/.overlays/emuiibo.ovl
@mkdir -p $(CURDIR)/SdOut/emuiibo/overlay
@cp -r $(CURDIR)/overlay/lang $(CURDIR)/SdOut/emuiibo/overlay/
@zip -r $(CURDIR)/emuiibo.zip SdOut
@echo "Output created at $(CURDIR)/SdOut"

dist-dev: sysmodule-dev overlay
@rm -rf $(CURDIR)/SdOut
Expand All @@ -44,6 +46,7 @@ dist-dev: sysmodule-dev overlay
@cp $(CURDIR)/overlay/emuiibo.ovl $(CURDIR)/SdOut/switch/.overlays/emuiibo.ovl
@mkdir -p $(CURDIR)/SdOut/emuiibo/overlay
@cp -r $(CURDIR)/overlay/lang $(CURDIR)/SdOut/emuiibo/overlay/
@echo "Output (dev) created at $(CURDIR)/SdOut"

emuiigen:
@cd emuiigen && mvn package
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ While old emuiibo formats are supported and converted to the current format (see

![Screenshot](screenshots/emuiigen.png)

> Note: emuiigen is made to work on Java 11+!

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

### Supported figures
Expand Down
5 changes: 5 additions & 0 deletions cur-changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# `v1.1.2`

## emuiibo

- Updated for the latest changes in Rust libraries
150 changes: 104 additions & 46 deletions emuiibo/Cargo.lock

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

4 changes: 2 additions & 2 deletions emuiibo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "emuiibo"
version = "1.1.1"
version = "1.1.2"
authors = ["XorTroll"]
edition = "2024"

Expand All @@ -21,7 +21,7 @@ sha2 = { version = "0.10.9", default-features = false }
[package.metadata.nx.nsp.npdm]
name = "emuiibo"
signature_key_generation = 0
main_thread_stack_size = "0x100000"
main_thread_stack_size = "0x30000"
main_thread_priority = 49
main_thread_core_number = 3
system_resource_size = 0
Expand Down
Loading
Loading