Skip to content

Commit 4885457

Browse files
authored
Merge branch 'master' into master
2 parents e072f83 + 0f4b580 commit 4885457

File tree

6 files changed

+19920
-19220
lines changed

6 files changed

+19920
-19220
lines changed

.github/PULL_REQUEST_TEMPLATE/plugin.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# I am submitting a new Community Plugin
22

3+
- [ ] I attest that I have done my best to deliver a high-quality plugin, am proud of the code I have written, and would recommend it to others. I commit to maintaining the plugin and being responsive to bug reports. If I am no longer able to maintain it, I will make reasonable efforts to find a successor maintainer or withdraw the plugin from the directory.
4+
35
## Repo URL
46

57
<!--- Paste a link to your repo here for easy access -->

.github/workflows/validate-theme-entry.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,9 @@ jobs:
112112
if (theme.name.toLowerCase().includes('theme')) {
113113
addError(`We discourage themes from including the word \`theme\` in their name since it's redundant and makes the theme selection screen harder to visually parse.`);
114114
}
115+
if (theme.name.match(/([^A-Za-z0-9_\- ]+)/g)) {
116+
addError('Your theme name contains invalid symbols, allowed are letters, digits, spaces, hyphens and underscores.');
117+
}
115118
116119
if (/^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$/.test(theme.author)) {
117120
addWarning('We generally discourage from including email addresses in the `author` field.');

community-css-themes.json

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1717,7 +1717,7 @@
17171717
"author": "Noah Boos",
17181718
"repo": "NoahBoos/Obsidian-Theme-Rift",
17191719
"screenshot": "showcase-temporaire.png",
1720-
"modes": ["dark"]
1720+
"modes": ["dark", "light"]
17211721
},
17221722
{
17231723
"name": "Blossom",
@@ -2684,5 +2684,33 @@
26842684
"repo": "dubefab/Matrix",
26852685
"screenshot": "cover.png",
26862686
"modes": ["dark"]
2687+
},
2688+
{
2689+
"name": "Powered by Lancer - Retouched",
2690+
"author": "Cloopy",
2691+
"repo": "Cloopy/Powered-by-Lancer---Retouched",
2692+
"screenshot": "RetouchedLancer.jpg",
2693+
"modes": ["dark", "light"]
2694+
},
2695+
{
2696+
"name": "Osaka Jade",
2697+
"author": "sspaeti",
2698+
"repo": "sspaeti/obsidian_osaka_jade",
2699+
"screenshot": "dark.png",
2700+
"modes": ["dark", "light"]
2701+
},
2702+
{
2703+
"name": "Everforest Spruce",
2704+
"author": "vupdivup",
2705+
"repo": "vupdivup/obsidian-everforest-spruce",
2706+
"screenshot": "cover.png",
2707+
"modes": ["dark"]
2708+
},
2709+
{
2710+
"name": "Nota Limonada Light",
2711+
"author": "CrisHood",
2712+
"repo": "crishood/nota-limonada-light",
2713+
"screenshot": "thumbnail.png",
2714+
"modes": ["light"]
26872715
}
26882716
]

0 commit comments

Comments
 (0)