From 4d0ac8a7a34d810cb4924747b17c1604744881ce Mon Sep 17 00:00:00 2001 From: joeyjurjens Date: Sun, 23 Aug 2020 15:39:51 +0200 Subject: [PATCH 1/2] Instead of double tap, it's just single tap to close the menu --- template/Menu.mm | 2 +- template/versionCheck.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/template/Menu.mm b/template/Menu.mm index 6357ab3..284e322 100644 --- a/template/Menu.mm +++ b/template/Menu.mm @@ -109,7 +109,7 @@ -(id)initWithTitle:(NSString *)title_ titleColor:(UIColor *)titleColor_ titleFon [self.header addGestureRecognizer:dragMenuRecognizer]; UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(hideMenu:)]; - tapGestureRecognizer.numberOfTapsRequired = 2; + tapGestureRecognizer.numberOfTapsRequired = 1; [self.header addGestureRecognizer:tapGestureRecognizer]; [mainWindow addSubview:self]; diff --git a/template/versionCheck.sh b/template/versionCheck.sh index 76ab4db..ec51885 100755 --- a/template/versionCheck.sh +++ b/template/versionCheck.sh @@ -1,5 +1,5 @@ #!/bin/bash -VERSION='0.6.7' +VERSION='0.6.8' # Don't remove the above line. Serves as the version this script will fetch. Only update when a new version is out. ERROR='\033[1;31m[*] Error:\033[1;37m ' From 32cbb0bd581d29ad3b5b5f599afc7a2c2eeedba9 Mon Sep 17 00:00:00 2001 From: joeyjurjens Date: Sun, 6 Sep 2020 20:56:21 +0200 Subject: [PATCH 2/2] It's possible to compile arm64e hacks on device, just make sure your theos is up to date. --- template/Makefile | 5 +---- template/versionCheck.sh | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/template/Makefile b/template/Makefile index 2b8db12..5f51864 100644 --- a/template/Makefile +++ b/template/Makefile @@ -1,8 +1,5 @@ -# If you want to compile for arm64e, you'll need a macOS device or a arm64e device that's able to compile for arm64e. -# Once done that, uncomment the "#arm64e" by removing the "#" - # THEOS_DEVICE_IP = 127.0.0.1 -p 2222 # install to device from pc -ARCHS = arm64 #arm64e +ARCHS = arm64 arm64e DEBUG = 0 FINALPACKAGE = 1 FOR_RELEASE = 1 diff --git a/template/versionCheck.sh b/template/versionCheck.sh index ec51885..851431a 100755 --- a/template/versionCheck.sh +++ b/template/versionCheck.sh @@ -1,5 +1,5 @@ #!/bin/bash -VERSION='0.6.8' +VERSION='0.6.9' # Don't remove the above line. Serves as the version this script will fetch. Only update when a new version is out. ERROR='\033[1;31m[*] Error:\033[1;37m '