Beta 3 changelog available here https://gist.github.com/1075765.
Beta 3.1 changelog available here https://gist.github.com/1099528
Beta 3.2 changelog available here https://gist.github.com/1106841
FIX: Improve some APIs
| /* | |
| * This file is a part of program xcodecapp-cocoa | |
| * Copyright (C) 2011 Antoine Mercadal (primalmotion@archipelproject.org) | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * | |
| * This program is distributed in the hope that it will be useful, |
| function isSystemUsingOverlayScrollers() | |
| { | |
| var inner = document.createElement('p'), | |
| outer = document.createElement('div'); | |
| inner.style.width = "100%"; | |
| inner.style.height = "200px"; | |
| outer.style.position = "absolute"; |
| <?php | |
| # reports.php | |
| # | |
| # Copyright (C) 2010 Antoine Mercadal <antoine.mercadal@inframonde.eu> | |
| # This file is part of ArchipelProject | |
| # http://archipelproject.org | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU Affero General Public License as | |
| # published by the Free Software Foundation, either version 3 of the |
| @import <Foundation/CPObject.j> | |
| toto = function() | |
| { | |
| for(var i = 0; i < 10000; i++); | |
| } | |
| @implementation Util : CPObject |
| - (void)_updatePlaceholderState | |
| { | |
| var objectValue = [self objectValue]; | |
| if ((!objectValue || [objectValue count] === 0) && ![self hasThemeState:CPThemeStateEditing]) | |
| [self setThemeState:CPTextFieldStatePlaceholder]; | |
| else | |
| [self unsetThemeState:CPTextFieldStatePlaceholder]; | |
| } |
Beta 3 changelog available here https://gist.github.com/1075765.
Beta 3.1 changelog available here https://gist.github.com/1099528
Beta 3.2 changelog available here https://gist.github.com/1106841
FIX: Improve some APIs
| var alert = [TNAlert alertWithMessage:@"Are you sure ?" | |
| informative:@"Because this bad" | |
| target:self | |
| actions:[[@"Yes", @selector(performYes:)], | |
| [@"Maybe", @selector(performMaybe:)], | |
| [@"Cancel", nil]]]; | |
| [alert runModal]; |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="7.10"> | |
| <data> | |
| <int key="IBDocument.SystemTarget">1070</int> | |
| <string key="IBDocument.SystemVersion">11C55</string> | |
| <string key="IBDocument.InterfaceBuilderVersion">1617</string> | |
| <string key="IBDocument.AppKitVersion">1138.20</string> | |
| <string key="IBDocument.HIToolboxVersion">567.00</string> | |
| <object class="NSMutableDictionary" key="IBDocument.PluginVersions"> | |
| <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string> |
| import sublime, sublime_plugin | |
| import os | |
| from UserString import MutableString | |
| class CappDoc(sublime_plugin.TextCommand): | |
| def run(self, edit): | |
| region = self.view.sel()[0] | |
| selectedString = self.view.substr(region) | |
| if selectedString == "" or " " in selectedString: | |
| return |