Commit 92e83955 authored by Felix Paul Kühne's avatar Felix Paul Kühne

Implemented the retrieval of the versions, files and mirrors. Both the size...

Implemented the retrieval of the versions, files and mirrors. Both the size and the mirrors aren't displayed yet, but stored. The 'Released On'-stuff was removed, since it isn't present in the xml actually. More to come. (refs #310)
parent 508c769a
......@@ -15,7 +15,6 @@
"o_fld_dest" = id;
"o_fld_elpTime" = id;
"o_fld_releaseNote" = id;
"o_fld_releasedOn" = id;
"o_fld_remTime" = id;
"o_fld_size" = id;
"o_fld_source" = id;
......@@ -23,7 +22,6 @@
"o_lbl_checkForUpdate" = id;
"o_lbl_currentVersion" = id;
"o_lbl_mirror" = id;
"o_lbl_releasedOn" = id;
"o_lbl_size" = id;
"o_lbl_userVersion" = id;
"o_pop_mirror" = id;
......
......@@ -8,8 +8,8 @@
<string>437.0</string>
<key>IBOpenObjects</key>
<array>
<integer>5</integer>
<integer>7</integer>
<integer>5</integer>
</array>
<key>IBSystem Version</key>
<string>8C46</string>
......
......@@ -32,7 +32,6 @@
IBOutlet id o_fld_currentVersion;
IBOutlet id o_fld_dest;
IBOutlet id o_fld_elpTime;
IBOutlet id o_fld_releasedOn;
IBOutlet id o_fld_releaseNote;
IBOutlet id o_fld_remTime;
IBOutlet id o_fld_size;
......@@ -40,7 +39,6 @@
IBOutlet id o_fld_userVersion;
IBOutlet id o_lbl_currentVersion;
IBOutlet id o_lbl_mirror;
IBOutlet id o_lbl_releasedOn;
IBOutlet id o_lbl_size;
IBOutlet id o_lbl_userVersion;
IBOutlet id o_pop_mirror;
......@@ -48,6 +46,9 @@
IBOutlet id o_update_window;
IBOutlet id o_bar_checking;
IBOutlet id o_lbl_checkForUpdate;
NSMutableArray * o_mirrors;
NSMutableDictionary * o_files;
}
......@@ -57,6 +58,7 @@
- (void)showUpdateWindow;
- (void)initStrings;
- (void)getData;
+ (VLCUpdate *)sharedInstance;
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment