Results 11 issues of Max

I noticed that in a module with angular-deckgrid as a dependency, all hash links (e.g. `Link`) got prefixed by a slash. so instead of getting `example.com/page#hash`, I got `example.com/page/#/hash` when...

I've been thinking about building a music app with Electron for a while since I'm really missing a player that has waveform seek bars on MacOS (like the ultimate music...

enhancement
discussion

### Detailed steps on how to reproduce the bug 1. create a new plugin with a basic JUCE slider and a button that resizes the plugin window via `setSize()` 2....

the library is growing in complexity and tests are becoming increasingly relevant.

help wanted

`setPageTargeting` is a bit misleading. this could be documented also!

trigger `WindowEvent::Focused` and `WindowEvent::Unfocused` events when the plugin window gains/loses focus. implemented by adding observers to `NSNotificationCenter::defaultCenter()` that listen to `NSWindowDidBecomeKeyNotification` and `NSWindowDidResignKeyNotification` notifications on the `NSViews`' window. tested and...

[the NSView's keyDown/keyUp methods](https://github.com/RustAudio/baseview/blob/master/src/macos/view.rs#L190-L191) are never getting called in Reaper when there's keyboard input with the plugin window in focus. neither turning on "Send all keyboard input to plugin" or...

first of all, thank you for this fork! I just noticed that on Android it scrolls like a normal ScrollView without snapping to the views, have you noticed this? here's...

would it be possible to autocomplete paths in the same way that CMD+P works? i.e. by fuzzy searching for files in the current project and not having to know the...

previously, calling `window.focus()` would cause a crash in some scenarios, because certain members of `WindowState` were borrowed mutably while already being borrowed. this PR fixes the issue by deferring window...