Theodoros Orfanidis
Theodoros Orfanidis
I just wanted to post this blog post about Gnome extensions: https://blogs.gnome.org/sri/2020/09/16/the-gnome-extensions-rebooted-initiative/ I'm hopeful something good will come out of it and help with maintaining Argos.
- This PR makes it compatible with older versions: https://github.com/mwilck/argos/pull/1 - This PR makes it compatible with 3.38 and 40: https://github.com/mwilck/argos/pull/2 - seems only the versions are added in the...
2.3.0 also has the same bug: ```ruby class SomeModel < ActiveRecord::Base ransack_alias :abc, :name_or_address_or_something_else end r = SomeModel.ransack({abc_cont: "xyz"}) r.abc_cont # => nil r.name_or_address_or_something_else_cont # => "xyz" ```
Also encountered this and it seems someone has already fixed this in their fork :point_up:.
You can simply stub the method: ``` ruby it "raises error when trying to create an existing space" do real_space = Space.new real_space.stub(:exists?, true) do -> { real_space.create }.must_raise SpaceAlreadyExistsError...
Yes, it's only under Wayland. See here for more info: https://wiki.gnome.org/HowDoI/HiDpi
To be honest, I don't know if that's possible. I can't seem to find a way to move the dash to another monitor without using your extension.
Right, that worked! The dash is displayed correctly at 1x scale when the low DPI monitor is the primary. If I use dash to dock to move it to the...