Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
e98e8435
Commit
e98e8435
authored
Nov 27, 2007
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* announce the update facility removal and fix make dist (broken in previous commit)
parent
c663c6d7
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
357 deletions
+1
-357
Makefile.am
Makefile.am
+0
-7
NEWS
NEWS
+1
-0
modules/gui/macosx/update.h
modules/gui/macosx/update.h
+0
-53
modules/gui/macosx/update.m
modules/gui/macosx/update.m
+0
-297
No files found.
Makefile.am
View file @
e98e8435
...
...
@@ -73,9 +73,6 @@ EXTRA_DIST += \
extras/MacOSX/Resources/English.lproj/Extended.nib/classes.nib
\
extras/MacOSX/Resources/English.lproj/Extended.nib/info.nib
\
extras/MacOSX/Resources/English.lproj/Extended.nib/keyedobjects.nib
\
extras/MacOSX/Resources/English.lproj/Update.nib/classes.nib
\
extras/MacOSX/Resources/English.lproj/Update.nib/info.nib
\
extras/MacOSX/Resources/English.lproj/Update.nib/keyedobjects.nib
\
extras/MacOSX/Resources/English.lproj/Interaction.nib/classes.nib
\
extras/MacOSX/Resources/English.lproj/Interaction.nib/info.nib
\
extras/MacOSX/Resources/English.lproj/Interaction.nib/keyedobjects.nib
\
...
...
@@ -417,8 +414,6 @@ VLC-release.app: vlc
extended.m
\
bookmarks.h
\
bookmarks.m
\
update.h
\
update.m
\
interaction.h
\
interaction.m
\
embeddedwindow.h
\
...
...
@@ -555,8 +550,6 @@ VLC.app: vlc
extended.m
\
bookmarks.h
\
bookmarks.m
\
update.h
\
update.m
\
interaction.h
\
interaction.m
\
embeddedwindow.h
\
...
...
NEWS
View file @
e98e8435
...
...
@@ -28,6 +28,7 @@ Encoders:
* Improved H.264 encoding speed on Mac OS X
Other changes:
* The automatic updating facility was removed
* You now need to append --m3u-extvlcopt to your command line to enable
EXTVLCOPT options parsing in m3u playlists.
...
...
modules/gui/macosx/update.h
deleted
100644 → 0
View file @
c663c6d7
/*****************************************************************************
* update.h: MacOS X Check-For-Update window
*****************************************************************************
* Copyright (C) 2005-2006 the VideoLAN team
* $Id$
*
* Authors: Felix Khne <fkuehne@users.sf.net>
*
* 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/
#import <Cocoa/Cocoa.h>
#import <vlc_update.h>
@interface
VLCUpdate
:
NSObject
{
IBOutlet
id
o_btn_DownloadNow
;
IBOutlet
id
o_btn_okay
;
IBOutlet
id
o_fld_releaseNote
;
IBOutlet
id
o_fld_source
;
IBOutlet
id
o_fld_currentVersionAndSize
;
IBOutlet
id
o_fld_status
;
IBOutlet
id
o_update_window
;
IBOutlet
id
o_bar_checking
;
NSString
*
o_urlOfBinary
;
update_t
*
p_u
;
intf_thread_t
*
p_intf
;
}
-
(
IBAction
)
download
:(
id
)
sender
;
-
(
IBAction
)
okay
:(
id
)
sender
;
-
(
void
)
showUpdateWindow
;
-
(
void
)
initStrings
;
-
(
void
)
checkForUpdate
;
-
(
void
)
performDownload
:(
NSString
*
)
path
;
+
(
VLCUpdate
*
)
sharedInstance
;
@end
modules/gui/macosx/update.m
deleted
100644 → 0
View file @
c663c6d7
This diff is collapsed.
Click to expand it.
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