Results 73 issues of OvermindDL1

The project could use a set of instructions for how to build for android distribution, preferably also statically link into the love2d binary itself.

enhancement
help wanted

### Environment * Elixir version (elixir -v): OTP21 Elixir 1.8.0 * Arc version (mix deps): 0.11.0 * Arc dependencies when applicable (mix deps): `arc_ecto` is 0.11.1 * Operating system: RedHat...

### Environment * Elixir version (elixir -v): ```elixir Erlang/OTP 21 [erts-10.2.1] [source] [64-bit] [smp:2:2] [ds:2:2:10] [async-threads:1] [hipe] Elixir 1.8.0 (compiled with Erlang/OTP 21) ``` * Arc version (mix deps): `arc...

For the given code: ```elixir def changeset(struct, params \\ %{}) do struct |> cast(params, [:id, :type, :data, :removed_at]) |> cast_attachments(params, [:file_id]) |> validate_required([:id, :type, :file_id]) end ``` The `cast_attachments(params, [:file_id])`...

On the manual it states: > Boost: it's supported by a separate module called boost-lib, that manages Boost dependencies, downloads and installs appropriate Boost versions from Github, and compiles its...

Unable to overwrite constructor on defdata inside defsum. Precisely that, as from the examples with an overwrite added as per the `defdata` section: ```elixir defmodule Pet do defsum do defdata...

Right now the internal representation of prod/sum types are structs, however these are not as efficiently matched in the BEAM as raw tuples are (especially since OTP 20 made matching...

It would be nice to also generate a case macro for a sum type that can validate that all options are tested for (so if we extend it later we...

The error code the program returns appears to always be 0, even in the case of fault. An example session: ```sh ╰─➤ mdlt 'x' 'x' Improper format. Usage: mdlt [operation]...

Synapse currently defines these buttons of: ``` SYNAPSE_PHYSBUT_LEFT = 0x01, /* Left button */ SYNAPSE_PHYSBUT_RIGHT, /* Right button */ SYNAPSE_PHYSBUT_MIDDLE, /* Middle button */ SYNAPSE_PHYSBUT_LFRONT, /* Left side, front button...

feature request
need developer