Kornelius

Results 16 issues of Kornelius

### This issue is unique. - [x] I have used the [search tool](https://github.com/ONLYOFFICE/DesktopEditors/issues?q=) and did not find an issue describing my bug. ### Operating System macOS 10.12 or higher ###...

Hey, this project is really good to get system information. However, currently, you can only get the same specific set of information about every operating system. The functions you use...

In #12, the default icon id has been changed from `1` to `32512`. I've written longer about my findings and experiments with icon IDs in this pull request, but **summarized**:...

The VarFileInfo block in a ResourceFile looks roughly like this: ```rc BLOCK "VarFileInfo" { VALUE "Translation", 0x409, 0x04b0 } ``` However, according to the [Microsoft documentation](https://learn.microsoft.com/en-us/windows/win32/menurc/varfileinfo) > [The block] typically...

Currently, only URLs explicitly including the web protocol (HTTPS or HTTP) in the beginning can be resolved in the extension player. Additionally, if the URL doesn't include the HTTPS or...

web

The hdiutils internet enable option has been removed in macOS 10.15. When you don't use `--no-internet-enable`, this creates the warning "hdiutil does not support internet-enable. Note it was removed in...

enhancement
help wanted

I added a dummy menu: ```rust fn create_menu() { let menu = Menu::with_items(&[ &Submenu::with_items( "", true, &[&MenuItem::new( "Menu item", true, Some(Accelerator::new(Some(Modifiers::SUPER), Code::KeyD)), )], ) .unwrap(), ]) .unwrap(); menu.init_for_nsapp(); } ```...

Hey, first of all, thanks for the project. I think it's really great to be able to easily create a cross platform menu bar, and I like the way this...

Currently the window size and the window position settings can only be set both at once inside one tuple. It would probably be a good if one could separate only...

Previously, `appimagetool` has expected a `.appdata.xml` file, although that format [has been deprecated](https://www.freedesktop.org/software/appstream/docs/sect-Metadata-Application.html) and `.metainfo.xml` should be used for new projects. This Pull Request fixes this issue. It adds support...