Skip to content

Releases: duraidabdul/LocalConsole

1.12.1

04 Dec 23:21
Compare
Choose a tag to compare

This should fix a < iOS 15 crash that could occur when the share sheet was invoked (#19).

1.12.0

22 Nov 07:09
Compare
Choose a tag to compare

You can now add a custom menu element to your console as a submenu!

let action = UIAction(title: "My Action") { _ in
    LCManager.shared.print("Hello, world!")
}
        
let customMenu = UIMenu(
    title: "Quick Actions",
    image: UIImage(systemName: "wand.and.stars"),
    children: [action]
)
        
LCManager.shared.menu = customMenu

1.11.2

19 Oct 18:14
Compare
Choose a tag to compare
  • Fixed warning [Presentation] Presenting view controller <_UIContextMenuActionsOnlyViewController> from detached view controller <LocalConsole.ConsoleViewController> is discouraged.
  • Fixed console view being overlapped by presented view controllers and context menus.

1.11.1

17 Oct 01:22
Compare
Choose a tag to compare

Fixed build failure when building for iOS 14

1.11.0

17 Oct 01:14
Compare
Choose a tag to compare
  • Added "Terminate App" action.
  • Renamed and updated symbols for some menu items.
  • Restructured the way the console injects itself into the view hierarchy. The console view controller is now added to the app's main window instead of creating a window for itself.

1.10.4

15 Oct 18:51
Compare
Choose a tag to compare
  • Fixed blocked touches on iPad
  • Fixed simulator crash
  • Fixed crash that could occur when the keyboard appears

1.10.3

20 Sep 16:43
Compare
Choose a tag to compare

Fix build failure Variable binding in a condition requires an initializer when using Swift 5.6 and lower.

1.10.2

19 Sep 05:41
Compare
Choose a tag to compare

Fixes an issue that caused the console border to overlap the console (in front of dark backgrounds).

1.10.1

19 Sep 05:33
Compare
Choose a tag to compare

This version fixes an issue that caused keyboard avoidance to stop working.

1.10.0

19 Sep 03:08
Compare
Choose a tag to compare
  • Added support for avoiding Dynamic Island on iPhone 14 Pro.
  • Added safe area insets to Display Report.