Roman Chistokhodov

Results 73 issues of Roman Chistokhodov

If I pass the non-existing path as argument to `archiver.directory` it does not generate error and does not call error handler, but creates invalid zip file. I guess this happens...

Running this application with vibe-d 0.9.2 ```d import core.time; import vibe.core.file; import vibe.core.log; import vibe.core.task; import vibe.core.core; void main() { runTask({ auto watcher = watchDirectory("./test", false); while(true) { DirectoryChange[] changes;...

I took newton sources from [here](https://github.com/MADEAPPS/newton-dynamics) and built newton-3.14 on Linux but when run electronvolt with compiled libraries, it says ``` Missing Symbol NewtonConvexCollisionCalculateBuoyancyAcceleration Missing Symbol NewtonHeightFieldSetHorizontalDisplacement Missing Symbol NewtonBodyCalculateInverseDynamicsForce...

```d /// module module app; import std.stdio; version(D_Ddoc) { /// class SomeClass { /// this() {} } /// void someFunction() {} } void main() { writeln("Edit source/app.d to start your...

```d /// enum { First,/// Second /// } /// struct Struct { /// enum { First, /// Second /// } } ``` When I generate docs with `dub build -b...

For me it always was a page with blank Authors, Copyright and License sections. The only useful thing here is a link to actual module documentation. I think index.html does...

E.g. default.cfg has ``` bind UPARROW +forward bind w +forward ``` Xash3D seems to set the first bind only when "Use defaults" button is pressed.

bug

Note that in Valve repo the message printing is commented out https://github.com/ValveSoftware/halflife/blob/master/dlls/nodes.cpp#L1490 As a compromise we can still print it, but only in developer mode.

Change `IsXashFWGS` in cl_dll/cdll_int.cpp to always return false, in order to make sure that GoldSource style input is used for camera movement. `pfnSDL_GetRelativeMouseState` returns 0 for both x and y...