Closed
Bug 485624
Opened 16 years ago
Closed 16 years ago
Downloads in progress for previous releases should be canceled on startup instead of resumed
Categories
(Toolkit :: Application Update, defect)
Toolkit
Application Update
Tracking
()
RESOLVED
FIXED
mozilla1.9.2a1
People
(Reporter: robert.strong.bugs, Assigned: robert.strong.bugs)
References
Details
(Keywords: fixed1.9.0.12, fixed1.9.1, Whiteboard: [sg:want])
Attachments
(8 files, 13 obsolete files)
(deleted),
patch
|
mossop
:
review+
|
Details | Diff | Splinter Review |
(deleted),
patch
|
beltzner
:
approval1.9.1+
|
Details | Diff | Splinter Review |
(deleted),
patch
|
robert.strong.bugs
:
review+
|
Details | Diff | Splinter Review |
(deleted),
patch
|
robert.strong.bugs
:
review+
dveditz
:
approval1.9.0.12+
|
Details | Diff | Splinter Review |
(deleted),
application/zip
|
Details | |
(deleted),
patch
|
robert.strong.bugs
:
review+
|
Details | Diff | Splinter Review |
(deleted),
patch
|
robert.strong.bugs
:
review+
|
Details | Diff | Splinter Review |
(deleted),
patch
|
mossop
:
review+
dveditz
:
approval1.9.0.12+
|
Details | Diff | Splinter Review |
Spinoff of bug 353804 in order to split up the bug into manageable pieces and to have a bug / patch that is more likely to make it onto a branch.
Assignee | ||
Comment 1•16 years ago
|
||
Assignee | ||
Updated•16 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 2•16 years ago
|
||
I'm going to add a bunch of tests to nsIUpdateManager in this bug
Assignee | ||
Comment 3•16 years ago
|
||
Attachment #369764 -
Attachment is obsolete: true
Assignee | ||
Comment 4•16 years ago
|
||
Dave, this changes the test names which I've been wanting to do for a while and cleans up the tests a tad in preparation for the new tests.
Attachment #369866 -
Flags: review?(dtownsend)
Assignee | ||
Comment 5•16 years ago
|
||
Comment on attachment 369866 [details] [diff] [review]
Test cleanup and prep
gonna do a bit more
Attachment #369866 -
Attachment is obsolete: true
Attachment #369866 -
Flags: review?(dtownsend)
Assignee | ||
Comment 6•16 years ago
|
||
Dave, I'm separating the test data cleanup patch from the rest to make this easier to review. This patch renames a couple of the test data files and removes the xml files since the next patch generates the xml files as needed in the tests.
Attachment #369785 -
Attachment is obsolete: true
Attachment #370311 -
Flags: review?(dtownsend)
Assignee | ||
Comment 7•16 years ago
|
||
Dave, besides a lot of cleanup this also adds the functions to head_update.js for the new tests.
Attachment #370319 -
Flags: review?(dtownsend)
Assignee | ||
Comment 8•16 years ago
|
||
This includes one generic test for nsIUpdateManager and one test specific for this bug. I'll add more as time permits.
Attachment #370321 -
Flags: review?(dtownsend)
Assignee | ||
Comment 9•16 years ago
|
||
I didn't clean this up as much as it should be since I'd like to try to get this for 3.5 as well as 3.0.x
Attachment #369765 -
Attachment is obsolete: true
Attachment #370322 -
Flags: review?(dtownsend)
Assignee | ||
Comment 10•16 years ago
|
||
Comment on attachment 370319 [details] [diff] [review]
test cleanup
There is a problem with test_0110_PatchApply.js... I'll resubmit after I figure out what it is
Attachment #370319 -
Flags: review?(dtownsend)
Assignee | ||
Comment 11•16 years ago
|
||
had an extra backslash in the app.update.url.override pref
Attachment #370319 -
Attachment is obsolete: true
Attachment #370327 -
Flags: review?(dtownsend)
Assignee | ||
Comment 12•16 years ago
|
||
Attachment #370353 -
Flags: review?(dtownsend)
Assignee | ||
Updated•16 years ago
|
Attachment #370311 -
Attachment is obsolete: true
Attachment #370311 -
Flags: review?(dtownsend)
Assignee | ||
Comment 15•16 years ago
|
||
Comment on attachment 370311 [details] [diff] [review]
test data cleanup
I'm going to move the test cleanup over to bug 487346 in the hope to get this fixed sooner
Assignee | ||
Updated•16 years ago
|
Attachment #370327 -
Attachment is obsolete: true
Attachment #370327 -
Flags: review?(dtownsend)
Assignee | ||
Comment 16•16 years ago
|
||
Attachment #370321 -
Attachment is obsolete: true
Attachment #370322 -
Attachment is obsolete: true
Attachment #370353 -
Attachment is obsolete: true
Attachment #372019 -
Flags: review?(dtownsend)
Attachment #370321 -
Flags: review?(dtownsend)
Attachment #370322 -
Flags: review?(dtownsend)
Attachment #370353 -
Flags: review?(dtownsend)
Assignee | ||
Comment 18•16 years ago
|
||
Attachment #372019 -
Attachment is obsolete: true
Attachment #373020 -
Flags: review?(dtownsend)
Attachment #372019 -
Flags: review?(dtownsend)
Comment 19•16 years ago
|
||
Comment on attachment 373020 [details] [diff] [review]
patch w/ tests rev3 - requires patch from bug 487346
Generally looks good, a few comment changes and one issue that I think needs answering first.
>diff --git a/toolkit/mozapps/update/src/nsUpdateService.js.in b/toolkit/mozapps/update/src/nsUpdateService.js.in
> // Dig through the update history to find the patch that was just
> // installed and update its metadata.
>- for (var i = 0; i < um.updateCount; ++i) {
>- var umUpdate = um.getUpdateAt(i);
>- if (umUpdate && umUpdate.version == update.version &&
>- umUpdate.buildID == update.buildID) {
>- umUpdate.statusText = update.statusText;
>- break;
>- }
>- }
>+ um.activeUpdate = update;
You're not really updating the patch's metadata anymore I think, adjust the comment accordingly.
> downloadUpdate: function AUS_downloadUpdate(update, background) {
> if (!update)
> throw Cr.NS_ERROR_NULL_POINTER;
>+
>+ let ai = Cc["@mozilla.org/xre/app-info;1"].
>+ getService(Ci.nsIXULAppInfo);
>+ let vc = Cc["@mozilla.org/xpcom/version-comparator;1"].
>+ getService(Ci.nsIVersionComparator);
>+ // Don't download the update if the update's version is less than the
>+ // current application's version.
>+ if (update.version && vc.compare(update.version, ai.version) < 0) {
>+ LOG("UpdateService", "downloadUpdate - removing update for previous " +
>+ "application version " + update.version);
>+ cleanupActiveUpdate();
>+ return STATE_NONE;
>+ }
Shouldn't this be <=? If we're already running 3.5.1 we don't need to download the update to 3.5.1. You have a test for this too, maybe I'm missing something?. The r- is pending an answer to this.
> // Otherwise add it to the front of the list.
>- if (update)
>- this._updates = [update].concat(this._updates);
>+ this._updates = [update].concat(this._updates);
> },
|this._updates.unshift(update)| is probably simpler
>+ /// Don't write updates that have a temporary state to the updates.xml file.
Only need two slashes
Attachment #373020 -
Flags: review?(dtownsend) → review-
Assignee | ||
Comment 20•16 years ago
|
||
(In reply to comment #19)
> (From update of attachment 373020 [details] [diff] [review])
> Generally looks good, a few comment changes and one issue that I think needs
> answering first.
>
> >diff --git a/toolkit/mozapps/update/src/nsUpdateService.js.in b/toolkit/mozapps/update/src/nsUpdateService.js.in
>
> > // Dig through the update history to find the patch that was just
> > // installed and update its metadata.
> >- for (var i = 0; i < um.updateCount; ++i) {
> >- var umUpdate = um.getUpdateAt(i);
> >- if (umUpdate && umUpdate.version == update.version &&
> >- umUpdate.buildID == update.buildID) {
> >- umUpdate.statusText = update.statusText;
> >- break;
> >- }
> >- }
> >+ um.activeUpdate = update;
>
> You're not really updating the patch's metadata anymore I think, adjust the
> comment accordingly.
It sets the patch's metadata without digging through the history so I changed this to
// Update the patch's metadata.
>
> > downloadUpdate: function AUS_downloadUpdate(update, background) {
> > if (!update)
> > throw Cr.NS_ERROR_NULL_POINTER;
> >+
> >+ let ai = Cc["@mozilla.org/xre/app-info;1"].
> >+ getService(Ci.nsIXULAppInfo);
> >+ let vc = Cc["@mozilla.org/xpcom/version-comparator;1"].
> >+ getService(Ci.nsIVersionComparator);
> >+ // Don't download the update if the update's version is less than the
> >+ // current application's version.
> >+ if (update.version && vc.compare(update.version, ai.version) < 0) {
> >+ LOG("UpdateService", "downloadUpdate - removing update for previous " +
> >+ "application version " + update.version);
> >+ cleanupActiveUpdate();
> >+ return STATE_NONE;
> >+ }
>
> Shouldn't this be <=? If we're already running 3.5.1 we don't need to download
> the update to 3.5.1. You have a test for this too, maybe I'm missing
> something?. The r- is pending an answer to this.
Nightly updates are equal so it can't prevent updates to the same version
> > // Otherwise add it to the front of the list.
> >- if (update)
> >- this._updates = [update].concat(this._updates);
> >+ this._updates = [update].concat(this._updates);
> > },
>
> |this._updates.unshift(update)| is probably simpler
>
> >+ /// Don't write updates that have a temporary state to the updates.xml file.
>
> Only need two slashes
fixed
Assignee | ||
Comment 21•16 years ago
|
||
Attachment #373020 -
Attachment is obsolete: true
Attachment #373142 -
Flags: review?(dtownsend)
Updated•16 years ago
|
Attachment #373142 -
Flags: review?(dtownsend) → review+
Comment 22•16 years ago
|
||
Comment on attachment 373142 [details] [diff] [review]
patch rev4 with comments addressed (checked in)
Right, had forgotten about nightlies, shame.
Assignee | ||
Comment 23•16 years ago
|
||
Pushed to mozilla-central
http://hg.mozilla.org/mozilla-central/rev/a0b731e5e5ad
Status: ASSIGNED → RESOLVED
Closed: 16 years ago
Flags: in-testsuite+
Resolution: --- → FIXED
Assignee | ||
Comment 24•16 years ago
|
||
Comment on attachment 373142 [details] [diff] [review]
patch rev4 with comments addressed (checked in)
Drivers, this fixes the typical case for official release versions where an update is started in the background by user1, user1 quits, user2 installs a newer version, user1 laucnhes Firefox and continues to download / apply the older version. This has happened several times as can be seen by the dupes.
Attachment #373142 -
Flags: approval1.9.1?
Comment 25•16 years ago
|
||
(In reply to comment #20)
> (In reply to comment #19)
> > Shouldn't this be <=? If we're already running 3.5.1 we don't need to download
> > the update to 3.5.1. You have a test for this too, maybe I'm missing
> > something?. The r- is pending an answer to this.
> Nightly updates are equal so it can't prevent updates to the same version
The buildID is increasing all the time, can't distinguish nightlies by that ?
Assignee | ||
Comment 26•16 years ago
|
||
I've considered it and I may at some point utilize it... the problem I have with using it is that the format has changed previously and the format change could break update.
Assignee | ||
Comment 27•16 years ago
|
||
Updated•16 years ago
|
Attachment #373142 -
Flags: approval1.9.1?
Comment 28•16 years ago
|
||
Comment on attachment 373752 [details] [diff] [review]
patch for 1.9.1 - requires patch from Bug 487346 (checked in)
a191=beltzner
Attachment #373752 -
Flags: approval1.9.1+
Assignee | ||
Comment 29•16 years ago
|
||
Pushed to mozilla-1.9.1
http://hg.mozilla.org/releases/mozilla-1.9.1/rev/2176123cd7c0
Keywords: fixed1.9.1
Assignee | ||
Comment 30•16 years ago
|
||
Tests pushed to mozilla-1.9.1
http://hg.mozilla.org/releases/mozilla-1.9.1/rev/932cce645a2d
Comment 32•15 years ago
|
||
This might not be as necessary for the 1.9.0 branch as bug 313057, but when a user is stuck in that state there might be a newer version with security fixes they aren't getting because they're busy downloading some old thing. Then again, maybe the user account that was able to upgrade while this one is still downloading an old version will beat them to the next version as well.
Assignee | ||
Comment 33•15 years ago
|
||
Attachment #380551 -
Flags: review+
Attachment #380551 -
Flags: approval1.9.0.12?
Assignee | ||
Updated•15 years ago
|
Attachment #380551 -
Attachment description: patch for the 1.9.0 branch with updated tests (Bug 487346) → patch for the 1.9.0 branch with updated tests from Bug 487346
Assignee | ||
Comment 34•15 years ago
|
||
Comment on attachment 380551 [details] [diff] [review]
patch for the 1.9.0 branch with updated tests from Bug 487346
Looks like the new tests cause leaks with the existing tests (the new tests don't leak) in a debug build on 1.9.0 though these same tests don't leak on 1.9.1 and trunk... I'm going to refactor the tests so the existing tests don't leak on 1.9.0 and resubmit.
Attachment #380551 -
Attachment is obsolete: true
Attachment #380551 -
Flags: review+
Attachment #380551 -
Flags: approval1.9.0.12?
Comment 35•15 years ago
|
||
We'll look at approving this patch for 1.9.0 when you're happy with it, but we don't need to hold/block the next release for this if we get bug 313057.
Flags: blocking1.9.0.12?
Assignee | ||
Comment 36•15 years ago
|
||
Attachment #381255 -
Flags: review+
Assignee | ||
Comment 37•15 years ago
|
||
Attachment #381256 -
Flags: review+
Attachment #381256 -
Flags: approval1.9.0.12?
Assignee | ||
Updated•15 years ago
|
Attachment #381255 -
Attachment description: updated tests → updated tests for the 1.9.0 branch
Assignee | ||
Comment 38•15 years ago
|
||
Comment on attachment 381255 [details] [diff] [review]
updated tests for the 1.9.0 branch (updated pre-existing tests checked in)
Checked in the pre-existing tests that have been updated
Checking in mozilla/toolkit/mozapps/update/test/unit/head_update.js;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/head_update.js,v <-- head_up
date.js
new revision: 1.2; previous revision: 1.1
done
Checking in mozilla/toolkit/mozapps/update/test/unit/tail_update.js;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/tail_update.js,v <-- tail_up
date.js
new revision: 1.2; previous revision: 1.1
done
Checking in mozilla/toolkit/mozapps/update/test/unit/test_0010_general.js;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0010_general.js,v <-- t
est_0010_general.js
new revision: 1.2; previous revision: 1.1
done
Checking in mozilla/toolkit/mozapps/update/test/unit/test_0020_general.js;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0020_general.js,v <-- t
est_0020_general.js
new revision: 1.2; previous revision: 1.1
done
Checking in mozilla/toolkit/mozapps/update/test/unit/test_0030_general.js;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0030_general.js,v <-- t
est_0030_general.js
new revision: 1.2; previous revision: 1.1
done
Checking in mozilla/toolkit/mozapps/update/test/unit/test_0040_general.js.in;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0040_general.js.in,v <--
test_0040_general.js.in
new revision: 1.3; previous revision: 1.2
done
Attachment #381255 -
Attachment description: updated tests for the 1.9.0 branch → updated tests for the 1.9.0 branch (updated pre-existing tests checked in)
Assignee | ||
Comment 39•15 years ago
|
||
Assignee | ||
Comment 40•15 years ago
|
||
Attachment #381354 -
Flags: review+
Assignee | ||
Comment 41•15 years ago
|
||
Backported tests checked in to 1.9.0
RCS file: /cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0110_general.js
,v
done
Checking in mozilla/toolkit/mozapps/update/test/unit/test_0110_general.js;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0110_general.js,v <-- t
est_0110_general.js
initial revision: 1.1
done
RCS file: /cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0111_general.js
,v
done
Checking in mozilla/toolkit/mozapps/update/test/unit/test_0111_general.js;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0111_general.js,v <-- t
est_0111_general.js
initial revision: 1.1
done
RCS file: /cvsroot/mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_genera
l-1.mar,v
done
Checking in mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_general-1.mar
;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_general-1.mar,v
<-- aus-0110_general-1.mar
initial revision: 1.1
done
RCS file: /cvsroot/mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_genera
l-2.mar,v
done
Checking in mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_general-2.mar
;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_general-2.mar,v
<-- aus-0110_general-2.mar
initial revision: 1.1
done
RCS file: /cvsroot/mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_genera
l_ref_image1.png,v
done
Checking in mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_general_ref_i
mage1.png;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_general_ref_imag
e1.png,v <-- aus-0110_general_ref_image1.png
initial revision: 1.1
done
RCS file: /cvsroot/mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_genera
l_ref_image2.png,v
done
Checking in mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_general_ref_i
mage2.png;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/data/aus-0110_general_ref_imag
e2.png,v <-- aus-0110_general_ref_image2.png
initial revision: 1.1
done
Assignee | ||
Comment 42•15 years ago
|
||
Attachment #381358 -
Flags: review+
Assignee | ||
Updated•15 years ago
|
Attachment #373752 -
Attachment description: patch for 1.9.1 - requires patch from Bug 487346 → patch for 1.9.1 - requires patch from Bug 487346 (checked in)
Assignee | ||
Updated•15 years ago
|
Attachment #373142 -
Attachment description: patch rev4 with comments addressed → patch rev4 with comments addressed (checked in)
Assignee | ||
Comment 43•15 years ago
|
||
Comment on attachment 381256 [details] [diff] [review]
patch for the 1.9.0 branch (checked in)
The updated / new tests have all passed on the 1.9.0 branch so this is good to go.
Comment 44•15 years ago
|
||
Comment on attachment 381256 [details] [diff] [review]
patch for the 1.9.0 branch (checked in)
Approved for 1.9.0.12, a=dveditz for release-drivers
Attachment #381256 -
Flags: approval1.9.0.12? → approval1.9.0.12+
Assignee | ||
Updated•15 years ago
|
Attachment #381256 -
Attachment description: patch for the 1.9.0 branch → patch for the 1.9.0 branch (checked in)
Assignee | ||
Comment 45•15 years ago
|
||
Comment on attachment 381256 [details] [diff] [review]
patch for the 1.9.0 branch (checked in)
Checking in mozilla/toolkit/mozapps/update/content/history.js;
/cvsroot/mozilla/toolkit/mozapps/update/content/history.js,v <-- history.js
new revision: 1.8; previous revision: 1.7
done
Checking in mozilla/toolkit/mozapps/update/content/updates.xml;
/cvsroot/mozilla/toolkit/mozapps/update/content/updates.xml,v <-- updates.xml
new revision: 1.35; previous revision: 1.34
done
Checking in mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in;
/cvsroot/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in,v <-- nsUpda
teService.js.in
new revision: 1.153; previous revision: 1.152
done
Assignee | ||
Comment 46•15 years ago
|
||
Comment on attachment 381358 [details] [diff] [review]
Tests for when this bug is fixed (checked in)
Checking in mozilla/toolkit/mozapps/update/test/unit/test_0060_manager.js;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0060_manager.js,v <-- t
est_0060_manager.js
initial revision: 1.1
done
RCS file: /cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0061_manager.js
,v
done
Checking in mozilla/toolkit/mozapps/update/test/unit/test_0061_manager.js;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0061_manager.js,v <-- t
est_0061_manager.js
initial revision: 1.1
done
RCS file: /cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0062_manager.js
,v
done
Checking in mozilla/toolkit/mozapps/update/test/unit/test_0062_manager.js;
/cvsroot/mozilla/toolkit/mozapps/update/test/unit/test_0062_manager.js,v <-- t
est_0062_manager.js
initial revision: 1.1
done
Attachment #381358 -
Attachment description: Tests for when this bug is fixed → Tests for when this bug is fixed (checked in)
Assignee | ||
Updated•15 years ago
|
Keywords: fixed1.9.0.12
Updated•15 years ago
|
Target Milestone: --- → mozilla1.9.2a1
Assignee | ||
Comment 47•15 years ago
|
||
Attachment #383321 -
Flags: review?(dtownsend)
Comment 48•15 years ago
|
||
Comment on attachment 383321 [details] [diff] [review]
followup for 1.9.0 branch (checked in)
This is the branch applicable version of the patch in bug 496917
Attachment #383321 -
Flags: review?(dtownsend) → review+
Assignee | ||
Updated•15 years ago
|
Attachment #383321 -
Attachment description: followup → followup for 1.9.0 branch
Attachment #383321 -
Flags: approval1.9.0.12?
Assignee | ||
Comment 49•15 years ago
|
||
Comment on attachment 383321 [details] [diff] [review]
followup for 1.9.0 branch (checked in)
Followup for 1.9.0 to fix Bug 496917 on branch
Updated•15 years ago
|
Attachment #383321 -
Flags: approval1.9.0.12? → approval1.9.0.12+
Comment 50•15 years ago
|
||
Comment on attachment 383321 [details] [diff] [review]
followup for 1.9.0 branch (checked in)
Approved for 1.9.0.12, a=dveditz for release-drivers
Comment 51•15 years ago
|
||
(Make sure you add the keyword to bug 496917.)
Assignee | ||
Comment 52•15 years ago
|
||
Comment on attachment 383321 [details] [diff] [review]
followup for 1.9.0 branch (checked in)
Checking in mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in;
/cvsroot/mozilla/toolkit/mozapps/update/src/nsUpdateService.js.in,v <-- nsUpda
teService.js.in
new revision: 1.154; previous revision: 1.153
done
Attachment #383321 -
Attachment description: followup for 1.9.0 branch → followup for 1.9.0 branch (checked in)
Assignee | ||
Comment 54•15 years ago
|
||
I don't think it is worth backporting it to 1.8 so no.
Comment 55•15 years ago
|
||
Robert, does the automated test cover all areas of this bug? How can we manually verify the fix?
Assignee | ||
Comment 56•15 years ago
|
||
The xpcshell test does cover this bug.
If you'd like to verify this manually you can start a download and after it has started exit. Verify that the update.status file contains the string downloading... if it doesn't it downloaded too quickly and you will have to try again. Open the active-update.xml file and change the value for extensionVersion to a version that is less than the version you are currently running and save the file. Start Firefox and verify that the update.mar and update.status file have been deleted.
Comment 57•15 years ago
|
||
I'm running 3.5.3, and Firefox is downloading 3.5.3 for me. Reopen or a new bug?
Assignee | ||
Comment 58•15 years ago
|
||
New but how do you know it is downloading 3.5.3 (we just released 3.5.4)?
Comment 59•15 years ago
|
||
The Help menu said "Downloading 3.5.3" as did the dialog that popped up. I'm not in front of the computer any more, I'll open a new bug with more information when I am.
You need to log in
before you can comment on or make changes to this bug.
Description
•