Skip to content

Commit d57afb4

Browse files
authored
Update README links (#82)
1 parent 76488df commit d57afb4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Logos
2-
Logos is a Perl regex-based preprocessor that simplifies the boilerplate code needed to create hooks for Objective-C methods and C functions with an elegant Objective-C-like syntax. It’s most commonly used along with the [Theos](https://theos.github.io/) build system, which was originally developed to create jailbreak tweaks. Logos was once integrated in the same Git repo as Theos, but now has been decoupled from Theos to its own repo.
2+
Logos is a Perl regex-based preprocessor that simplifies the boilerplate code needed to create hooks for Objective-C methods and C functions with an elegant Objective-C-like syntax. It’s most commonly used along with the [Theos](https://theos.dev/docs/) build system, which was originally developed to create jailbreak tweaks. Logos was once integrated in the same Git repo as Theos, but now has been decoupled from Theos to its own repo.
33

4-
Logos aims to provide an interface for [Cydia Substrate](https://cydiasubstrate.com/) by default, but can be configured to directly use the Objective-C runtime.
4+
Logos aims to provide an interface for [Cydia Substrate](http://cydiasubstrate.com/) by default, but can be configured to directly use the Objective-C runtime.
55

6-
Documentation is available on the [Logos page](http://iphonedevwiki.net/index.php/Logos) of iPhone Dev Wiki.
6+
Documentation is available on the [Logos Syntax](https://theos.dev/docs/logos-syntax), [Logify](https://theos.dev/docs/logify.pl), and [File Extensions](https://theos.dev/docs/logos-file-extensions) pages of [theos.dev](https://theos.dev/docs/).
77

88
## Example
99
### Source file: Tweak.x
@@ -14,7 +14,8 @@ Documentation is available on the [Logos page](http://iphonedevwiki.net/index.ph
1414
return [%orig stringByAppendingString:@" (of doom)"];
1515
}
1616
17-
%new - (void)helloWorld {
17+
%new
18+
- (void)helloWorld {
1819
NSLog(@"Awesome!");
1920
}
2021

0 commit comments

Comments
 (0)