Closed
Bug 533383
Opened 15 years ago
Closed 15 years ago
Installer has to check available space and select the storage with enough free space
Categories
(Firefox for Android Graveyard :: General, defect)
Firefox for Android Graveyard
General
All
Windows Mobile 6 Professional
Tracking
(fennec1.0b1-wm+)
RESOLVED
WONTFIX
Tracking | Status | |
---|---|---|
fennec | 1.0b1-wm+ | --- |
People
(Reporter: alexp, Assigned: alexp)
References
Details
(Whiteboard: mothballed)
Attachments
(2 files, 2 obsolete files)
9.75 KB,
patch
|
blassey
:
review+
|
Details | Diff | Splinter Review |
2.19 KB,
patch
|
Details | Diff | Splinter Review |
Installer selects "\Program Files\Fennec" location by default for installation. If the main storage does not have enough free space, the installation will fail. It would make sense to check the space available, and select Storage Card instead, if it exists and has enough space.
Assignee | ||
Updated•15 years ago
|
Assignee: nobody → alexp
Assignee | ||
Comment 2•15 years ago
|
||
Check free space on all available mediums, select the one with enough space, or display a "Not enough storage" error message.
Attachment #426424 -
Flags: review?(bugmail)
Assignee | ||
Comment 3•15 years ago
|
||
New message in setup.ini
Attachment #426426 -
Flags: review?(bugmail)
Updated•15 years ago
|
tracking-fennec: --- → 1.0b1-wm+
Updated•15 years ago
|
Attachment #426424 -
Flags: review?(bugmail) → review+
Comment 4•15 years ago
|
||
Comment on attachment 426424 [details] [diff] [review]
Patch
>+ {
>+ WCHAR sMsg[c_nMaxErrorLen];
>+ int nSizeInMB = static_cast<int>(m_nUncompressedSize / 1024 / 1024 + 1);
>+ _snwprintf(sMsg, c_nMaxErrorLen, Strings.GetString(StrID_NotEnoughSpace), nSizeInMB);
>+ int nYesNo = MessageBoxW(m_hDlg, sMsg, Strings.GetString(StrID_WindowCaption), MB_YESNO|MB_ICONWARNING);
>+ bContinue = (nYesNo == IDYES);
>+ }
>+ }
Why allow the installation to continue? Is there any chance it'll succeed?
Comment 5•15 years ago
|
||
Comment on attachment 426426 [details] [diff] [review]
Patch mobile
>+NotEnoughSpace=There is not enough storage space on your device. You need %d MB available to install %MOZ_APP_DISPLAYNAME%. Do you still want to continue installation?
pretty much the same question as with the last patch. Madhava, what do you want to do here?
Comment 6•15 years ago
|
||
"Do you still want to continue installation?" seems like just letting people waste their time if we know there's not enough room, doesn't it? Is there value there I don't get?
Maybe:
"There is not enough free space to install %MOZ_APP_DISPLAYNAME%. Make %d MB available and try installing again."
where %d is the additional amount (not just the total required) needed for the install to fit.
Comment 7•15 years ago
|
||
Actually - that's ambiguous.
Better:
"There is not enough free space to install %MOZ_APP_DISPLAYNAME%. Make an additional %d MB available and try installing again."
Assignee | ||
Comment 8•15 years ago
|
||
I've just realized - this new message about "additional space" might still be ambiguous if the device has two or more different kinds of storage - for example, internal storage and a memory card (some may also have an additional internal flash-memory area as well).
What space do we mean in the message? Main internal storage is more obvious of course, but what if the user prefers a memory card? It will not be clear from the message about internal memory how much he/she needs to free up on a flash card.
That's why I'd prefer to keep the total required amount.
Assignee | ||
Updated•15 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 9•15 years ago
|
||
Not a major, but important change: moved free space check to a later stage as after Uninstall run it changes.
Attachment #426424 -
Attachment is obsolete: true
Attachment #427412 -
Flags: review?(bugmail)
Assignee | ||
Comment 10•15 years ago
|
||
Removed the question.
Made the message a bit similar to the standard system message about the low storage space.
Attachment #426426 -
Attachment is obsolete: true
Attachment #427425 -
Flags: review?(bugmail)
Attachment #426426 -
Flags: review?(bugmail)
Updated•15 years ago
|
Attachment #427425 -
Flags: review?(bugmail) → review?(madhava)
Updated•15 years ago
|
Attachment #427412 -
Flags: review?(bugmail) → review+
Comment 11•15 years ago
|
||
This year we mothballed windows mobile development. See:
http://blog.pavlov.net/2010/03/22/stopping-development-for-windows-mobile/
Marking bugs in the windows mobile / windows ce bucket as WONTFIX.
Status: ASSIGNED → RESOLVED
Closed: 15 years ago
Resolution: --- → WONTFIX
Whiteboard: mothballed
Updated•15 years ago
|
Component: Windows Mobile → General
QA Contact: mobile-windows → general
Hardware: ARM → All
You need to log in
before you can comment on or make changes to this bug.
Description
•