diff --git a/README.md b/README.md index 26ffa49..f249316 100644 --- a/README.md +++ b/README.md @@ -272,6 +272,9 @@ Thank you ❤️ - [Tobias Bora](https://github.com/tobiasBora). - [Tristan Maat](https://github.com/TLATER). - [Victor Engmark](https://github.com/l0b0). +- [UserSv4](https://github.com/UserSv4). +- [Michael Utz](https://github.com/theutz). +- [Pablo Ovelleiro Corral](https://github.com/pinpox). - [Norbert Melzer](https://github.com/NobbZ). - [Patrick Stevens](https://github.com/Smaug123). - [Connor Baker](https://github.com/ConnorBaker). diff --git a/src/alejandra_cli/src/ads/mod.rs b/src/alejandra_cli/src/ads/mod.rs index 647721b..5fe0f63 100644 --- a/src/alejandra_cli/src/ads/mod.rs +++ b/src/alejandra_cli/src/ads/mod.rs @@ -18,11 +18,14 @@ pub(crate) fn random_ad() -> String { fn sponsor_benefits() -> String { let sponsors = [ // Proportional to total past and present contributions - (0.0908, "Guangtao Zhang"), - (0.1069, "Fabio Leimgruber"), - (0.1815, "Raphael Megzari"), - (0.3485, "Daniel Salazar"), - (0.2723, "https://mercury.com"), + (0.0316, "Guangtao Zhang"), + (0.0372, "Fabio Leimgruber"), + (0.0633, "Raphael Megzari"), + (0.1215, "Daniel Salazar"), + (0.6642, "https://mercury.com"), + (0.0633, "https://shop.beekeeb.com/"), + (0.0063, "Murat Cabuk"), + (0.0127, "Pavel Roskin"), ]; let name = random_weighted_choice(&sponsors[..]); @@ -43,9 +46,11 @@ fn contributor_thanks() -> String { (1.0, ("Kevin Amado", "kamadorueda")), (1.0, ("Loïc Reynier", "loicreynier")), (1.0, ("Matthew Kenigsberg", "mkenigs")), + (1.0, ("Michael Utz ", "theutz")), (1.0, ("Mr Hedgehog", "ModdedGamers")), (1.0, ("Nathan Henrie", "n8henrie")), (1.0, ("Norbert Melzer", "NobbZ")), + (1.0, ("Pablo Ovelleiro Corral", "pinpox")), (1.0, ("Patrick Stevens", "Smaug123")), (1.0, ("Piegames", "piegamesde")), (1.0, ("Rebecca Turner", "9999years")), @@ -55,6 +60,7 @@ fn contributor_thanks() -> String { (1.0, ("Thomas Bereknyei", "tomberek")), (1.0, ("Tobias Bora", "tobiasBora")), (1.0, ("Tristan Maat", "TLATER")), + (1.0, ("UserSv4", "UserSv4")), (1.0, ("Victor Engmark", "l0b0")), (1.0, ("Vincent Ambo", "tazjin")), (1.0, ("Yorick van Pelt", "yorickvP")),