Activity for Matthew

  • Matthew Matthew committed [362440] on GIFLIB - Code

    Fix typo reported at https://sourceforge.net/p/giflib/bugs/139

  • Matthew Matthew committed [d70f2f] on GIFLIB - Code

    Typos: "0 it 255" -> "0 to 255", "let's us know" -> "lets us know"

  • Matthew Matthew committed [fa7b83] on GIFLIB - Code

    A few more minor fixes (it's -> its, sting -> string)

  • Matthew Matthew committed [1286aa] on GIFLIB - Code

    Fix minor typos/spelling errors

  • Matthew Matthew committed [53f1c0] on GIFLIB - Code

    Minor function/parameter name fixups

  • Matthew Matthew committed [e41130] on GIFLIB - Code

    GIF89a.html - Replace Unicode chars with HTML entities

  • Matthew Matthew committed [bfb3b7] on GIFLIB - Code

    Fix typo reported at https://sourceforge.net/p/giflib/bugs/139

  • Matthew Matthew committed [e1b9c2] on GIFLIB - Code

    Typos: "0 it 255" -> "0 to 255", "let's us know" -> "lets us know"

  • Matthew Matthew committed [f3d8a7] on GIFLIB - Code

    A few more minor fixes (it's -> its, sting -> string)

  • Matthew Matthew committed [5db8b4] on GIFLIB - Code

    Fix minor typos/spelling errors

  • Matthew Matthew committed [1d3c50] on GIFLIB - Code

    Minor function/parameter name fixups

  • Matthew Matthew committed [03eca0] on GIFLIB - Code

    GIF89a.html - Replace Unicode chars with HTML entities

  • Matthew Matthew posted a comment on ticket #152

    Just to clarify: if "iff" was wrong there, was that because of a typo or because of a logic mistake? If colors from ColorIn2 did exist before, could they still be copied? If the file size is not bigger than specified, could it save into the file?

  • Matthew Matthew posted a comment on ticket #139

    Hi Eric. Glad to hear that you are feeling better after being ill. (I saw you posted about it, although I can't now find those posts again. I find SourceForge a bit confusing nowadays.) I noticed your fixes in d565f and 865b8. It now says 010, but I think it should be 100, which is the last three digits of 8C (10001100), and is 4 in binary.

  • Matthew Matthew committed [0a2dc2]

    GIF89a.html - Replace Unicode chars with HTML entities

  • Matthew Matthew committed [c02eb8]

    Fix doc/whatsinagif content

  • Matthew Matthew committed [c38301]

    Minor function/parameter name fixups

  • Matthew Matthew committed [f01dd0]

    Fix typos reported by edouard (https://sourceforge.net/u/delbaredouard/):

  • Matthew Matthew committed [37429d]

    A few more minor fixes (it's -> its, sting -> string)

  • Matthew Matthew committed [484fb4]

    Fix minor typos/spelling errors

  • Matthew Matthew committed [358452]

    Do not modify pixels in EGifPutLine or EGifPutPixel.

  • Matthew Matthew committed [5b3111]

    Show warnings when counter variable in FOR loop cannot exceed the constant limit value

  • Matthew Matthew committed [12e0d5]

    tests/string/format.bas: add a few more date/time test cases

  • Matthew Matthew committed [8619d6]

    str_format.c: Remove complicated scaling logic for exponential format - just scale to the number of fix digits.

  • Matthew Matthew committed [99c4b2]

    tests/string/format.bas - DRY up test cases

  • Matthew Matthew committed [18bcc7]

    str_format.c: use tabs for scope indentation

  • Matthew Matthew committed [9ab565]

    str_format.c - comments to document current mantissa scaling behaviour (before I significantly simplify it)

  • Matthew Matthew committed [3743ad]

    str_format.c: Fix for #92: exponent for 0.0 should always be 0

  • Matthew Matthew modified a comment on merge request #10

    Hmm, that didn't seem to work properly... You should be able to see the branch at https://github.com/countingpine/giflib/compare/docfixes (Or maybe at https://sourceforge.net/u/counting_pine/giflib/ci/docfixes/tree/, if SourceForge sorts itself out...)

  • Matthew Matthew posted a comment on ticket #139

    Hi, I've included a fix for this (and your other reports) in my merge request at https://sourceforge.net/p/giflib/code/merge-requests/10/. 110 is of course 6, so I wondered which number was wrong, but looking at the context it seems clear that it refers to the last three bits of 8C, which is 100.

  • Matthew Matthew posted a comment on merge request #10

    I've also added fixes for edouard's typo reports: https://sourceforge.net/p/giflib/bugs/139/ https://sourceforge.net/p/giflib/bugs/140/ https://sourceforge.net/p/giflib/bugs/141/

  • Matthew Matthew posted a comment on merge request #10

    Hmm, that didn't seem to work properly... You should be able to see the branch at https://github.com/countingpine/giflib/compare/docfixes

  • Matthew Matthew created merge request #10

  • Matthew Matthew posted a comment on ticket #896

    So as concluded on the forum, the problem is actually line overdraw with the box - the corners are drawn twice, changing their value - and the Point chosen for the border colour is on the corner. If e.g. Point(100,101) is chosen, the fill stops at the border colour as expected.

  • Matthew Matthew committed [c43ff9]

    Fix two WINDOW scaling problems (GitHub Issue #113):

  • Matthew Matthew committed [f6cdf6]

    rtlib: missed some more warnings

  • Matthew Matthew committed [1ddeba]

    Missed some implicit-fallthrough warnings in rtlib

  • Matthew Matthew committed [0f9244]

    rtlib: fix more warnings

  • Matthew Matthew committed [fe3750]

    rtlib: dos: fix gcc warning

  • Matthew Matthew committed [5400a9]

    gfxlib: prevent a warning on sprintf(), where GCC is not clever enough to know the int value can only be two digits.

  • Matthew Matthew committed [6e0856]

    gfxlib: fix implicit-fallthrough warnings

  • Matthew Matthew committed [827188]

    rtlib: fix implicit-fallthrough warnings

  • Matthew Matthew committed [5e4d2d]

    gfxlib: fix gcc warning and simplify WM_SIZE fall though

  • Matthew Matthew committed [cd6d0a]

    rtlib: fix GCC potential sprintf overflow warning:

  • Matthew Matthew committed [54d448]

    gfxlib: win32: move posting of EVENT_MOUSE_EXIT event in to ToggleFullScreen

  • Matthew Matthew posted a comment on ticket #826

    It looks like code was added that should have prevented this in 86b5e41 (2015). I think the code in https://sourceforge.net/p/fbc/code/ci/86b5e41de85ee9ff0b2b1bbe041f37d394eba78b/tree/src/compiler/symb-data.bas#l110 that builds symb_dtypeMatchTB() just needs fixing to start at FB_DATATYPE_BOOLEAN instead of FB_DATATYPE_BYTE.

  • Matthew Matthew created ticket #863

    IIF returns an Lvalue when the condition is constant

  • Matthew Matthew posted a comment on ticket #852

    I'm not sure this is a bug. I would expect Integer division ('a \ 0') and Integer modulo ('a MOD 0') to behave in a similar way. There is no valid value that can be returned. On the other hand, Float division by 0 ('a / 0.0') commonly returns infinity in many languages, because the floating-point standard allows for +/-infinity. (Although '0.0 / 0.0' returns something different again, typically something like NaN, which can also be stored in a float.) Assigning infinity or NaN back to an Integer...

  • Matthew Matthew modified ticket #849

    'Randomize , 5' produces a poor distribution of numbers

  • Matthew Matthew created ticket #849

    'Randomize , 5' produces a poor distribution of numbers

  • Matthew Matthew created ticket #841

    Inconsistency: negation may return different signedness for constants

  • Matthew Matthew committed [69fd62]

    Fix minor typo: 'indepedent'->'independent'

  • Matthew Matthew modified ticket #741

    incorrect-fsf-address

  • Matthew Matthew posted a comment on ticket #741

    Fixed in [8e760f], thanks. The change affects files in paths contrib/, doc/, inc/,...

  • Matthew Matthew committed [8e760f]

    Bug #741: The Free Software Foundation's addres...

  • Matthew Matthew posted a comment on ticket #741

    It looks like the Free Software Foundation's address has changed from '59 Temple...

  • Matthew Matthew created ticket #783

    Numbers > 2^63 not always converting correctly to ulongint

  • Matthew Matthew committed [358e25]

    Print Using:

  • Matthew Matthew committed [6a3303]

    Make PRINT USING "&" with Booleans print "true"...

  • Matthew Matthew committed [cb76ca]

    relative ops containing boolean return boolean,...

  • Matthew Matthew committed [50ab05]

    boolean branch: fixed hConvertBoolToString - AS...

  • Matthew Matthew committed [c28f9b]

    Fix bool32 position in dtypeName() array in ir-...

  • Matthew Matthew committed [94fe67]

    v0_20-boolean: added boolean data type (W.I.P.)

  • Matthew Matthew committed [a779ba]

    boolean - fix order in min/max limit table

  • Matthew Matthew created ticket #772

    Types with same name in different namespaces compare as equal

  • Matthew Matthew created ticket #6817

    maniac-v1: Characters are drawn one pixel too high

  • Matthew Matthew modified ticket #765

    DBL_MAX evaluates to #INF

  • Matthew Matthew posted a comment on ticket #765

    Fixed in [737315]. Both FLT_MAX and DBL_MAX were one digit too short.

  • Matthew Matthew committed [737315]

    #765: Fix precision on FLT_MAX / DBL_MAX

  • Matthew Matthew posted a comment on ticket #765

    ...2316 is too high (I think 2^1024 is ...23159). ...2315 is too low (I think there...

  • Matthew Matthew committed [72dd46]

    Typo: priviledges->privileges

  • Matthew Matthew committed [f616c4]

    Fix LINE bug added in recent commit.

  • Matthew Matthew committed [b91483]

    Forgot this rename in last commit

  • Matthew Matthew committed [7b5946]

    Disallow unknown BMP header sizes, to prevent t...

  • Matthew Matthew committed [057652]

    Disallow commas/newlines after SPC/TAB

  • Matthew Matthew posted a comment on ticket #751

    Actually the lexer uses fbGetGtInParensOnly( ) to prevent mis-parsing '>=' in e.g....

  • Matthew Matthew committed [c0b5f4]

    Fix: BLOAD was silently misreading bitfields fo...

  • Matthew Matthew posted a comment on ticket #751

    It also happens with >: dim i as integer<iif(1 > 0, 32, 32)> The simplest solution...

  • Matthew Matthew modified ticket #723

    Bug in gfxlib's line statement

  • Matthew Matthew posted a comment on ticket #723

    I've reimplemented the clipping code in [870ed1], and learned quite a bit about Bresenham's...

  • Matthew Matthew committed [870ed1]

    #723: fix line clipping so it doesn't affect wh...

  • Matthew Matthew posted a comment on ticket #88

    Note: the fix was made in [44b11c].

  • Matthew Matthew modified a comment on ticket #102

    Note: fix was made in [5a641e]

  • Matthew Matthew modified a comment on ticket #93

    FWIW: The changes to Screen 0 were made in [44b11c]/[cfb8e8].

  • Matthew Matthew posted a comment on ticket #102

    Note: fix was made in [44b11c]

  • Matthew Matthew posted a comment on ticket #93

    FWIW: The change to Screen 0 was made in [44b11c]

  • Matthew Matthew modified ticket #687

    DRAW doesn't remember subpixel positions

  • Matthew Matthew posted a comment on ticket #687

    The regression was caused partly by the inefficient way DRAW drew such lines, and...

  • Matthew Matthew modified ticket #478

    Draw's paint function is slightly offset

  • Matthew Matthew posted a comment on ticket #478

    Fixed in [e39293]

  • Matthew Matthew committed [d75569]

    rtlib/gfxlib2: Use CINT() macro for rounding to...

  • Matthew Matthew committed [e39293]

    Draw: ensure clean diagonal lines

  • Matthew Matthew created ticket #745

    Printing in small screens affects printing in large screens

  • Matthew Matthew posted a comment on ticket #744

    The bug appears with commit [b1beb2] - Fix self-assignment type mismatch detection...

  • Matthew Matthew committed [e1e9e0]

    "alphabetic order" -> "alphabetical order"

  • Matthew Matthew committed [6ad525]

    Fix optimisation unit tests that had problems i...

  • Matthew Matthew committed [de854d]

    -gen gcc: emit all floating-point constants in ...

  • Matthew Matthew committed [9e4900]

    Unit tests: allow GEN as make parameter on cuni...

  • Matthew Matthew committed [19bf6c]

    -gen gcc: emit single-precision constants at Do...

  • Matthew Matthew committed [2acdb7]

    Format(): Fix rounding-up to next power of 10.

1 >
MongoDB Logo MongoDB