http://bugs.winehq.org/show_bug.cgi?id=59959 Bug ID: 59959 Summary: Minor correction to wiki content Product: WineHQ Gitlab Version: unspecified Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: minor Priority: P2 Component: gitlab-unknown Assignee: wine-bugs@list.winehq.org Reporter: matt.m.seng@gmail.com Distribution: --- Sorry if this isn't the right place to report; it was very unclear how one might contribute discourse regarding the wiki content. I just wanted to share that there is an omission in the code posted in the following page/section: https://gitlab.winehq.org/wine/wine/-/wikis/FAQ#how-do-i-associate-a-native-... The existing code block: ------------------------------------------------ [HKEY_CLASSES_ROOT\.pdf] @="PDFfile" "Content Type"="application/pdf" [HKEY_CLASSES_ROOT\PDFfile\Shell\Open\command] @="winebrowser \"%1\"" ------------------------------------------------ ... is not valid content for a properly-formatted .reg file, in the context of this documentation at least. A header defining the registry editor version is needed in order for the subsquently-documented commands to work. The following code block corrects this: ------------------------------------------------ Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\.pdf] @="PDFfile" "Content Type"="application/pdf" [HKEY_CLASSES_ROOT\PDFfile\Shell\Open\command] @="winebrowser \"%1\"" ------------------------------------------------ Regards, -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.