mirror of
https://github.com/MacDownApp/macdown.git
synced 2026-05-17 12:40:37 +00:00
6192294908
Implemented logic for CLI installation from the GUI app. A preference pane is added. The pane detects whether the user has something installed that looks like the MacDown CLI utility by checking common installtion locations, e.g. Homebrew. If the util is not detected to be installed, the user can click a button to install it. For now the only option is to install it to /usr/local/bin/macdown.
16 lines
385 B
Objective-C
16 lines
385 B
Objective-C
//
|
|
// MPTerminalPreferencesViewController.h
|
|
// MacDown
|
|
//
|
|
// Created by Niklas Berglund on 2017-01-11.
|
|
// Copyright © 2017 Tzu-ping Chung . All rights reserved.
|
|
//
|
|
|
|
#import "MPPreferencesViewController.h"
|
|
#import <MASPreferences/MASPreferencesViewController.h>
|
|
|
|
@interface MPTerminalPreferencesViewController : MPPreferencesViewController
|
|
<MASPreferencesViewController>
|
|
|
|
@end
|