Skip to content

Commit

Permalink
Merge pull request #1 from processing/main
Browse files Browse the repository at this point in the history
Merge 'main' branch of processing/p5.js to rt1301/p5.js
  • Loading branch information
rt1301 authored Feb 17, 2021
2 parents a561af7 + bb4ba44 commit a82db0f
Show file tree
Hide file tree
Showing 39 changed files with 1,471 additions and 640 deletions.
136 changes: 136 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -2247,9 +2247,145 @@
"name": "Rishabh Taparia",
"avatar_url": "https://avatars0.githubusercontent.com/u/63252510?v=4",
"profile": "https://github.com/rt1301",
"contributions": [
"code",
"doc"
]
},
{
"login": "dansarno",
"name": "Daniel Sarno",
"avatar_url": "https://avatars0.githubusercontent.com/u/48413743?v=4",
"profile": "https://github.com/dansarno",
"contributions": [
"example"
]
},
{
"login": "KKVANONYMOUS",
"name": "Kunal Kumar Verma",
"avatar_url": "https://avatars3.githubusercontent.com/u/58628586?v=4",
"profile": "https://kkvanonymous.github.io/",
"contributions": [
"doc",
"bug",
"code"
]
},
{
"login": "BharathKumarRavichandran",
"name": "Bharath Kumar R",
"avatar_url": "https://avatars2.githubusercontent.com/u/16106573?v=4",
"profile": "http://bharathkumarravichandran.github.io",
"contributions": [
"code"
]
},
{
"login": "TraXIcoN",
"name": "Aditya Mohan",
"avatar_url": "https://avatars2.githubusercontent.com/u/54040096?v=4",
"profile": "https://www.linkedin.com/in/aditya-mohan-b1ba7a182/",
"contributions": [
"code"
]
},
{
"login": "covalentbond",
"name": "Arijit Kundu",
"avatar_url": "https://avatars1.githubusercontent.com/u/53327173?v=4",
"profile": "https://www.linkedin.com/in/arijit-kundu/",
"contributions": [
"bug",
"code",
"doc"
]
},
{
"login": "tannerdolby",
"name": "Tanner Dolby",
"avatar_url": "https://avatars3.githubusercontent.com/u/48612525?v=4",
"profile": "https://tannerdolby.com",
"contributions": [
"code"
]
},
{
"login": "samdelong",
"name": "sam delong",
"avatar_url": "https://avatars0.githubusercontent.com/u/20839292?v=4",
"profile": "https://samdelong.com",
"contributions": [
"code"
]
},
{
"login": "archtaurus",
"name": "Zhao Xin",
"avatar_url": "https://avatars0.githubusercontent.com/u/1265068?v=4",
"profile": "https://www.haoohaoo.com",
"contributions": [
"code",
"review"
]
},
{
"login": "siv2r",
"name": "Sivaram D",
"avatar_url": "https://avatars3.githubusercontent.com/u/56887198?v=4",
"profile": "https://github.com/siv2r",
"contributions": [
"doc",
"code"
]
},
{
"login": "frappelatte28",
"name": "Pragya",
"avatar_url": "https://avatars0.githubusercontent.com/u/64382399?v=4",
"profile": "https://github.com/frappelatte28",
"contributions": [
"code"
]
},
{
"login": "myselfhimself",
"name": "Jonathan-David Schröder",
"avatar_url": "https://avatars.githubusercontent.com/u/1265346?v=4",
"profile": "https://github.com/myselfhimself",
"contributions": [
"ideas",
"code"
]
},
{
"login": "ShenpaiSharma",
"name": "Shubham Kumar",
"avatar_url": "https://avatars.githubusercontent.com/u/47415702?v=4",
"profile": "https://github.com/ShenpaiSharma",
"contributions": [
"code"
]
},
{
"login": "nakednous",
"name": "Jean Pierre Charalambos",
"avatar_url": "https://avatars.githubusercontent.com/u/645599?&v=4",
"profile": "https://github.com/nakednous",
"contributions": [
"code",
"tool"
]
},
{
"login": "satyasaibhushan",
"name": "Sai Bhushan",
"avatar_url": "https://avatars.githubusercontent.com/u/40578313?v=4",
"profile": "https://github.com/satyasaibhushan",
"contributions": [
"code",
"doc"
]
}
],
"repoType": "github",
Expand Down
747 changes: 384 additions & 363 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion contributor_docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Here is a quick summary of code style rules. Please note that this list may be i

