Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
4505ad5a
Commit
4505ad5a
authored
Nov 18, 2013
by
Felix Paul Kühne
Browse files
Remove more code name occurences
parent
4294791d
Changes
19
Hide whitespace changes
Inline
Side-by-side
Resources/About Contents.html
View file @
4505ad5a
...
...
@@ -18,7 +18,7 @@
</td>
<td
width=
160
valign=
"middle"
>
<h3>
VLC for iOS
</h2>
<h5>
ASPEN
VERSION
<br
/><br
/>
MOBILEVLCKITVERSION
</h5>
<h5>
VLCFORIOS
VERSION
<br
/><br
/>
MOBILEVLCKITVERSION
</h5>
</td>
</tr>
</table>
...
...
Sources/VLC for iOS-Prefix.pch
View file @
4505ad5a
//
// Prefix header for all source files of the '
AspenProject
' target in the '
AspenProject
' project
// Prefix header for all source files of the '
vlc-ios
' target in the '
VLC for iOS
' project
//
#import <Availability.h>
...
...
Sources/VLCAboutViewController.h
View file @
4505ad5a
//
// VLCAboutViewController.h
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 07.04.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCAboutViewController.m
View file @
4505ad5a
//
// VLCAboutViewController.m
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 07.04.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
@@ -35,7 +35,7 @@
self
.
webView
.
backgroundColor
=
[
UIColor
colorWithWhite
:.
122
alpha
:
1
.];
NSMutableString
*
htmlContent
=
[
NSMutableString
stringWithContentsOfFile
:[[
NSBundle
mainBundle
]
pathForResource
:
@"About Contents"
ofType
:
@"html"
]
encoding
:
NSUTF8StringEncoding
error
:
nil
];
[
htmlContent
replaceOccurrencesOfString
:
@"
ASPEN
VERSION"
withString
:[[
NSString
stringWithFormat
:
NSLocalizedString
(
@"VERSION_FORMAT"
,
@""
),
[[
NSBundle
mainBundle
]
objectForInfoDictionaryKey
:
@"CFBundleVersion"
]]
stringByAppendingFormat
:
@"<br /><i>%@</i>"
,
kVLCVersionCodename
]
options
:
NSLiteralSearch
range
:
NSMakeRange
(
0
,
1000
)];
[
htmlContent
replaceOccurrencesOfString
:
@"
VLCFORIOS
VERSION"
withString
:[[
NSString
stringWithFormat
:
NSLocalizedString
(
@"VERSION_FORMAT"
,
@""
),
[[
NSBundle
mainBundle
]
objectForInfoDictionaryKey
:
@"CFBundleVersion"
]]
stringByAppendingFormat
:
@"<br /><i>%@</i>"
,
kVLCVersionCodename
]
options
:
NSLiteralSearch
range
:
NSMakeRange
(
0
,
1000
)];
[
htmlContent
replaceOccurrencesOfString
:
@"MOBILEVLCKITVERSION"
withString
:[
NSString
stringWithFormat
:
NSLocalizedString
(
@"BASED_ON_FORMAT"
,
@""
),[[
VLCLibrary
sharedLibrary
]
version
]]
options
:
NSLiteralSearch
range
:
NSMakeRange
(
0
,
1000
)];
[
self
.
webView
loadHTMLString
:[
NSString
stringWithString
:
htmlContent
]
baseURL
:[
NSURL
fileURLWithPath
:[[
NSBundle
mainBundle
]
bundlePath
]]];
htmlContent
=
nil
;
...
...
Sources/VLCAppDelegate.h
View file @
4505ad5a
//
// VLCAppDelegate.h
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 27.02.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCAppDelegate.m
View file @
4505ad5a
//
// VLCAppDelegate.m
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 27.02.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCExternalDisplayController.h
View file @
4505ad5a
//
// VLCExternalDisplayController.h
//
AspenProject
//
VLC for iOS
//
// Created by Gleb on 4/6/13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCExternalDisplayController.m
View file @
4505ad5a
//
// VLCExternalDisplayController.m
//
AspenProject
//
VLC for iOS
//
// Created by Gleb on 4/6/13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCLinearProgressIndicator.h
View file @
4505ad5a
//
// VLCLinearProgressIndicator.h
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 13.05.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCLinearProgressIndicator.m
View file @
4505ad5a
//
// VLCLinearProgressIndicator.m
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 13.05.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCMovieViewController.h
View file @
4505ad5a
//
// VLCDetailViewController.h
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 27.02.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCMovieViewController.m
View file @
4505ad5a
//
// VLCMovieViewController.m
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 27.02.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCPlaylistTableViewCell.h
View file @
4505ad5a
//
// VLCPlaylistTableViewCell.h
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 01.04.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCPlaylistTableViewCell.m
View file @
4505ad5a
//
// VLCPlaylistTableViewCell.m
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 01.04.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCPlaylistViewController.h
View file @
4505ad5a
//
// VLC
Master
ViewController.h
//
AspenProject
// VLC
Playlist
ViewController.h
//
VLC for iOS
//
// Created by Felix Paul Kühne on 27.02.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCPlaylistViewController.m
View file @
4505ad5a
//
// VLC
Master
ViewController.m
//
AspenProject
// VLC
Playlist
ViewController.m
//
VLC for iOS
//
// Created by Felix Paul Kühne on 27.02.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCStatusLabel.h
View file @
4505ad5a
//
// VLCStatusLabel.h
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 17.05.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/VLCStatusLabel.m
View file @
4505ad5a
//
// VLCStatusLabel.m
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 17.05.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Sources/main.m
View file @
4505ad5a
//
// main.m
//
AspenProject
//
VLC for iOS
//
// Created by Felix Paul Kühne on 27.02.13.
// Copyright (c) 2013 VideoLAN. All rights reserved.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment