Skip to content

Commit 0998506

Browse files
committed
update links to repository
1 parent dce4eec commit 0998506

File tree

5 files changed

+12
-16
lines changed

5 files changed

+12
-16
lines changed

CONTRIBUTING.md

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Contributing
22

33
If you intend to make major changes you should let others know by creating a
4-
[new issue](https://gitlab.com/randy408/libspng/issues).
4+
[new issue](https://github.com/randy408/libspng/issues).
55

66
# Fork
77

8-
Fork this project on Gitlab and clone your repository.
8+
Fork this project on GitHub and clone your repository.
99

1010
```
11-
git clone https://gitlab.com/username/libspng.git
11+
git clone https://github.com/username/libspng.git
1212
cd libspng
13-
git remote add upstream https://gitlab.com/randy408/libspng.git
13+
git remote add upstream https://github.com/randy408/libspng.git
1414
```
1515

1616
Create a debug build
@@ -47,10 +47,8 @@ Run the testuite
4747

4848
`ninja test`
4949

50-
All tests should pass, some may fail from [known bugs](https://gitlab.com/randy408/libspng/issues?scope=all&utf8=%E2%9C%93&state=opened&label_name[]=bug).
51-
52-
Some runtime errors reported by ASan/UBSan do not fail a test but are considered
53-
bugs, check build/meson-logs/testlog.txt for any errors.
50+
All tests should pass, some runtime errors reported by ASan/UBSan do not fail
51+
a test but are considered bugs, check build/meson-logs/testlog.txt for any errors.
5452

5553
# Push
5654

docs/usage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ spng_ctx_free(ctx);
2424
```
2525
2626
27-
For a complete example see [example.c](https://gitlab.com/randy408/libspng/blob/v0.5.0/examples/example.c)
27+
For a complete example see [example.c](https://github.com/randy408/libspng/blob/v0.5.0/examples/example.c)

mkdocs.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
site_name: libspng v0.5.0
22
site_url: https://libspng.org/docs
3-
repo_url: https://gitlab.com/randy408/libspng/
4-
repo_name: GitLab
5-
edit_uri: blob/master/docs/
3+
repo_url: https://github.com/randy408/libspng/
64
site_description: libspng documentation
75
site_author: Randy
86
copyright: © 2018-2019, Randy

spng.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1140,7 +1140,7 @@ static int read_chunks_before_idat(spng_ctx *ctx)
11401140
if(ctx->file.iccp) return SPNG_EDUP_ICCP;
11411141
if(!chunk.length) return SPNG_ECHUNK_SIZE;
11421142

1143-
continue; /* XXX: https://gitlab.com/randy408/libspng/issues/31 */
1143+
continue;
11441144
}
11451145
else if(!memcmp(chunk.type, type_sbit, 4))
11461146
{
@@ -1449,7 +1449,7 @@ static int read_chunks_before_idat(spng_ctx *ctx)
14491449
{
14501450
ctx->file.text = 1;
14511451

1452-
continue; /* XXX: https://gitlab.com/randy408/libspng/issues/31 */
1452+
continue;
14531453
}
14541454
else if(!memcmp(chunk.type, type_exif, 4))
14551455
{
@@ -1610,7 +1610,7 @@ static int read_chunks_after_idat(spng_ctx *ctx)
16101610
{
16111611
ctx->file.text = 1;
16121612

1613-
continue; /* XXX: https://gitlab.com/randy408/libspng/issues/31 */
1613+
continue;
16141614
}
16151615
}
16161616

tests/images/meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Tests marked '#*' fail due to a libpng bug: https://gitlab.com/randy408/libspng/issues/5
1+
# Tests marked '#*' fail due to a libpng bug: https://github.com/randy408/libspng/issues/17
22

33
test('basi0g01', test_exe, args: files('basi0g01.png'))
44
test('basi0g02', test_exe, args: files('basi0g02.png'))

0 commit comments

Comments
 (0)