Skip to content

Commit

Permalink
Showing 5 changed files with 19 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Changelog

## Build 35 (unreleased)
## Build 35
### New
- Server sockets
- SSH works (apk add openssh-client)
- SSH client works (apk add openssh-client)
### Fixed
- `out of memory`/`short read` error from tar, due to fork setting brk to 0
- Signals not being blocked while the signal handler is running
2 changes: 1 addition & 1 deletion app/FileProvider/Info.plist
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>34</string>
<string>35</string>
<key>NSExtension</key>
<dict>
<key>NSExtensionFileProviderDocumentGroup</key>
2 changes: 1 addition & 1 deletion app/Info.plist
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>34</string>
<string>35</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
17 changes: 13 additions & 4 deletions fastlane/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
DARK THEME
Now working:
- SSH client (to make it work, you'll need to run `mknod /dev/tty c 5 0`)
- ffmpeg (no more "Unknown encoder: 'copy'")
- Server sockets, like now you can run python3 -m http.server and browse your files from another device
- tar (sorry I broke it)
- lynx (this was working in the last build too but I only just realized)
- Ruby REPL (large programs will assert in the garbage collector though)

Plus a couple other UI fixes: terminal no longer overlaps with the keyboard when the app launches, and you can select text without making the keyboard go away.

And a few emulation fixes: You can now import numpy, and pip doesn't throw MemoryError when you try to install anything nontrivial.
Also a bunch of general fixes:
- Signals not being blocked while the signal handler is running
- Orphaned processes not being reparented to init
- Git doing strange things when it gets a signal
- Copy button on iOS not existing
- Segfault when trying to run a binary that requires glibc

Send bug reports or feedback here: https://github.com/tbodt/ish/issues
Join the Discord: https://discord.gg/SndDh5y
4 changes: 2 additions & 2 deletions iSH.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -1176,7 +1176,7 @@
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CURRENT_PROJECT_VERSION = 34;
CURRENT_PROJECT_VERSION = 35;
DEVELOPMENT_TEAM = CK5SXRTBR7;
ENABLE_BITCODE = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
@@ -1218,7 +1218,7 @@
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CURRENT_PROJECT_VERSION = 34;
CURRENT_PROJECT_VERSION = 35;
DEVELOPMENT_TEAM = CK5SXRTBR7;
ENABLE_BITCODE = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;

0 comments on commit acaa0a8

Please sign in to comment.