File tree 5 files changed +12
-16
lines changed
5 files changed +12
-16
lines changed Original file line number Diff line number Diff line change 1
1
# Contributing
2
2
3
3
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 ) .
5
5
6
6
# Fork
7
7
8
- Fork this project on Gitlab and clone your repository.
8
+ Fork this project on GitHub and clone your repository.
9
9
10
10
```
11
- git clone https://gitlab .com/username/libspng.git
11
+ git clone https://github .com/username/libspng.git
12
12
cd libspng
13
- git remote add upstream https://gitlab .com/randy408/libspng.git
13
+ git remote add upstream https://github .com/randy408/libspng.git
14
14
```
15
15
16
16
Create a debug build
@@ -47,10 +47,8 @@ Run the testuite
47
47
48
48
` ninja test `
49
49
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.
54
52
55
53
# Push
56
54
Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ spng_ctx_free(ctx);
24
24
```
25
25
26
26
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)
Original file line number Diff line number Diff line change 1
1
site_name : libspng v0.5.0
2
2
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/
6
4
site_description : libspng documentation
7
5
site_author : Randy
8
6
copyright : © 2018-2019, Randy
Original file line number Diff line number Diff line change @@ -1140,7 +1140,7 @@ static int read_chunks_before_idat(spng_ctx *ctx)
1140
1140
if (ctx -> file .iccp ) return SPNG_EDUP_ICCP ;
1141
1141
if (!chunk .length ) return SPNG_ECHUNK_SIZE ;
1142
1142
1143
- continue ; /* XXX: https://gitlab.com/randy408/libspng/issues/31 */
1143
+ continue ;
1144
1144
}
1145
1145
else if (!memcmp (chunk .type , type_sbit , 4 ))
1146
1146
{
@@ -1449,7 +1449,7 @@ static int read_chunks_before_idat(spng_ctx *ctx)
1449
1449
{
1450
1450
ctx -> file .text = 1 ;
1451
1451
1452
- continue ; /* XXX: https://gitlab.com/randy408/libspng/issues/31 */
1452
+ continue ;
1453
1453
}
1454
1454
else if (!memcmp (chunk .type , type_exif , 4 ))
1455
1455
{
@@ -1610,7 +1610,7 @@ static int read_chunks_after_idat(spng_ctx *ctx)
1610
1610
{
1611
1611
ctx -> file .text = 1 ;
1612
1612
1613
- continue ; /* XXX: https://gitlab.com/randy408/libspng/issues/31 */
1613
+ continue ;
1614
1614
}
1615
1615
}
1616
1616
Original file line number Diff line number Diff line change 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
2
2
3
3
test (' basi0g01' , test_exe, args : files (' basi0g01.png' ))
4
4
test (' basi0g02' , test_exe, args : files (' basi0g02.png' ))
You can’t perform that action at this time.
0 commit comments