neutralizing 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/_includes/footer.html +1 -1
- data/_layouts/home.html +14 -24
- data/neutralizing.gemspec +3 -3
- metadata +5 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a76278af805571c3de88412aff54b31237b37000737ee2ac2b6c7d032c1d7c62
|
|
4
|
+
data.tar.gz: '017848bcf4bbb62d006659c8bf5f163d8a97b2dd373e61a45ceb9dff3a8968aa'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7eeea8ec38e0f8234333b29a3cab81957490311527c821626f7c9414a78b96705bb383a54b0ec07fcc40d71ccc63526bb33a266fb2617f5f0446623c5c3c581
|
|
7
|
+
data.tar.gz: 24d05d5dc332a8c3137e0e892076dd4f62b9d86569b1813164e20c06249d5a7cd2b6acb28fb502483d80b0acebeb3a80580449ce1a090c61b6d61de6ae508460
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.2.1 - October 05, 2025 (2.97 MB)
|
|
4
|
+
- Allow excluding social media links on the home page
|
|
5
|
+
|
|
6
|
+
## 0.2.0 - October 05, 2025 (2.97 MB)
|
|
7
|
+
- Added listener for color scheme changes (dark and light mode)
|
|
8
|
+
|
|
9
|
+
## 0.1.1 - April 01, 2025 (2.97 MB)
|
|
10
|
+
- Adjusted attachment sizes (videos and images)
|
|
11
|
+
|
|
12
|
+
## 0.1.0 - February 01, 2025
|
|
13
|
+
- First version
|
data/_includes/footer.html
CHANGED
data/_layouts/home.html
CHANGED
|
@@ -69,30 +69,20 @@ layout: default
|
|
|
69
69
|
<p>Below is a list of social contacts</p>
|
|
70
70
|
|
|
71
71
|
<ul class="list-unstyled d-flex flex-wrap justify-content-center gap-3 my-5">
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
<i class="bi bi-github me-2"></i>
|
|
87
|
-
{{ site.social_username.github}}
|
|
88
|
-
</a>
|
|
89
|
-
</li>
|
|
90
|
-
<li>
|
|
91
|
-
<a class="text-dark bg-light shadow rounded p-2" href="mailto:{{ site.social_link.email }}" target="_blank">
|
|
92
|
-
<i class="bi bi-envelope me-2"></i>
|
|
93
|
-
{{ site.social_username.email }}
|
|
94
|
-
</a>
|
|
95
|
-
</li>
|
|
72
|
+
{% assign socials = "twitter-x,linkedin,github,email" | split: "," %}
|
|
73
|
+
|
|
74
|
+
{% for key in socials %}
|
|
75
|
+
{% assign link = site.social_link[key] %}
|
|
76
|
+
|
|
77
|
+
{% if link != "" %}
|
|
78
|
+
<li>
|
|
79
|
+
<a class="text-dark bg-light shadow rounded p-2" href="{% if key == 'email' %}mailto:{{ link }}{% else %}{{ link }}{% endif %}" {% if key == "email" %}target="_blank"{% endif %}>
|
|
80
|
+
<i class="bi bi-{{ key | replace: "_x","" }} me-2"></i>
|
|
81
|
+
{{ site.social_username[key] }}
|
|
82
|
+
</a>
|
|
83
|
+
</li>
|
|
84
|
+
{% endif %}
|
|
85
|
+
{% endfor %}
|
|
96
86
|
</ul>
|
|
97
87
|
</div>
|
|
98
88
|
</div>
|
data/neutralizing.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ Gem::Specification.new do |spec|
|
|
|
4
4
|
spec.required_ruby_version = ">= 3.0.0"
|
|
5
5
|
|
|
6
6
|
spec.name = "neutralizing"
|
|
7
|
-
spec.version = "0.2.
|
|
7
|
+
spec.version = "0.2.1"
|
|
8
8
|
spec.authors = ["Nicolas"]
|
|
9
9
|
spec.email = ["nicolasalmeida321@gmail.com"]
|
|
10
10
|
|
|
@@ -14,9 +14,9 @@ Gem::Specification.new do |spec|
|
|
|
14
14
|
|
|
15
15
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
16
16
|
spec.metadata["source_code_uri"] = "https://github.com/nicollinoxx/neutralizing"
|
|
17
|
-
spec.metadata["changelog_uri"] = "https://github.com/nicollinoxx/neutralizing/blob/
|
|
17
|
+
spec.metadata["changelog_uri"] = "https://github.com/nicollinoxx/neutralizing/blob/master/CHANGELOG.md"
|
|
18
18
|
|
|
19
|
-
spec.files
|
|
19
|
+
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r!^(assets|_data|_layouts|_includes|_sass|LICENSE|README|_config\.yml|)!i) }
|
|
20
20
|
|
|
21
21
|
spec.add_runtime_dependency "jekyll", "~> 4.3"
|
|
22
22
|
spec.add_runtime_dependency "jekyll-feed", "~> 0.15"
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: neutralizing
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nicolas
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 2026-01-11 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: jekyll
|
|
@@ -38,7 +37,6 @@ dependencies:
|
|
|
38
37
|
- - "~>"
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
39
|
version: '0.15'
|
|
41
|
-
description:
|
|
42
40
|
email:
|
|
43
41
|
- nicolasalmeida321@gmail.com
|
|
44
42
|
executables: []
|
|
@@ -47,6 +45,7 @@ extra_rdoc_files: []
|
|
|
47
45
|
files:
|
|
48
46
|
- ".gitignore"
|
|
49
47
|
- 404.html
|
|
48
|
+
- CHANGELOG.md
|
|
50
49
|
- Gemfile
|
|
51
50
|
- LICENSE.txt
|
|
52
51
|
- README.md
|
|
@@ -77,8 +76,7 @@ licenses:
|
|
|
77
76
|
metadata:
|
|
78
77
|
homepage_uri: https://github.com/nicollinoxx/neutralizing
|
|
79
78
|
source_code_uri: https://github.com/nicollinoxx/neutralizing
|
|
80
|
-
changelog_uri: https://github.com/nicollinoxx/neutralizing/blob/
|
|
81
|
-
post_install_message:
|
|
79
|
+
changelog_uri: https://github.com/nicollinoxx/neutralizing/blob/master/CHANGELOG.md
|
|
82
80
|
rdoc_options: []
|
|
83
81
|
require_paths:
|
|
84
82
|
- lib
|
|
@@ -93,8 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
93
91
|
- !ruby/object:Gem::Version
|
|
94
92
|
version: '0'
|
|
95
93
|
requirements: []
|
|
96
|
-
rubygems_version: 3.2
|
|
97
|
-
signing_key:
|
|
94
|
+
rubygems_version: 3.6.2
|
|
98
95
|
specification_version: 4
|
|
99
96
|
summary: '"A bootstrap powered Jekyll theme for portfolio websites."'
|
|
100
97
|
test_files: []
|