diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 93dccdf..267158c 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @maticnetwork/documentation +* @0xPolygonID/backend @0xPolygonID/core @0xPolygonID/frontend @0xPolygonID/mobile \ No newline at end of file diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index b6b8ccf..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,11 +0,0 @@ -## Describe your changes - -## Issue ticket number and link - -## Requirements - -- [] I have performed a self-review of my code -- [] `README.md` has been updated to reflect the changes in this PR -- [] Tests have been added/removed to the test suite to reflect code changes -- [] New and existing tests pass locally with my changes -- [] I will delete my branch after merging my PR to maintain good repo hygiene diff --git a/README.md b/README.md index 8fde621..03ee2f2 100755 --- a/README.md +++ b/README.md @@ -1,22 +1,21 @@

- +


- - - - - - - - - - + + + +
+ + + + +

Polygon ID Documentation is the documentation hub providing extensive documentation, community resources, and guides for enthusiasts and developers interested in learning about or building solutions using Polygon ID. @@ -40,20 +39,20 @@ Note that on macOS, you also need Xcode and Command Line Tools. 2. Clone your forked repo. ``` - git clone git@github.com:[your_github_handle]/id-docs + git clone git@github.com:[your_github_handle]/docs ``` 3. Navigate into the cloned folder. ``` - cd id-docs + cd docs ``` 4. Link your cloned repo to the upstream repo. > For help, see [GitHub Docs: Configuring a remote for a fork](https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/configuring-a-remote-for-a-fork). ``` - git remote add upstream https://github.com/0xPolygonID/id-docs + git remote add upstream https://github.com/0xPolygonID/docs ``` 5. If you have already cloned the repository, be sure to sync your fork with the latest changes. @@ -110,7 +109,7 @@ your PR. Note that you must have a GitHub account and an understanding of Markdo git push ``` -4. Submit a PR against the `main` branch of the `maticnetwork/id-docs` repo. +4. Submit a PR against the `main` branch of the `0xPolygonID/docs` repo. 5. Add a title to your PR with appropriate labels. > For example, if you want to suggest edits to the "Develop" page, name your PR: *update: develop.md*. @@ -158,7 +157,7 @@ Acceptable PRs will be approved & merged into the `main` branch. ## Submit an Issue -- Create a [new issue](https://github.com/0xPolygonID/id-docs/issues) to report a bug, request a feature, +- Create a [new issue](https://github.com/0xPolygonID/docs/issues) to report a bug, request a feature, or suggest changes. - Comment on the issue if you want to be assigned to it so [our team can assign the issue to you](https://github.blog/2019-06-25-assign-issues-to-issue-commenters/). diff --git a/docs/release-notes/r6.md b/docs/release-notes/r6.md index ff5d3ff..c3bad38 100644 --- a/docs/release-notes/r6.md +++ b/docs/release-notes/r6.md @@ -50,7 +50,7 @@ Reference verifier implementation, designed to be used as a starting point for p 7. Implement on-chain verifications ## Mobile App (2.2.9) - [(Android)](https://play.google.com/store/apps/details?id=com.polygonid.wallet) - [(iOS)](https://apps.apple.com/us/app/polygon-id/id1629870183) - + 1. Implemented refresh credential service 2. DisplayType 3. Support push notification for credential revocation diff --git a/docs/releases.md b/docs/releases.md index 366d1d1..700f320 100644 --- a/docs/releases.md +++ b/docs/releases.md @@ -15,7 +15,8 @@ keywords: ## Polygon ID latest releases -- Release 5 (November 2023): [Notes](/docs/release-notes/r5) | [Blog](https://polygon.technology/blog/polygon-id-release-5-boosting-credential-liquidity?utm_source=twitter&utm_medium=social&utm_content=id-r5-blog) +- Release 6 (February 2024): [Technical Release Notes](/docs/release-notes/r6) | [Blog Post](https://polygon.technology/blog/polygon-id-release-6-introducing-the-first-ever-implementation-of-dynamic-credentials) +- Release 5 (November 2023): [Technical Release Notes](/docs/release-notes/r5) | [Blog Post](https://polygon.technology/blog/polygon-id-release-5-boosting-credential-liquidity) - Release 4 (July 2023): [https://polygon.technology/blog/polygon-id-release-4-new-tools-seamless-integration](https://polygon.technology/blog/polygon-id-release-4-new-tools-seamless-integration) - Release 3 (March 2023): [https://polygon.technology/blog/introducing-polygon-id-zero-knowledge-own-your-identity-for-web3](https://polygon.technology/blog/introducing-polygon-id-zero-knowledge-own-your-identity-for-web3) diff --git a/docusaurus.config.js b/docusaurus.config.js index 9d3a9f0..f5313d0 100755 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -9,8 +9,8 @@ module.exports = { url: "https://devs.polygonid.com", baseUrl: "/", favicon: "/img/logo-round-purple.png", - organizationName: "maticnetwork", - projectName: "id-docs", + organizationName: "0xPolygonID", + projectName: "docs", trailingSlash: false, customFields: { description: "Build your next blockchain dApp using Polygon ID.", @@ -35,7 +35,7 @@ module.exports = { announcementBar: { id: "learn_more", content: - 'New Release: Credentials Marketplace, On-chain Issuer and Issuer Node Improvements Learn more Check our blog', + 'New Release: First-ever implementation of Dynamic Credentials! Learn more', backgroundColor: "#20232a", textColor: "#fff", isCloseable: false, @@ -78,8 +78,8 @@ module.exports = { hideOnScroll: true, logo: { alt: "Polygon logo", - src: "img/polygon-id.svg", - srcDark: "img/polygon-id.svg", + src: "img/polygon-id-logo-white.svg", + srcDark: "img/polygon-id-logo-white.svg", href: "/", target: "_self", }, @@ -208,7 +208,7 @@ module.exports = { docs: { routeBasePath: "/docs", sidebarPath: require.resolve("./sidebars.js"), - editUrl: "https://github.com/0xPolygonID/id-docs/blob/main", + editUrl: "https://github.com/0xPolygonID/docs/blob/main", path: "docs", showLastUpdateAuthor: true, showLastUpdateTime: true, diff --git a/package-lock.json b/package-lock.json index 7127025..1486906 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "id-docs", + "name": "docs", "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "id-docs", + "name": "docs", "version": "1.0.0", "dependencies": { "@docusaurus/core": "^2.4.3", diff --git a/package.json b/package.json index d80a34e..ed79112 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "id-docs", + "name": "docs", "version": "1.0.0", "private": true, "scripts": { diff --git a/src/data/content-data.js b/src/data/content-data.js index 501d209..314f5c4 100644 --- a/src/data/content-data.js +++ b/src/data/content-data.js @@ -164,22 +164,22 @@ export const contentData = { }, events: [ { - name: "DIF Hackathon", - info: "October 26 - December 1, 2023", - description: "Online", - link: "https://difhackathon.devpost.com/", + name: "EthGlobal Brussels", + info: "June 12 - 14, 2024", + description: "Brussels, Belgium", + link: "https://ethglobal.com/events/brussels", }, { - name: "ETHGlobal Istanbul", - info: "November 17–19, 2023", - description: "Istanbul, Turkey", - link: "https://ethglobal.com/events/istanbul", + name: "EthGlobal Bangkok", + info: "November 15 - 17, 2024", + description: "Bangkok, Thailand", + link: "https://ethglobal.com/events/bangkok", }, { - name: "ETHSingapore", - info: "September 10-12, 2023", - description: "Singapore", - link: "https://www.ethereumsingapore.com/", + name: "EthIndia", + info: "TBD, 2024", + description: "TBD", + link: "https://ethindia.co/", }, ], }, diff --git a/static/img/polygon-id.svg b/static/img/polygon-id-logo-white.svg similarity index 100% rename from static/img/polygon-id.svg rename to static/img/polygon-id-logo-white.svg diff --git a/static/img/polygon-id-logo.svg b/static/img/polygon-id-logo.svg new file mode 100644 index 0000000..16a49be --- /dev/null +++ b/static/img/polygon-id-logo.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file