-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
156 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# v1.1.0 | ||
|
||
- You may now select a list of modules to keep active. | ||
- Added statistics to each step: | ||
- remaining modules in list | ||
- remaining steps | ||
- list of (in-)active modules | ||
- Fixed some bug where (at least sometimes) the wrong result was shown | ||
- Moved the "Find the culprit" button in module management to the bottom, right beside the "Save Module Settings" button. | ||
- Cleaned up the code a bit. | ||
|
||
# v1.0.0 | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
.ftc-module-list { | ||
|
||
|
||
background: rgba(0,0,0,0.05); | ||
border: 2px inset #6666; | ||
border-radius: 0.5em; | ||
|
||
padding: 0.5em; | ||
list-style-type: disc; | ||
max-height: 300px; | ||
overflow-y: scroll; | ||
padding: 0.5em; | ||
list-style-type: none; | ||
} | ||
|
||
.ftc-module-list li { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.ftc-module-list li input.ftc-checkbox { | ||
margin-right: 0.5em; | ||
} | ||
|
||
.ftc-module-list li:not(:first-child) { | ||
border-top: 1px dashed #6666; | ||
} | ||
|
||
.ftc-module-list i { | ||
min-width: 1.5ch; | ||
} | ||
|
||
.ftc-active { | ||
color: green; | ||
} | ||
|
||
.ftc-inactive { | ||
color: red; | ||
} | ||
|
||
.ftc-submit-div { | ||
display: flex; | ||
} | ||
|
||
.ftc-submit-div button { | ||
flex: 1; | ||
} | ||
|
||
.ftc-submit-div button[type="submit"] { | ||
flex: 2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters