| Summary: | Add info about Jumbo sheets status into About dialog | ||
|---|---|---|---|
| Product: | LibreOffice | Reporter: | Roman Kuznetsov <79045_79045> |
| Component: | UI | Assignee: | Dipanshu Garg <dipanshu> |
| Status: | VERIFIED FIXED | ||
| Severity: | enhancement | CC: | heiko.tietze, himajin100000, mikekaganski, noelgrandin, telesto, xiscofauli |
| Priority: | medium | Keywords: | difficultyBeginner, easyHack, skillCpp, topicQA |
| Version: | 7.1.0.0.alpha0+ | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | target:7.2.0 | ||
| Crash report or crash signature: | Regression By: | ||
| Bug Depends on: | |||
| Bug Blocks: | 103202 | ||
| Attachments: | Example mockup | ||
|
Description
Roman Kuznetsov
2020-10-26 21:29:38 UTC
Mike, Noel, Xisco, Heiko what do you think? Created attachment 166747 [details]
Example mockup
LGTM.
Possibly we need a new line on that dialog, something like:
Experimental Features: xx, yy, zzz
to make it obvious that some experimental features are enabled, and which ones
(In reply to Noel Grandin from comment #3) > Possibly we need a new line on that dialog, something like: > > Experimental Features: xx, yy, zzz Do we actually have a list of current experimental features? IIUC we only have a flag allowing all the features, and each dev checks it in places where their features decide if they should work or not? There is a flag for jumbo sheets, but possibly not other experimental features (In reply to Noel Grandin from comment #5) Ah! Good to know. Slightly inconsistent (usually experimental features are enabled on Options->[ProductName]->Advanced->[x] Enable experimental features (may be unstable)), but definitely provides necessary fine-tune control for this most experimental of all experimental features :-) Please don't add more things to the UI. The copy button / HandleClick method compiles its own text and takes data per GetMiscString(); we could the Jumbo info there. But of course some kind of GetExperimental() below would be easier to spot. I like this idea. Code pointer:
cui/source/dialogs/about.cxx
OUString AboutDialog::GetMiscString()
...
aCalcMode += "threaded";
}
add
if (officecfg::Office::Calc::Defaults::Sheet::JumboSheets::get())
{
if (!aCalcMode.endsWith(" "))
aCalcMode += " ";
aCalcMode += "Jumbo";
}
(this shows for example "Calc: threaded Jumbo", if enabled)
Hi, I would like to work on this bug. (This is my first bug.) dipanshu124 committed a patch related to this issue. It has been pushed to "master": https://git.libreoffice.org/core/commit/427deae27d91cb9be0bf1889e2b8b79480adcc35 tdf#137779 Add info about Jumbo sheets status into About dialog It will be available in 7.2.0. The patch should be included in the daily builds available at https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: https://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback. verified in Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community Build ID: 2c8ffa41ec8e1ab2af95d5e033a445c17d29cf5a CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win Locale: ru-RU (ru_RU); UI: ru-RU Calc: threaded Jumbo |