-
Notifications
You must be signed in to change notification settings - Fork 1.2k
update: chess_com_api, lichess_api, pgn_parser 1.0.1 #28416
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Ckaf
wants to merge
1
commit into
ocaml:master
Choose a base branch
from
Ckaf:pgn-parser-1.0.1
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Chess.com API client for chess games" | ||
description: | ||
"A client library for the Chess.com API that provides easy access to chess games, player data, tournament information, and daily puzzles. Supports fetching games in PGN format and extracting metadata." | ||
maintainer: ["ckaf [email protected]"] | ||
authors: ["ckaf [email protected]"] | ||
license: "MIT" | ||
tags: ["chess" "chess.com" "api" "http" "client" "games" "pgn"] | ||
homepage: "https://github.com/ckaf/pgn_parser" | ||
doc: "https://github.com/ckaf/pgn_parser" | ||
bug-reports: "https://github.com/ckaf/pgn_parser/issues" | ||
depends: [ | ||
"ocaml" {>= "4.14"} | ||
"dune" {>= "3.19" & >= "3.0"} | ||
"cohttp-lwt-unix" {>= "5.0"} | ||
"yojson" {>= "1.7"} | ||
"lwt" {>= "5.6"} | ||
"lwt_ppx" {>= "2.0"} | ||
"qcheck" {>= "0.21"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/ckaf/pgn_parser.git" | ||
x-maintenance-intent: ["(latest)"] | ||
available: arch != "arm32" & arch != "x86_32" | ||
|
||
url { | ||
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.1.tar.gz" | ||
checksum: "sha256=0e03803aea9793f32869130ef34f51f8b158a0a43bcd4cec6adb0072dcd39fd0" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Lichess API client for chess games" | ||
description: | ||
"A client library for the Lichess API that provides easy access to chess games, player data, and tournament information. Supports fetching games in PGN format and extracting metadata." | ||
maintainer: ["ckaf [email protected]"] | ||
authors: ["ckaf [email protected]"] | ||
license: "MIT" | ||
tags: ["chess" "lichess" "api" "http" "client" "games" "pgn"] | ||
homepage: "https://github.com/ckaf/pgn_parser" | ||
doc: "https://github.com/ckaf/pgn_parser" | ||
bug-reports: "https://github.com/ckaf/pgn_parser/issues" | ||
depends: [ | ||
"ocaml" {>= "4.14"} | ||
"dune" {>= "3.19" & >= "3.0"} | ||
"cohttp-lwt-unix" {>= "5.0"} | ||
"yojson" {>= "1.7"} | ||
"lwt" {>= "5.6"} | ||
"lwt_ppx" {>= "2.0"} | ||
"qcheck" {>= "0.21"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/ckaf/pgn_parser.git" | ||
x-maintenance-intent: ["(latest)"] | ||
available: arch != "arm32" & arch != "x86_32" | ||
|
||
Ckaf marked this conversation as resolved.
Show resolved
Hide resolved
|
||
url { | ||
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.1.tar.gz" | ||
checksum: "sha256=0e03803aea9793f32869130ef34f51f8b158a0a43bcd4cec6adb0072dcd39fd0" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "PGN (Portable Game Notation) parser for chess games" | ||
description: | ||
"A comprehensive PGN parser written in OCaml that supports parsing chess games from various sources including Lichess and Chess.com APIs. Features include board tracking, Zobrist hashing, property-based testing, and unfinished games support." | ||
maintainer: ["ckaf [email protected]"] | ||
authors: ["ckaf [email protected]"] | ||
license: "MIT" | ||
tags: [ | ||
"chess" | ||
"pgn" | ||
"parser" | ||
"lichess" | ||
"chess.com" | ||
"api" | ||
"testing" | ||
"zobrist" | ||
"board-tracking" | ||
"unfinished-games" | ||
] | ||
homepage: "https://github.com/ckaf/pgn_parser" | ||
doc: "https://github.com/ckaf/pgn_parser" | ||
bug-reports: "https://github.com/ckaf/pgn_parser/issues" | ||
depends: [ | ||
"ocaml" {>= "4.14"} | ||
"dune" {>= "3.19" & >= "3.0"} | ||
"qcheck" {>= "0.21"} | ||
"cohttp-lwt-unix" {>= "5.0"} | ||
"yojson" {>= "1.7"} | ||
"lwt" {>= "5.6"} | ||
"lwt_ppx" {>= "2.0"} | ||
"qcheck" {>= "0.21"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/ckaf/pgn_parser.git" | ||
x-maintenance-intent: ["(latest)"] | ||
available: arch != "arm32" & arch != "x86_32" | ||
|
||
url { | ||
src: "https://github.com/Ckaf/pgn_parser/archive/v1.0.1.tar.gz" | ||
checksum: "sha256=0e03803aea9793f32869130ef34f51f8b158a0a43bcd4cec6adb0072dcd39fd0" | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.