Improve system settings disk usage analyzer
-
Cool. Just came across this thread. I do love to see that this part of system settings is being thougth of. I do very much like the ideas.
Just a quick comment on the last design: As @mymike already said, I too think it does not need to be a two step action. The clear button could be set inactive if no check box is checked.
And I guess the numbers only do not match because it is a mockup? Otherwise I would expect
app size + cache size + data size + config size = total size
. -
@potet said in Improve system settings disk usage analyzer:
Just a quick comment on the problem of short bars on relative graphs: Is this really a problem?
No, it isn't, you're right. Just a minor thing I noticed that 95% of the users won't...
When opening this setting I guess most users are interested in what is taking up space on their system, and the very short relative graphs is a great indication that "it's not this".
At least for me, that's much more valuable than the technical details about each app. And the graphs are a great way of making it clear, while the difference between 100 mb and 100 kb when written out is hard to grasp for most (non-tech) people.
Keep things simple! - Sometimes I forget about it lol...
-
@danfro said in Improve system settings disk usage analyzer:
Cool. Just came across this thread. I do love to see that this part of system settings is being thought of. I do very much like the ideas.
Thanks! I am glad people appreciate my work
Just a quick comment on the last design: As @mymike already said, I too think it does not need to be a two step action. The clear button could be set inactive if no check box is checked.
Sure
And I guess the numbers only do not match because it is a mockup? Otherwise I would expect
app size + cache size + data size + config size = total size
.Yeah, that one is just a mockup with random values Maybe I should make it more clear whether it's a mockup or running code...
-
@mymike It is not only the fresh new design. But being able to delete those items from system settings I would call a breakthrough. Definitely worth appreciation.
-
I managed to place correctly all the GUI bits to clear the app data. The actual erase will come next!
-
@mymike I'm late to the party but I wish only to say: great job Michele! I like very much how you designed the breakdown of stored data for each app; the idea of proportional bars and the data characterization by different colors is just brilliant. Thank you and keep up the good work
-
@matteo said in Improve system settings disk usage analyzer:
@mymike I'm late to the party
It's never too late
but I wish only to say: great job Michele! I like very much how you designed the breakdown of stored data for each app; the idea of proportional bars and the data characterization by different colors is just brilliant.
Well, tbh proportional bars are common in disk analyzer apps but I'm glad you like these features!
Thank you and keep up the good work
Sure
-
Confirmation dialog: the bullet list doesn't look that good, any idea to make it cooler? a single label is more complicated because I need to dynamically add the folders the user selected to remove, considering translation and commas too...
I also wanted to let the user uninstall an app. Do you think it make sense or there are already enough way to do it (Drawer and OpenStore)?
I was thinking that if the user selects the checkbox near app size, then the red button would change from "Clear" to "Uninstall". Eventually if other checkboxes are selected to it could be "Uninstall & Clear". But the checkbox way isn't very user-friendly, I guess... What about another button next to the clear one?
In the confirmation dialog I'd ask if the user wants to keep app data even if uninstalling it, remove every data or select which data need to be cleaned.
-
@mymike In my opinion, those features would be great. These are the things I've been planning to implement but never actually done them because I'm afraid of the C++ parts of settings app , Anyway, in my opinion with these features, it'll qualify for a standalone section in the setting app since it's already an app management page. I'm not sure though where to put it exactly but I'm thinking a separate page where you can also navigate to from the storage page. Then you can maybe also add app updates, although I think it's already planned to remove this feature from the update page so maybe it's not a good idea after all. But of course these entails a lot more effort
-
@kugiigi said in Improve system settings disk usage analyzer:
These are the things I've been planning to implement but never actually done them because I'm afraid of the C++ parts of settings app ,
Yeah, I was scared too at the beginning and it took me a while to understand more or less how it works...
Anyway, in my opinion with these features, it'll qualify for a standalone section in the setting app since it's already an app management page. I'm not sure though where to put it exactly but I'm thinking a separate page where you can also navigate to from the storage page.
Yeah, I was thinking about that too but I haven't done anything yet because first I want to implement all the features. moving the page can always be done later...
I think the best thing would be to put an icon in the main page (where?) and a link in the memory page.
In that page I'd put a similar header to the memory page with the bar showing installed, cache, config and data sizes so that you know what takes up more spaces. Putting these categories in the main bar in memory page is too much imho, as segments in the bar would be too little to see them clearly.Then you can maybe also add app updates, although I think it's already planned to remove this feature from the update page so maybe it's not a good idea after all. But of course these entails a lot more effort
Yeah, as the future of app updates in settings is unclear I wouldn't make work on that
-
@mymike UI ideas regarding uninstalling of app:
- option: use a list view's swipe action on the apps name to provide delete/uninstall [not obvious as with all list views, but standard list view behaviour]
- option: move the "clear" button to the left unterneath the tick boxes and have another uninstall button at the right hand side
Uninstall should always ask the user to clear all three folders. We do not wish this to happen per default, because sometimes you only want to remove the app to reinstall it but keep the data.
I would like to see an uninstall here together with the clear data options. OpenStore does not provide this and I think there should be one core place (that is not UTTT) where users can do this. I would rather reduce the other options if it does get too much.
-
@mymike Could you use a
Column(Layout)
with four labels? Then set visibility of the three labels depending on the users selection. Or a label and a column with the three options. Even a grid could be used for the dot/number column and the words column. Although then setting visibility is more difficult.Maybe use "... clear the following files?" instead of "folders"? Files is more general and maybe less scary ;-).
With "app" being a common word, maybe use that instead of the full "application"?
"Are you sure you wish to clear the following files:
x app configuration
x app data
x app cacheEdit: There was a "rule" about how to phrase questions. Wasn't it better instructing the user what to do? @CiberSheep
Press "proceed" to delete the following files:
x app configuration
x app data
x app cache
"Proceed"
"Cancel" -
@danfro said in Improve system settings disk usage analyzer:
Edit: There was a "rule" about how to phrase questions. Wasn't it better instructing the user what to do? @CiberSheep
Press "proceed" to delete the following files:
x app configuration
x app data
x app cache
"Proceed"
"Cancel"I think the idea is that the label on the button should reflect the action being taken. So in this case "Clear" instead of "OK", or "Proceed", as the latter two are too generic.
-
@danfro said in Improve system settings disk usage analyzer:
Maybe use "... clear the following files?" instead of "folders"? Files is more general and maybe less scary ;-).
With "app" being a common word, maybe use that instead of the full "application"?
done!
@mymike Could you use a
Column(Layout)
with four labels? Then set visibility of the three labels depending on the users selection. Or a label and a column with the three options. Even a grid could be used for the dot/number column and the words column. Although then setting visibility is more difficult.I did this when uninstalling an app, what about using checkboxes too when clearing only?
-
Also what do you think about this?
The idea is: if you order by app data size, then you can select app data from multiple app and clear them with one tap (I thought this could be useful when clearing the cache)
The user is still allowed to tap on an app, expand it and clear/uninstall only files relative to that app.
The global clear button at the bottom can be made visible only when at least one app is selected (through the checkbox on the right, obviously) and list next to the button the apps selected and a sum of the space that would be freed...
This is a mockup, I'd wait your feedback to implement this because you may say this isn't that useful and then we can skip this feature
-
@mymike
Not sure I understand your last idea.
You mean the user can select multiple apps, then tap the global "clear" button.
Now a popup shows which kind of data the user want to batch clear ? -
@AppLee said in Improve system settings disk usage analyzer:
You mean the user can select multiple apps, then tap the global "clear" button.
Yeah
Now a popup shows which kind of data the user want to batch clear ?
My idea was that the kind of data to clear correspond to the sorting the user chose, idk if an option to change it later make much sense: the user chose the app with in mind a precise kind of data, why should change it later? because he thought to select e.g. cache wile he was selecting config? Mmh, could be...
Instead of clearing kind of data depending on the sorting, we can add an additional selector at the top (maybe tabs, before the option selector for sorting) and let the user choose there what kind of data he's going to clear: a global tab where you expand apps and select only for that app what to clear and then a data tab, cache tab and config tab where you can't expand apps and there's only the checkbox on the right.
For this I think it's better to move everything related to apps in a dedicated page. -
@mymike said in Improve system settings disk usage analyzer:
My idea was that the kind of data to clear correspond to the sorting the user chose
Ok, I get it now.
Then I find it very interesting. But just to clarify the button needs to repeat the sorting info : "clear apps data", "clear cache" or "clear config"So the user has all the required information when acting on it.
-
@mymike I like the idea of a global/batch clear option. How about the following:
Longpresshold to enter multiselect state of list view. Then add a second "header" with the three clear options (cache, config, data) as checkboxes. Maybe have cache preselected when apps where sorted by cache.
Have an select all button (for the apps) in that header too as in other list views. The clear button then clears the selected data types for all selected apps.
So this is a global clear with intelligent preselection, rather than an single clear based on sorting.
-
@danfro Yeah, that could work. Even if I don't like much the long press to trigger it. If you don't know about it, it's hard to find...
But now that I think about it again: what about a table with a row for each app and in the row put appname+icon and the 3 values with a checkbox or a custom button that keeps the pressed state. in the table header you have the buttons to select a whole column (e.g. all the cache column)
This way the colored bars doesn't fit very well, the table needs to be quite compact