Libre Office tips

How do I open all past already shown LibreOffice tips or at least their list ?
I’m not sure which tag should I give to this question.

@max2, I can’t find the file where they are stored. But you could see many tips at the bottom of the official LibreOffice page.

Also, choosing menu Help - Show Tip-of-the-Day you will see the last tip displayed.

I can’t find the file where they are stored

They are not stored in a file but hard-coded into the program - see tipoftheday.hrc (revision 03cafc2a) - OpenGrok cross reference for /core/cui/inc/tipoftheday.hrc

@anon73440385, I think that this is the best answer.

Hello,

1) Shown tips-of-the-day are added to file registrimodifications.xcu within your user profile (which is a XML file) - but the info does not simply translate to what has been displayed to you.

Example

<item oor:path="/org.openoffice.Office.Common/Misc">
    <prop oor:name="LastTipOfTheDayID" oor:op="fuse">
        <value>1</value>    
    </prop> 
</item> 
 <item oor:path="/org.openoffice.Office.Common/Misc">
    <prop oor:name="LastTipOfTheDayShown" oor:op="fuse">
       <value>18457</value>
    </prop> 
</item>

2) There is no file containing a list of available Tips-of-the-day. These are hard-coded into the program. See tipoftheday.hrc (revision 03cafc2a) - OpenGrok cross reference for /core/cui/inc/tipoftheday.hrc. If you have a language pack installed, then there is a file at <installdir>/program/resource/<langcode>/LC_MESSAGES/cui.mo which contains translations of the hard-coded tips-of- the-day into your language (+many other translations). On Linux: msgunfmt cui.mo will uncompile the binary file to readable (.po) format.