diff --git a/README.md b/README.md index 1c07299d8a5..e3de8adcc6d 100644 --- a/README.md +++ b/README.md @@ -153,34 +153,301 @@ The current priorities are to improve core capabilities and user experience of t ### All Contributors (Both Aider Main and Aider-CE) -@paul-gauthier -@dwash96 -@tekacs -@ei-grad -@joshuavial -@chr15m -@fry69 -@quinlanjager -@caseymcc -@shladnik -@itlackey -@tomjuggler -@szmania -@vk4s -@titusz -@daniel-vainsencher -@bphd -@akaihola -@jalammar -@schpet -@iamFIREcracker -@KennyDizi -@ivanfioravanti -@mdeweerd -@fahmad91 -@itsmeknt -@cheahjs -@youknow04 -@pjcreath -@pcamp -@ErichBSchulz \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@paul-gauthier@dwash96@tekacs@ei-grad
@joshuavial@chr15m@fry69@quinlanjager
@caseymcc@shladnik@itlackey@tomjuggler
@szmania@vk4s@titusz@daniel-vainsencher
@bphd@akaihola@jalammar@schpet
@iamFIREcracker@ErichBSchulzJV@KennyDizi
@ivanfioravanti@mdeweerd@fahmad91@itsmeknt
@cheahjs@youknow04@pjcreath@pcamp
@miradnanali@o-nixJonathan Ellis@jpshackelford
@johbo@jamwil@claui@codeofdusk
@Taik@Hambaobao@therealmarv@muravvv
@hypn4@gmoz22@contributor@apaz-cli
@preynal@nims11@lreeves@ktakayama
@sentienthouseplant@gcp@thehunmonkgroup@ctoth
Alexander KjeldaasYutaka Matsubara@burnettk@cryptekbits
@deansher@kennyfrc@lentil32@malkoG
@mubashir1osmani@TimPut@zjy1412@savioursho
@jayeshthk@FeepingCreature@susliko@aelaguiz
@eltociear@misteral@tao12345666333@jpshack-at-palomar
@mbokinala@yamitzky@mobyvb@nicolasperez19
@ozapinq@ryanfreckleton@nhs000@smh
@zhyu@peterhadlaw@Netzvamp@sestrella
@Skountz@StevenTCramer@strayer@taha-yassine
@tamirzb@tgbender@pcgeek86@tylersatre
@tanavamsikrishna@you-n-g@pauldw@paulmaunders
@omri123@MatthewZMD@mbailey@golergka
@matfat55@mtofano@maledorak@mlang
@marcomayer@holoskii@ffluk3@lattwood
wangboxue@rti@prmbiy@omarcinkonis
@Oct4Pie@mark-asymblmichal.sliwa@mdklab
@mario7421liam.liukwmiebach@kAIto47802
@jvmncs@hydai@hstoklosa@gordonlukch
@develmusa@coredevorg@cantalupo555@caetanominuzzo
@yzx9@zackees@wietsevenema@krewenki
@vinnymac@szepeviktor@varchasgopalaswamy@spdustin
@henderkes@daysm@devriesd@daniel-sc
@damms005@curran@cclauss@cjoach
@csala@bexelbie@branchv@bkowalik
@h0x91b@aroffe99@banjo@anjor
@andreypopp@ivnvxd@andreakeesys@ameramayreh
@a1ooha@maliayas@akirak@adrianlzt
@codefromthecrypt@aweis89@aj47@noitcudni
@solatis@webkonstantin@khulnasoft-bot@KebobZ
@acro5piano@josx@joshvera@jklina
@jkeys089@johanvtsJim White@gengjiawen
@jevon@jesstelford@JeongJuhyeon@jackhallam
@Mushoz@zestysoftHenry Fraser@gwpl
@garrett-hopper@filiptrplan@FelixLisczyk@evnoj
@erykwieliczko@elohmeier@emmanuel-ferdman
\ No newline at end of file diff --git a/aider/__init__.py b/aider/__init__.py index 7f24b49cc19..60d74603d5a 100644 --- a/aider/__init__.py +++ b/aider/__init__.py @@ -1,6 +1,6 @@ from packaging import version -__version__ = "0.89.6.dev" +__version__ = "0.89.7.dev" safe_version = __version__ try: diff --git a/aider/main.py b/aider/main.py index 5ab643b759f..86fce4b3173 100644 --- a/aider/main.py +++ b/aider/main.py @@ -1,11 +1,12 @@ import os try: - if not os.environ["CECLI_DEFAULT_TLS"] or os.environ["AIDER_CE_DEFAULT_TLS"]: + if not os.getenv("CECLI_DEFAULT_TLS") and not os.getenv("AIDER_CE_DEFAULT_TLS"): import truststore truststore.inject_into_ssl() -except Exception: +except Exception as e: + print(e) pass import asyncio diff --git a/scripts/get_contributor_list.js b/scripts/get_contributor_list.js index 65866789ca6..583df9a8faa 100644 --- a/scripts/get_contributor_list.js +++ b/scripts/get_contributor_list.js @@ -1,13 +1,38 @@ (async function get_contributors(){ - const response = await fetch("https://api.github.com/repos/dwash96/aider-ce/contributors"); - const data = await response.json(); - console.log(data) + let all_contributors = []; + for (let i = 1; i < 11; i++){ + const response = await fetch(`https://api.github.com/repos/dwash96/aider-ce/contributors?anon=1&per_page=100&page=${i}`); + const data = await response.json(); + + all_contributors = all_contributors.concat(data) + } + let output = []; - data.forEach((item) => { - output.push(`@${item.login}`) + all_contributors.forEach((item) => { + if(item.login){ + output.push(`@${item.login}`) + }else{ + output.push(`${item.name}`) + } }); - console.log(output.join("\n")) + // Create 4-column HTML table + let table = '\n\n'; + + for (let i = 0; i < output.length; i += 4) { + table += '\n'; + for (let j = 0; j < 4; j++) { + table += '\n'; + } + table += '\n'; + } + + table += '\n
'; + if (i + j < output.length) { + table += output[i + j]; + } + table += '
'; + console.log(table); })() \ No newline at end of file