Skip to content
This repository was archived by the owner on Aug 27, 2021. It is now read-only.

This is phalena kids #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cydia.frappliance/English.lproj/InfoPlist.strings
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CFBundleName = "Cydia";
CFBundleName = "Phalena";
6 changes: 3 additions & 3 deletions Cydia.frappliance/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

<dict>
<key>CFBundleExecutable</key>
<string>CydiaAppliance</string>
<string>PhalenaAppliance</string>

<key>CFBundleIdentifier</key>
<string>com.saurik.Cydia</string>
<string>com.saurik.Phalena</string>

<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
Expand Down Expand Up @@ -48,7 +48,7 @@
<string>3.0</string>

<key>NSPrincipalClass</key>
<string>CydiaAppliance</string>
<string>PhalenaAppliance</string>

<key>UIDeviceFamily</key>
<array>
Expand Down
16 changes: 8 additions & 8 deletions Cydia/LoadingView.h
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
/* Cydia - iPhone UIKit Front-End for Debian APT
/* Phalena - iPhone UIKit Front-End for Debian APT
* Copyright (C) 2008-2015 Jay Freeman (saurik)
*/

/* GNU General Public License, Version 3 {{{ */
/*
* Cydia is free software: you can redistribute it and/or modify
* Phalena 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.
*
* Cydia is distributed in the hope that it will be useful, but
* Phalena is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cydia. If not, see <http://www.gnu.org/licenses/>.
* along with Phalena. If not, see <http://www.gnu.org/licenses/>.
**/
/* }}} */

#ifndef Cydia_LoadingView_H
#define Cydia_LoadingView_H
#ifndef Phalena_LoadingView_H
#define Phalena_LoadingView_H

#include "Menes/ObjectHandle.h"

#include <UIKit/UIKit.h>

