mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-10 12:47:13 +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
30 lines
1.4 KiB
Objective-C
30 lines
1.4 KiB
Objective-C
//
|
|
// UserDefaults.m
|
|
// XcodeCapp
|
|
//
|
|
// Created by Aparajita on 4/9/13.
|
|
//
|
|
//
|
|
|
|
#include "UserDefaults.h"
|
|
|
|
|
|
NSString * const kDefaultLastEventId = @"lastEventId";
|
|
NSString * const kDefaultFirstLaunch = @"FirstLaunch";
|
|
NSString * const kDefaultFirstLaunchVersion = @"firstLaunchVersion";
|
|
NSString * const kDefaultXCCAPIMode = @"XCCAPIMode";
|
|
NSString * const kDefaultXCCReactToInodeMod = @"XCCReactMode";
|
|
NSString * const kDefaultXCCReopenLastProject = @"XCCReopenLastProject";
|
|
NSString * const kDefaultXCCAutoOpenErrorsPanelOnErrors = @"XCCAutoOpenErrorsPanelOnErrors";
|
|
NSString * const kDefaultXCCAutoOpenErrorsPanelOnCappLint = @"XCCAutoOpenErrorsPanelOnCappLint";
|
|
NSString * const kDefaultXCCAutoShowNotificationOnErrors = @"XCCAutoOpenShowNotificationErrors";
|
|
NSString * const kDefaultXCCAutoShowNotificationOnCappLint = @"XCCAutoShowNotificationOnCappLint";
|
|
NSString * const kDefaultXCCProjectHistory = @"XCCProjectHistory";
|
|
NSString * const kDefaultLastOpenedPath = @"LastOpenedPath";
|
|
NSString * const kDefaultPathModificationDates = @"pathModificationDates";
|
|
NSString * const kDefaultMaxRecentProjects = @"maxRecentProjects";
|
|
NSString * const kDefaultLogLevel = @"logLevel";
|
|
NSString * const kDefaultAutoOpenXcodeProject = @"autoOpenXcodeProject";
|
|
NSString * const kDefaultUseSymlinkWhenCreatingProject = @"useSymlinkWhenCreatingProject";
|
|
NSString * const kDefaultUpdateCappuccinoWithLastVersionOfMasterBranch = @"updateCappuccinoWithLastVersionOfMasterBranch";
|