Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
3b5526e0
Commit
3b5526e0
authored
Sep 11, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: add hack so deprecated platforms don't get updates they can't execute
parent
3935f543
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
extras/package/macosx/Info.plist.in
extras/package/macosx/Info.plist.in
+0
-2
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+10
-0
No files found.
extras/package/macosx/Info.plist.in
View file @
3b5526e0
...
@@ -1318,8 +1318,6 @@
...
@@ -1318,8 +1318,6 @@
<string>
Binary
</string>
<string>
Binary
</string>
</dict>
</dict>
</array>
</array>
<key>
SUFeedURL
</key>
<string>
http://update.videolan.org/vlc/sparkle/vlc.xml
</string>
<key>
SUPublicDSAKeyFile
</key>
<key>
SUPublicDSAKeyFile
</key>
<string>
dsa_pub.pem
</string>
<string>
dsa_pub.pem
</string>
<key>
CFBundleExecutable
</key>
<key>
CFBundleExecutable
</key>
...
...
modules/gui/macosx/intf.m
View file @
3b5526e0
...
@@ -655,6 +655,16 @@ static VLCMain *_o_sharedMainInstance = nil;
...
@@ -655,6 +655,16 @@ static VLCMain *_o_sharedMainInstance = nil;
[
self
initStrings
];
[
self
initStrings
];
NSURL
*
feedURL
;
#ifdef __x86_64__
feedURL
=
[
NSURL
URLWithString
:
@"http://update.videolan.org/vlc/sparkle/vlc-intel64.xml"
];
#elif __i386__
feedURL
=
[
NSURL
URLWithString
:
@"http://update.videolan.org/vlc/sparkle/vlc-intel32.xml"
];
#else
feedURL
=
[
NSURL
URLWithString
:
@"http://update.videolan.org/vlc/sparkle/vlc-powerpc.xml"
];
#endif
[[
SUUpdater
sharedUpdater
]
setFeedURL
:
feedURL
];
nib_main_loaded
=
TRUE
;
nib_main_loaded
=
TRUE
;
}
}
...
...
Write
Preview
Markdown
is supported
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