@interface CydiaLoadingView : UIView {
@interface PhalenaLoadingView : UIView {
_H<UIActivityIndicatorView> spinner_;
_H<UILabel> label_;
_H<UIView> container_;
}

@end

#endif//Cydia_LoadingView_H
#endif//Phalena_LoadingView_H
12 changes: 6 additions & 6 deletions Cydia/LoadingView.mm
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
/* Cydia - iPhone UIKit Front-End for Debian APT
/* Phalena - iPhone UIKit Front-End for Debian APT
* Copyright (C) 2008-2015 Jay Freeman (saurik)
*/

/* GNU General Public License, Version 3 {{{ */
/*
* Cydia is free software: you can redistribute it and/or modify
* Phalena 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.
*
* Cydia is distributed in the hope that it will be useful, but
* Phalena is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cydia. If not, see <http://www.gnu.org/licenses/>.
* along with Phalena. If not, see <http://www.gnu.org/licenses/>.
**/
/* }}} */

#include "CyteKit/UCPlatform.h"
#include "CyteKit/Localize.h"

#include "Cydia/LoadingView.h"
#include "Phalena/LoadingView.h"

@implementation CydiaLoadingView
@implementation PhalenaLoadingView

- (id) initWithFrame:(CGRect)frame {
if ((self = [super initWithFrame:frame]) != nil) {
Expand Down
16 changes: 8 additions & 8 deletions Cydia/LoadingViewController.h
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
/* Cydia - iPhone UIKit Front-End for Debian APT
/* Phalena - iPhone UIKit Front-End for Debian APT
* Copyright (C) 2008-2015 Jay Freeman (saurik)
*/

/* GNU General Public License, Version 3 {{{ */
/*
* Cydia is free software: you can redistribute it and/or modify
* Phalena 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.
*
* Cydia is distributed in the hope that it will be useful, but
* Phalena is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cydia. If not, see <http://www.gnu.org/licenses/>.
* along with Phalena. If not, see <http://www.gnu.org/licenses/>.
**/
/* }}} */

#ifndef Cydia_LoadingViewController_H
#define Cydia_LoadingViewController_H
#ifndef Phalena_LoadingViewController_H
#define Phalena_LoadingViewController_H

#include "CyteKit/ViewController.h"

@interface CydiaLoadingViewController : CyteViewController {
@interface PhalenaLoadingViewController : CyteViewController {
}

@end

#endif//Cydia_LoadingViewController_H
#endif//Phalena_LoadingViewController_H
16 changes: 8 additions & 8 deletions Cydia/LoadingViewController.mm
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
/* Cydia - iPhone UIKit Front-End for Debian APT
/* Phalena - iPhone UIKit Front-End for Debian APT
* Copyright (C) 2008-2015 Jay Freeman (saurik)
*/

/* GNU General Public License, Version 3 {{{ */
/*
* Cydia is free software: you can redistribute it and/or modify
* Phalena 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.
*
* Cydia is distributed in the hope that it will be useful, but
* Phalena is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cydia. If not, see <http://www.gnu.org/licenses/>.
* along with Phalena. If not, see <http://www.gnu.org/licenses/>.
**/
/* }}} */

#include "CyteKit/UCPlatform.h"

#include "Cydia/LoadingView.h"
#include "Cydia/LoadingViewController.h"
#include "Phalena/LoadingView.h"
#include "Phalena/LoadingViewController.h"

@implementation CydiaLoadingViewController
@implementation PhalenaLoadingViewController

- (void) loadView {
[super loadView];
Expand All @@ -33,7 +33,7 @@ - (void) loadView {
[table setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
[[self view] addSubview:table];

CydiaLoadingView *indicator([[[CydiaLoadingView alloc] initWithFrame:[[self view] bounds]] autorelease]);
PhalenaLoadingView *indicator([[[PhalenaLoadingView alloc] initWithFrame:[[self view] bounds]] autorelease]);
[indicator setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
[[self view] addSubview:indicator];
}
Expand Down
14 changes: 7 additions & 7 deletions Cydia/MIMEAddress.h
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
/* Cydia - iPhone UIKit Front-End for Debian APT
/* Phalena - iPhone UIKit Front-End for Debian APT
* Copyright (C) 2008-2015 Jay Freeman (saurik)
*/

/* GNU General Public License, Version 3 {{{ */
/*
* Cydia is free software: you can redistribute it and/or modify
* Phalena 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.
*
* Cydia is distributed in the hope that it will be useful, but
* Phalena is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cydia. If not, see <http://www.gnu.org/licenses/>.
* along with Phalena. If not, see <http://www.gnu.org/licenses/>.
**/
/* }}} */

#ifndef Cydia_MIMEAddress_H
#define Cydia_MIMEAddress_H
#ifndef Phalena_MIMEAddress_H
#define Phalena_MIMEAddress_H

#include "Menes/ObjectHandle.h"

Expand All @@ -39,4 +39,4 @@

@end

#endif//Cydia_MIMEAddress_H
#endif//Phalena_MIMEAddress_H
10 changes: 5 additions & 5 deletions Cydia/MIMEAddress.mm
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
/* Cydia - iPhone UIKit Front-End for Debian APT
/* Phalena - iPhone UIKit Front-End for Debian APT
* Copyright (C) 2008-2015 Jay Freeman (saurik)
*/

/* GNU General Public License, Version 3 {{{ */
/*
* Cydia is free software: you can redistribute it and/or modify
* Phalena 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.
*
* Cydia is distributed in the hope that it will be useful, but
* Phalena is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cydia. If not, see <http://www.gnu.org/licenses/>.
* along with Phalena. If not, see <http://www.gnu.org/licenses/>.
**/
/* }}} */

#include "CyteKit/UCPlatform.h"

#include "Cydia/MIMEAddress.h"
#include "Phalena/MIMEAddress.h"
#include "CyteKit/RegEx.hpp"

#include "iPhonePrivate.h"
Expand Down
24 changes: 12 additions & 12 deletions Cydia/ProgressEvent.h
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
/* Cydia - iPhone UIKit Front-End for Debian APT
/* Phalena - iPhone UIKit Front-End for Debian APT
* Copyright (C) 2008-2015 Jay Freeman (saurik)
*/

/* GNU General Public License, Version 3 {{{ */
/*
* Cydia is free software: you can redistribute it and/or modify
* Phalena 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.
*
* Cydia is distributed in the hope that it will be useful, but
* Phalena is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cydia. If not, see <http://www.gnu.org/licenses/>.
* along with Phalena. If not, see <http://www.gnu.org/licenses/>.
**/
/* }}} */

#ifndef Cydia_ProgressEvent_H
#define Cydia_ProgressEvent_H
#ifndef Phalena_ProgressEvent_H
#define Phalena_ProgressEvent_H

#include <Foundation/Foundation.h>

#include <apt-pkg/acquire.h>

@interface CydiaProgressEvent : NSObject {
@interface PhalenaProgressEvent : NSObject {
_H<NSString> message_;
_H<NSString> type_;

Expand All @@ -36,9 +36,9 @@
_H<NSString> version_;
}

+ (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type;
+ (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package;
+ (CydiaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItemDesc:(pkgAcquire::ItemDesc &)desc;
+ (PhalenaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type;
+ (PhalenaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forPackage:(NSString *)package;
+ (PhalenaProgressEvent *) eventWithMessage:(NSString *)message ofType:(NSString *)type forItemDesc:(pkgAcquire::ItemDesc &)desc;

- (id) initWithMessage:(NSString *)message ofType:(NSString *)type;

Expand All @@ -62,12 +62,12 @@
@end

@protocol ProgressDelegate
- (void) addProgressEvent:(CydiaProgressEvent *)event;
- (void) addProgressEvent:(PhalenaProgressEvent *)event;
- (void) setProgressPercent:(NSNumber *)percent;
- (void) setProgressStatus:(NSDictionary *)status;
- (void) setProgressCancellable:(NSNumber *)cancellable;
- (bool) isProgressCancelled;
- (void) setTitle:(NSString *)title;
@end

#endif//Cydia_ProgressEvent_H
#endif//Phalena_ProgressEvent_H
8 changes: 4 additions & 4 deletions CyteKit/Application.h
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
/* Cydia - iPhone UIKit Front-End for Debian APT
/* Phalena - iPhone UIKit Front-End for Debian APT
* Copyright (C) 2008-2015 Jay Freeman (saurik)
*/

/* GNU General Public License, Version 3 {{{ */
/*
* Cydia is free software: you can redistribute it and/or modify
* Phalena 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.
*
* Cydia is distributed in the hope that it will be useful, but
* Phalena is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cydia. If not, see <http://www.gnu.org/licenses/>.
* along with Phalena. If not, see <http://www.gnu.org/licenses/>.
**/
/* }}} */

Expand Down
8 changes: 4 additions & 4 deletions CyteKit/Application.mm
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
/* Cydia - iPhone UIKit Front-End for Debian APT
/* Phalena - iPhone UIKit Front-End for Debian APT
* Copyright (C) 2008-2015 Jay Freeman (saurik)
*/

/* GNU General Public License, Version 3 {{{ */
/*
* Cydia is free software: you can redistribute it and/or modify
* Phalena 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.
*
* Cydia is distributed in the hope that it will be useful, but
* Phalena is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cydia. If not, see <http://www.gnu.org/licenses/>.
* along with Phalena. If not, see <http://www.gnu.org/licenses/>.
**/
/* }}} */

Expand Down
Loading