mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-26 21:47:04 +00:00
This PR add the possibility to update cappuccino from xCodeCapp. How does it work : - Create a temporary file for cappuccino - Download Cappuccino. The downloaded Cappuccino will be either the last release or the last version of the master branch (option in the preference) - Make a jake clean - Make a jake install There is a small window to follow the progress of the install (3 steps ; download - clean - install). If there is a issue with the install, the developer will be notify with which step failed (xCodeCapp internally log everything). The environment var CAPP_NOSUDO is set to 1. It means, if a developer did a bootstrap or a previous jake install in sudo, the update of cappuccino will fail. Changed the credit of xCodeCapp and pass it to the version 3.1
34 lines
1.2 KiB
Objective-C
34 lines
1.2 KiB
Objective-C
//
|
|
// UserDefaults.h
|
|
// XcodeCapp
|
|
//
|
|
// Created by Aparajita on 4/9/13.
|
|
//
|
|
//
|
|
|
|
#ifndef XcodeCapp_UserDefaults_h
|
|
#define XcodeCapp_UserDefaults_h
|
|
|
|
#import <Foundation/NSString.h>
|
|
|
|
extern NSString * const kDefaultLastEventId;
|
|
extern NSString * const kDefaultFirstLaunch;
|
|
extern NSString * const kDefaultFirstLaunchVersion;
|
|
extern NSString * const kDefaultXCCAPIMode;
|
|
extern NSString * const kDefaultXCCReactToInodeMod;
|
|
extern NSString * const kDefaultXCCReopenLastProject;
|
|
extern NSString * const kDefaultXCCAutoOpenErrorsPanelOnErrors;
|
|
extern NSString * const kDefaultXCCAutoOpenErrorsPanelOnCappLint;
|
|
extern NSString * const kDefaultXCCAutoShowNotificationOnErrors;
|
|
extern NSString * const kDefaultXCCAutoShowNotificationOnCappLint;
|
|
extern NSString * const kDefaultXCCProjectHistory;
|
|
extern NSString * const kDefaultLastOpenedPath;
|
|
extern NSString * const kDefaultPathModificationDates;
|
|
extern NSString * const kDefaultMaxRecentProjects;
|
|
extern NSString * const kDefaultLogLevel;
|
|
extern NSString * const kDefaultAutoOpenXcodeProject;
|
|
extern NSString * const kDefaultUseSymlinkWhenCreatingProject;
|
|
extern NSString * const kDefaultUpdateCappuccinoWithLastVersionOfMasterBranch;
|
|
|
|
#endif
|