* Comment your code whenever there is ambiguity or complexity in the function you are writing

* See the [Mozilla JS practices](https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Coding_Style#JavaScript_practices) as a useful guide for more styling tips
* See the [Mozilla JS practices](https://firefox-source-docs.mozilla.org/code-quality/coding-style/index.html) as a useful guide for more styling tips



Expand Down
4 changes: 2 additions & 2 deletions contributor_docs/friendly_error_system.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function setup() {
}
/*
FES will show:
p5.js says: It seems that you may have accidently written "colour" instead of "color" (on line 2 in sketch.js [http://localhost:8000/lib/empty-example/sketch.js:2:3]).
p5.js says: It seems that you may have accidentally written "colour" instead of "color" (on line 2 in sketch.js [http://localhost:8000/lib/empty-example/sketch.js:2:3]).
Please correct it to color if you wish to use the function from p5.js (http://p5js.org/reference/#/p5/color)
*/
Expand All @@ -146,7 +146,7 @@ function preLoad() {
}
/*
FES will show:
p5.js says: It seems that you may have accidently written preLoad instead of preload.
p5.js says: It seems that you may have accidentally written preLoad instead of preload.
Please correct it if it's not intentional. (http://p5js.org/reference/#/p5/preload)
*/
Expand Down
40 changes: 40 additions & 0 deletions contributor_docs/hi/access.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# एक्सेस पर हमारा ध्यान

[२०१ ९ के योगदानकर्ताओं के सम्मेलन](https://p5js.org/community/contributors-conference-2019.html) में, हमने पहुंच को बढ़ाने के लिए केवल p5.js में सुविधाओं को जोड़ने के लिए एक प्रतिबद्धता बनाई (जिसका अर्थ है समावेश / और / पहुंच क्षमता) । इसका अर्थ है विविधता के वैक्टर (जैसे लिंग, सामाजिक, आर्थिक, नस्ल, जातीयता, भाषा, विकलांगता, आदि) पर विचार करना जो पहुंच / भागीदारी को प्रभावित कर सकता है; और बाधाओं को स्वीकार, विघटित करने और रोकने के लिए कार्रवाई कर रहा है। हम p5.js. के साथ अधिक विशेषाधिकार प्राप्त समूहों के निरंतर आराम से अधिक ऐतिहासिक रूप से हाशिए वाले समूहों की आवश्यकताओं को प्राथमिकता देते हैं।

हम उन सुविधा अनुरोधों को स्वीकार नहीं करेंगे जो पहुंच बढ़ाने के हमारे प्रयास का समर्थन नहीं करते हैं। आप इस मानदंड को हमारे मुद्दे में परिलक्षित देखेंगे और अनुरोध टेम्पलेट खींचेंगे।

यह p5.js. के भीतर पहुंच और समावेश के बारे में चल रही बातचीत का हिस्सा है इन मूल मूल्यों को धारण करने की हमारी मंशा जिससे p5.js बनाया गया है, हमारे [कम्युनिटी स्टेटमेट](.../CODE_OF_CONDUCT.md) में बनाया गया है, जिसे [2015 कॉन्ट्रिब्यूटर्स](https://p5js.org/community/contributors-conference-2015.htmltml)

**कृपया इसे एक प्रारंभिक बिंदु माने** हम इस बारे में अधिक बातचीत को आमंत्रित करना चाहते हैं कि पहुँच का क्या अर्थ है और हम इसे कैसे प्राथमिकता दे सकते हैं।

## तरह की पहुँच

बढ़ती पहुंच p5.js समुदाय के लोगों की कच्ची संख्या के विस्तार पर केंद्रित नहीं है। यह p5.js को उपलब्ध कराने और उन लोगों के लिए स्वीकार्य करने पर ध्यान केंद्रित करता है, जिन्हें p5.js समुदाय (जानबूझकर या नहीं) और समान उपकरण और समुदायों से बाहर रखा गया है।

यहां पहुंच का मतलब है कि p5.js को इसके लिए बेहतर बनाना:

- जो लोग अंग्रेजी के अलावा अन्य भाषाएं बोलते हैं
- काले लोग, स्वदेशी लोग और रंग के लोग
- जो लोग समलैंगिक, समलैंगिक, उभयलिंगी, ट्रांस या क्वीर हैं
- सीमांत लिंग वाले लोग
- विकलांग या बीमारी वाले लोग
- वे लोग जिनके पास कक्षा या आय के कारण रचनात्मक कोडिंग के साथ जुड़ने के अवसरों और / या संसाधनों का अभाव है
- ओपन सोर्स और क्रिएटिव कोडिंग में बहुत कम या पहले के अनुभव वाले लोग
- और अन्य लोग जिन्हें व्यवस्थित रूप से बाहर रखा गया है और ऐतिहासिक रूप से कम आंकलन किया गया है

### उदाहरण

हमारे द्वारा पहुँच बढ़ाने के लिए किए गए प्रयासों के उदाहरण हैं:

- अधिक दस्तावेजों और अन्य सामग्रियों का अधिक भाषाओं में अनुवाद करना
- सहायक तकनीकों के लिए हमारे समर्थन में सुधार (जैसे कि स्क्रीन्रेडर्स)
- हमारे टूल में वेब कंटेंट एक्सेसिबिलिटी दिशानिर्देशों का पालन करना और उपयोगकर्ताओं को उनकी परियोजनाओं में उनका पालन करना आसान बनाने की दिशा में काम करना
- टूल का उपयोग करने वाले लोगों के लिए p5.js त्रुटि संदेशों को अधिक सहायक और सहायक बनाना
- ऐतिहासिक रूप से रचनात्मक कोडिंग और डिजिटल आर्ट्स में हाशिए पर छोड़ दिए गए समुदायों के भीतर p5.js के शिक्षार्थियों का परामर्श और समर्थन करना

ऐसी अन्य चीजें हैं जिनके बारे में हमने अभी तक सोचा नहीं है और हम यह पता लगाने के लिए उत्साहित हैं कि वे एक साथ क्या कर रहे हैं। यदि आपके पास एक विचार है, तो कृपया [इसे एक मुद्दे के रूप में साझा करें](https://github.com/processing/p5.js/issues/new/choose)

## रखरखाव

हम p5.js. के मौजूदा फीचर सेट को बनाए रखने के अपने इरादे की भी पुष्टि करते हैं हम बग्स को ठीक करना चाहते हैं चाहे कोडबेस के किस क्षेत्र में हो क्योंकि हम मानते हैं कि उपकरण की निरंतरता इसे शुरुआती लोगों के लिए अधिक सुलभ बनाती है।
3 changes: 3 additions & 0 deletions contributor_docs/hi/benchmarking_p5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# बेंचमार्किंग p5.js

बेंचमार्किंग को https://github.com/limzykenneth/p5-benchmark पर उपलब्ध अपने रेपो में स्थानांतरित कर दिया गया है। P5.js के नवीनतम संस्करण के बेंचमार्क परिणाम का एक समग्र दृश्य https://limzykenneth.github.io/p5-benchmark/ पर देखा जा सकता है। अभी भी कार्य प्रगति पर है।
Loading

0 comments on commit a82db0f

Please sign in to comment.