Skip to content

Commit

Permalink
Update links in docs & comments to HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
liorgrossman committed Jul 24, 2023
1 parent 4bf9a32 commit c126ac6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ coverage
# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ Start by inspecting the inverted element using Chrome Developer Tools. You will

1. **invert-back is necessary and missing**: the element needs to be inverted back, but isn't. Inverting the element colors back is done by adding a selector in `[SITENAME].scss`, e.g.
```
.elementSelector {
.elementSelector {
@include invert-back();
}
```
2. **invert-back is unnecessarily used**: sometimes invert-back() is applied for this element, although it doesn't need to be inverted back.
This happens when overly-wide selector is is used, for example: `img { @include invert-back() }`.
In such case, you can exclude this specific element from being inverted back:
```
img {
img {
@include invert-back();
.elementSelector {
filter: none !important;
Expand All @@ -68,7 +68,7 @@ git add .
git commit -m "Description of Changes"
git push origin master
```
3. Go to [GitHub](https://github.com) and navigate to **your fork of Darkness**.
3. Go to [GitHub](https://github.com) and navigate to **your fork of Darkness**.
1. Click the **New pull request** button (above the file list)
1. Click the **Create pull request** button.
1. Add a description for your pull request and click **Create pull request**
Expand All @@ -81,4 +81,4 @@ git push origin master

#### Git Configuration
After [installling Darkness locally](./README.MD), the 1st remote is **origin**, which points to your fork on GitHub (use it to push and pull).
The 2nd remote that is added by you is **upstream** that points to the original Darkness repo (use it to fetch and make pull requests). [See diagram](http://i.stack.imgur.com/cEJjT.png).
The 2nd remote that is added by you is **upstream** that points to the original Darkness repo (use it to fetch and make pull requests). [See diagram](https://i.stack.imgur.com/cEJjT.png).
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Using dark themes reduces the eye strain and fatigue caused by a bright screen,

**[Pull requests are welcome! Help us improve Darkness by contributing fixes and new themes](./CONTRIBUTING.md)**

**Major contributors (10+ commits):** [Lior Grossman](http://liorgrossman.com/), [Theis Villumsen](https://folkmann.it/), [Nicolas Botello](http://nicolasbotello.com/), [Derek Bytheway](https://github.com/derekbtw/), [Matt Tayler](https://github.com/maylortaylor)
**Major contributors (10+ commits):** [Lior Grossman](https://liorgrossman.com/), [Theis Villumsen](https://folkmann.it/), [Nicolas Botello](https://nicolasbotello.com/), [Derek Bytheway](https://github.com/derekbtw/), [Matt Tayler](https://github.com/maylortaylor)

<div style="text-align:center">
<img alt="Screenshot" src="https://raw.githubusercontent.com/liorgrossman/darkness/master/assets/documentation/darkness-screenshot.png">
Expand Down
4 changes: 2 additions & 2 deletions chrome-extension/icons/README.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This webfont is generated by http://fontello.com open source project.
This webfont is generated by https://fontello.com open source project.


================================================================================
Expand All @@ -21,7 +21,7 @@ Comments on archive content

- /font/* - fonts in different formats

- /css/* - different kinds of css, for all situations. Should be ok with
- /css/* - different kinds of css, for all situations. Should be ok with
twitter bootstrap. Also, you can skip <i> style and assign icon classes
directly to text elements, if you don't mind about IE7.

Expand Down
2 changes: 1 addition & 1 deletion chrome-extension/js/background/analytics.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var initializeAnalyticsOnStart = function() {
ga('create', 'UA-76391501-2', 'auto');

// Initialize analytics to work properly in a background script
ga('set', 'checkProtocolTask', function() {}); // Removes failing protocol check. @see: http://stackoverflow.com/a/22152353/1958200
ga('set', 'checkProtocolTask', function() {}); // Removes failing protocol check. @see: https://stackoverflow.com/a/22152353/1958200

// Keep users' privacy
ga('set', 'anonymizeIp', true); // Anonymize users' IP
Expand Down

0 comments on commit c126ac6

Please sign in to comment.