Hi Johan To edit your Info.plist, you can do the following:
1. Open Finder, and locate the Mnemosyne application (probably by going to the "Go" menu at the top, hitting Applications, and finding Mnemosyne) 2. Right click the Mnemosyne app, and click "Show Package Contents". 3. A window pops up. Open the "Contents" folder, and you'll see Info.plist. 4. I recommend copy-pasting the file to your Desktop as a backup before editing. 5. Open with TextEdit or something like that and you'll see a whole bunch of XML code. If you follow the pattern of keys and strings, it should be doable to edit it by hand inside text edit. Make sure you're in Plain Text mode: the way to do that is by opening the Format menu at the top. If it says "Make Rich Text" in the menu, you're good. If it says, "Make Plain Text", then select that item and TextEdit will convert the file to plain text mode for you. Then you'll be able to add another entry. Here's an example of one entry in my file right now: <key>CFBundleDisplayName</key> <string>Mnemosyne</string> That means it's setting the "CFBundleDIsplayName" key to have a value of "Mnemosyne". Looking at the link Peter provided, try copy-pasting these four lines into the file. Make sure it's BELOW the line that says "<dict><key>CFBundleIconFile</key>" and ABOVE the line that says "</dict>". <key>NSPrincipalClass</key> <string>NSApplication</string> <key>NSHighResolutionCapable</key> <string>True</string> If this works for you, please let me know and I'll include this addition in our build scripts so that in future versions you won't need to make this change. On Mon, Apr 3, 2017 at 7:16 AM Peter Bienstman <[email protected]> wrote: > Hi, > > > > I’m afraid not, as I don’t have a Mac. Also, I think our Mac packager does > not have a retina display. The suggestion about the Info.plist file came > from another user. > > > > Cheers, > > > > Peter > > > > *From:* [email protected] [mailto: > [email protected]] *On Behalf Of * > [email protected] > *Sent:* 03 April 2017 16:06 > *To:* mnemosyne-proj-users <[email protected]> > *Subject:* Re: [mnemosyne-proj-users] Mnemosyne on retina Macbook looks > grainy, low resolution > > > > > Hi Peter, > > I'm not sure where to change what. Could you tell me what to do? > > Thanks, > > Johan > > Op maandag 3 april 2017 09:05:55 UTC+2 schreef Peter Bienstman: > > Hi, > > > > You need to start Mnemosyne with the "--high-dpi-scaling" command line > option. > > > > Additionally, it seems you need to enable some other settings in the > Info.plist file as well (see http://doc.qt.io/qt-5/highdpi.html). > > > > Cheers, > > > > Peter > > > > *From:* [email protected] [mailto: > [email protected]] *On Behalf Of *[email protected] > *Sent:* 02 April 2017 22:16 > *To:* mnemosyne-proj-users <[email protected]> > *Subject:* [mnemosyne-proj-users] Mnemosyne on retina Macbook looks > grainy, low resolution > > > > I just got a retina Macbook and downloaded Mnemosyne again (coming from > Snow Leopard), but it looks grainy, as in: low resolution. Is this a common > thing on the newer Macs (or laptops with better screens), or did something > go wrong installing the program? > > -- > You received this message because you are subscribed to the Google Groups > "mnemosyne-proj-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/mnemosyne-proj-users/6897c45c-64d3-4c6b-9d66-1f75aea10a56%40googlegroups.com > <https://groups.google.com/d/msgid/mnemosyne-proj-users/6897c45c-64d3-4c6b-9d66-1f75aea10a56%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > > -- > You received this message because you are subscribed to the Google Groups > "mnemosyne-proj-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected] > . > To view this discussion on the web visit > https://groups.google.com/d/msgid/mnemosyne-proj-users/9b70ba1e-da8a-49ed-a44d-4079c86d55e3%40googlegroups.com > <https://groups.google.com/d/msgid/mnemosyne-proj-users/9b70ba1e-da8a-49ed-a44d-4079c86d55e3%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "mnemosyne-proj-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/mnemosyne-proj-users/CAKr60uMW0%2BK5DOQ7Jg-DKrds5aLhg6Zgy8R%3DXGyzSRUd0UyU8g%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
