This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function prepareLogoPositioningClasses() | |
{ | |
//$(".applogo." + creaceed.currentPlatform).removeClass("hidden"); | |
$(".applogo." + creaceed.currentPlatform).addClass("halfshown"); | |
$(".applogoDetector").not("."+creaceed.currentPlatform).addClass("hidden"); | |
$(".applogoDetector."+creaceed.currentPlatform).removeClass("hidden"); | |
if(creaceed.currentProduct) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NSArray *formats = @[@"jpg", @"tiff"]; | |
NSDictionary *options = @{format:@"all", colorSpace:@"RGB"}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
hg="/usr/local/bin/hg" | |
if [ "x$1" != "x" ] | |
then | |
cur=`$hg id -ir $1` | |
else | |
# get working copy id (partial hash) | |
cur=`$hg id -i` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
bn=(`echo $1 | tr '.' ' '`) | |
revn=${bn[0]} | |
hsh=${bn[1]} | |
# convert decimal hash to hexadecimal | |
hsh=`printf '%3.3x' $hsh` | |
# check all the hashes that start with the prefix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
plbuddy="/usr/libexec/PlistBuddy" | |
toolsdir=$( dirname "${BASH_SOURCE[0]}" ) | |
plist="$BUILT_PRODUCTS_DIR/$INFOPLIST_PATH" | |
vers=`$toolsdir/make_build_version.sh` | |
vers="$vers" | |
major=`$plbuddy -c "Print :CFBundleShortVersionString" "$plist"` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CRParallaxMotionEffect.h | |
// CeedBase | |
// | |
// Created by Raphael Sebbe on 23/07/13. | |
// BSD License (3-clause). Copyright (c) 2013 Creaceed. All rights reserved. | |
// | |
#import <UIKit/UIKit.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CeedNumerics | |
// | |
// Created by Raphael Sebbe on 16/11/2018. | |
// Copyright © 2018 Creaceed. All rights reserved. | |
// | |
import Foundation | |
// Slicing |