Skip to content

Commit

Permalink
update README, hide progress after complete
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuowei committed Dec 28, 2022
1 parent 2e1e5a5 commit b593a07
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Works on iOS 16.1.2 and below (tested on iOS 16.1) on unjailbroken devices.

IPA available in the [Releases](https://github.com/zhuowei/WDBFontOverwrite/releases) section.

I'm probably not going to work on this further. If anyone else wants to take over, feel free.

Fonts included:

- DejaVu Sans Condensed
Expand All @@ -16,10 +18,22 @@ Fonts included:
- Comic Sans MS
- Choco Cooky

You can also import custom fonts that were ported for iOS.

DejaVu Sans Condensed | DejaVu Serif | DejaVu Sans Mono | Choco Cooky

![Screenshot](https://user-images.githubusercontent.com/704768/209511898-a1477b66-28e4-471a-87d9-36c1c2eb25ca.png)

Go Regular | Go Mono | Segoe UI | Comic Sans MS

![Another screenshot](https://user-images.githubusercontent.com/704768/209606970-a382c273-bdcb-425c-bca1-1b6f9b31862f.png)

Hanna Soft + JoyPixels | Bronkoh | Noto Serif SC | Fira Sans

![Another screenshot](https://user-images.githubusercontent.com/704768/209753262-b8204c92-b873-41a7-8127-38bf86096470.png)

Screenshot credit: [@ev_ynw](https://twitter.com/ev_ynw) for the ported [Hanna Soft](https://app.box.com/s/g4uk1yyqxm36sl9ovbwkpbbpn9isol8h/file/997004671334) and [Bronkoh](https://app.box.com/s/g4uk1yyqxm36sl9ovbwkpbbpn9isol8h/file/915757902297) fonts, [JoyPixels](https://joypixels.com/download) for the emoji font

## Choice of fonts

I don't know how to port fonts for iOS properly: I did look for guides, but they were too difficult.
Expand Down
2 changes: 2 additions & 0 deletions WDBFontOverwrite/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ struct ContentView: View {
progress = Progress(totalUnitCount: 1)
overwriteWithFont(name: font.repackedPath, progress: progress) {
message = $0
progress = nil
}
}) {
Text(font.name).font(.custom(font.postScriptName, size: 18))
Expand All @@ -82,6 +83,7 @@ struct ContentView: View {
name: font.localPath, targetName: font.targetPath, progress: progress
) {
message = $0
progress = nil
}
}) {
Text("Custom \(font.name)")
Expand Down

0 comments on commit b593a07

Please sign in to comment.