gitextract_t1_psfpw/ ├── DNSCrypt-Menubar/ │ ├── COPYING │ ├── DNSCrypt-Menubar/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── DNSCrypt-Menubar-Info.plist │ │ ├── DNSCrypt-Menubar-Prefix.pch │ │ ├── en.lproj/ │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ └── main.m │ ├── DNSCrypt-Menubar.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── dnscrypt.icns ├── DNSCrypt-Meta-Installer/ │ ├── DNSCrypt-Meta-Installer.pkgproj │ └── install.sh ├── DNSCrypt-OSX-Installer/ │ ├── DNSCrypt-OSX-Installer.pkgproj │ ├── Scripts/ │ │ ├── dnscrypt-menubar-postinstall.sh │ │ ├── dnscrypt-menubar-preinstall.sh │ │ ├── dnscrypt-prefpane-postinstall.sh │ │ └── dnscrypt-prefpane-preinstall.sh │ ├── com.github.dnscrypt-osxclient.DNSCryptAfterboot.plist │ ├── com.github.dnscrypt-osxclient.DNSCryptConsoleChange.plist │ ├── com.github.dnscrypt-osxclient.DNSCryptControlChange.plist │ ├── com.github.dnscrypt-osxclient.DNSCryptMenuBar.plist │ ├── com.github.dnscrypt-osxclient.DNSCryptNetworkChange.plist │ └── sign.sh ├── DNSCrypt-Preference-Pane/ │ ├── COPYING │ ├── DNSCrypt/ │ │ ├── CHCSVParser/ │ │ │ ├── CHCSVParser.h │ │ │ └── CHCSVParser.m │ │ ├── DNSCrypt-Info.plist │ │ ├── DNSCrypt-Prefix.pch │ │ ├── DNSCrypt.h │ │ ├── DNSCrypt.m │ │ ├── DNSCrypt.tiff │ │ ├── en.lproj/ │ │ │ ├── DNSCrypt.xib │ │ │ └── InfoPlist.strings │ │ └── extra/ │ │ ├── html/ │ │ │ ├── about.haml │ │ │ ├── about.html │ │ │ ├── help.haml │ │ │ ├── help.html │ │ │ ├── releasenotes.haml │ │ │ └── releasenotes.html │ │ └── usr/ │ │ ├── bin/ │ │ │ └── Uninstall.app/ │ │ │ └── Contents/ │ │ │ ├── Info.plist │ │ │ ├── MacOS/ │ │ │ │ └── applet │ │ │ ├── PkgInfo │ │ │ └── Resources/ │ │ │ ├── Scripts/ │ │ │ │ └── main.scpt │ │ │ ├── applet.icns │ │ │ ├── applet.rsrc │ │ │ └── description.rtfd/ │ │ │ └── TXT.rtf │ │ └── scripts/ │ │ ├── afterboot.sh │ │ ├── check-hijacking.sh │ │ ├── check-local-dns.sh │ │ ├── check-network-change.sh │ │ ├── clear-fw.sh │ │ ├── common.inc │ │ ├── create-ticket.sh │ │ ├── exceptions-add.sh │ │ ├── exceptions-remove.sh │ │ ├── get-current-default-domain.sh │ │ ├── get-current-resolvers.sh │ │ ├── get-dhcp-resolvers.sh │ │ ├── get-dnscrypt-resolver-name.sh │ │ ├── get-dnscrypt-status.sh │ │ ├── get-fallback-status.sh │ │ ├── get-query-logging-status.sh │ │ ├── get-resolvers-description.sh │ │ ├── get-static-resolvers.sh │ │ ├── get-tickets-count.sh │ │ ├── get-upstream-resolvers.sh │ │ ├── gui-pop-conf-change.sh │ │ ├── gui-push-conf-change.sh │ │ ├── handle-console-change.sh │ │ ├── handle-control-change.sh │ │ ├── handle-network-change.sh │ │ ├── set-dns-to-dhcp.sh │ │ ├── set-dns.sh │ │ ├── set-dnscrypt-resolver-name.sh │ │ ├── set-static-resolvers.sh │ │ ├── start-dnscrypt-proxy.sh │ │ ├── stop-dnscrypt-proxy.sh │ │ ├── switch-blacklists-off.sh │ │ ├── switch-blacklists-on.sh │ │ ├── switch-fallback-off.sh │ │ ├── switch-fallback-on.sh │ │ ├── switch-query-logging-off.sh │ │ ├── switch-query-logging-on.sh │ │ ├── switch-to-dhcp-if-required.sh │ │ ├── switch-to-dhcp.sh │ │ ├── switch-to-dnscrypt-if-required.sh │ │ ├── switch-to-dnscrypt.sh │ │ ├── update-blacklist-domains.sh │ │ ├── update-blacklist-ips.sh │ │ └── update-exceptions.sh │ └── DNSCrypt.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── DNSCrypt-Uninstaller/ │ └── Uninstall.scpt ├── Pages/ │ ├── feedback.haml │ ├── feedback.php │ ├── feedback.tpl │ └── sent.haml └── README.markdown