From 5571044c10e052908fa6c1b1c6d2cbb73e312675 Mon Sep 17 00:00:00 2001 From: Limon Monte Date: Wed, 29 Mar 2017 17:46:33 +0300 Subject: [PATCH 1/6] Add 'help wanted' to the list of excluded labels --- src/Maintained/Statistics/StatisticsComputer.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Maintained/Statistics/StatisticsComputer.php b/src/Maintained/Statistics/StatisticsComputer.php index 24663cb..4cc8261 100644 --- a/src/Maintained/Statistics/StatisticsComputer.php +++ b/src/Maintained/Statistics/StatisticsComputer.php @@ -31,8 +31,9 @@ class StatisticsComputer implements StatisticsProvider 'refactoring', 'duplicate', 'tests', - 'refactoring', 'suggestion', + 'refactoring', + 'help wanted', 'wip', 'rfc', 'wishlist', @@ -50,6 +51,7 @@ class StatisticsComputer implements StatisticsProvider '.*test.*', '.*suggestion.*', '.*refactoring.*', + '.*help\s+wanted.*', '(.*[\s\.-])?wip', '(.*[\s\.-])?rfc', '(.*[\s\.-])?poc', -- 2.39.5 From 15c7fe300556e61ccb2b369e02eabdbabda881f8 Mon Sep 17 00:00:00 2001 From: Joel Handwell Date: Wed, 30 Aug 2017 10:55:56 -0400 Subject: [PATCH 2/6] Dogfooding IsItMaintained Eating your own dog food https://en.wikipedia.org/wiki/Eating_your_own_dog_food can be a good practice to show quality of this repo. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 213099f..044dde4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # Is It Maintained? Monitoring open source projects activity. +[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/mnapoli/IsItMaintained.svg)](http://isitmaintained.com/project/mnapoli/IsItMaintained "Average time to resolve an issue") +[![Percentage of issues still open](http://isitmaintained.com/badge/open/mnapoli/IsItMaintained.svg)](http://isitmaintained.com/project/mnapoli/IsItMaintained "Percentage of issues still open") ![](web/img/dude.png) -- 2.39.5 From 2b163079b1e3609d4977b40eb8a2bc0b45d70fd8 Mon Sep 17 00:00:00 2001 From: Travis Plunk Date: Fri, 13 Apr 2018 18:43:39 -0700 Subject: [PATCH 3/6] Add question, cleanup, discussion, and meta as ignored tags --- src/Maintained/Statistics/StatisticsComputer.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Maintained/Statistics/StatisticsComputer.php b/src/Maintained/Statistics/StatisticsComputer.php index 24663cb..3e3d843 100644 --- a/src/Maintained/Statistics/StatisticsComputer.php +++ b/src/Maintained/Statistics/StatisticsComputer.php @@ -36,6 +36,10 @@ class StatisticsComputer implements StatisticsProvider 'wip', 'rfc', 'wishlist', + 'question', + 'cleanup', + 'discussion', + 'meta', ]; /** @@ -50,6 +54,10 @@ class StatisticsComputer implements StatisticsProvider '.*test.*', '.*suggestion.*', '.*refactoring.*', + '.*question.*', + '.*cleanup.*', + '.*discussion.*', + '.*meta.*', '(.*[\s\.-])?wip', '(.*[\s\.-])?rfc', '(.*[\s\.-])?poc', -- 2.39.5 From 221ad8514dedfe6771a36e2c5233bc0adcda56c2 Mon Sep 17 00:00:00 2001 From: Steven Date: Mon, 9 Jul 2018 13:12:29 -0400 Subject: [PATCH 4/6] Change google fonts to https This changes http://fonts.googleapis.com to https://fonts.googleapis.com --- res/views/layout.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/views/layout.twig b/res/views/layout.twig index d89d894..8513eee 100644 --- a/res/views/layout.twig +++ b/res/views/layout.twig @@ -17,8 +17,8 @@ - - + + -- 2.39.5 From f466d47cb5fb919b78867f90d570129db9fda7b3 Mon Sep 17 00:00:00 2001 From: Matthieu Napoli Date: Mon, 16 Jul 2018 22:51:08 +0200 Subject: [PATCH 5/6] Add link to https://prettyci.com --- res/views/layout.twig | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/res/views/layout.twig b/res/views/layout.twig index 8513eee..09070f9 100644 --- a/res/views/layout.twig +++ b/res/views/layout.twig @@ -76,10 +76,9 @@ - Matthieu Napoli - - - - GitHub - + GitHub + - + Supported by PrettyCI - Theme by Start Bootstrap -- 2.39.5 From 31f21a66b3531df03b6eb42d880f092251dc2054 Mon Sep 17 00:00:00 2001 From: Okura Masafumi Date: Wed, 25 Jul 2018 18:14:48 +0900 Subject: [PATCH 6/6] Replace PhantomJS with React Native PhantomJS some end of life so we should replace it with something else. I thought React Native is popular enough. --- src/Maintained/Application/Controller/HomeController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Maintained/Application/Controller/HomeController.php b/src/Maintained/Application/Controller/HomeController.php index bd6b803..96ad52c 100644 --- a/src/Maintained/Application/Controller/HomeController.php +++ b/src/Maintained/Application/Controller/HomeController.php @@ -40,7 +40,7 @@ class HomeController 'angular/angular.js' => 'AngularJS', 'meteor/meteor' => 'Meteor', 'facebook/react' => 'React', - 'ariya/phantomjs' => 'PhantomJS', + 'facebook/react-native' => 'React Native', 'gulpjs/gulp' => 'Gulp', 'robbyrussell/oh-my-zsh' => 'Oh My Zsh', ]; -- 2.39.5