Skip to content

Commit fa243f0

Browse files
authored
Merge branch 'master' into patch-1
2 parents dad2fd8 + c331f41 commit fa243f0

File tree

7 files changed

+19040
-18529
lines changed

7 files changed

+19040
-18529
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/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/stale@v9
1414
with:
15-
stale-pr-message: "Hi there, as this PR has not seen any activity in the last 30 days, it will be closed in 15 days unless there are any updates."
15+
stale-pr-message: "Hi there, as this PR has not seen any activity in the last 30 days, it will be closed in 15 days unless there are any updates.\nPlease double check that you have made all of the requested changes if you believe that this is a mistake."
1616
close-pr-message: "Hi there, to keep things tidy, we're closing PRs after one and a half months of inactivity.\nFeel free to create a new pull request when you're ready to continue. Thanks for your understanding!"
1717
days-before-stale: 30
1818
days-before-close: 15

.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: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1252,10 +1252,10 @@
12521252
},
12531253
{
12541254
"name": "Feather",
1255-
"author": "MFdev",
1256-
"repo": "MFdev-coder/obsidian-feather",
1255+
"author": "zfmohammed",
1256+
"repo": "zfmohammed/obsidian-feather",
12571257
"screenshot": "assets/Screenshot.png",
1258-
"modes": ["dark", "light"]
1258+
"modes": ["dark"]
12591259
},
12601260
{
12611261
"name": "Comfort Dark",
@@ -2656,5 +2656,40 @@
26562656
"repo": "OmegaCentauri68/Omega-Theme-for-Obsidian",
26572657
"screenshot": "img/thumb.png",
26582658
"modes": ["dark"]
2659+
},
2660+
{
2661+
"name": "Baseline",
2662+
"author": "Alexis C",
2663+
"repo": "aaaaalexis/obsidian-baseline",
2664+
"screenshot": "baseline.png",
2665+
"modes": ["dark", "light"]
2666+
},
2667+
{
2668+
"name": "Azure",
2669+
"author": "Anna Grace",
2670+
"repo": "annagracedev/obsidian-azure",
2671+
"screenshot": "azure_store.png",
2672+
"modes": ["dark", "light"]
2673+
},
2674+
{
2675+
"name": "Noctis",
2676+
"author": "konnta0",
2677+
"repo": "konnta0/obsidian-noctis-theme",
2678+
"screenshot": "screenshot_512x228.png",
2679+
"modes": ["dark"]
2680+
},
2681+
{
2682+
"name": "Matrix",
2683+
"author": "fabdub",
2684+
"repo": "dubefab/Matrix",
2685+
"screenshot": "cover.png",
2686+
"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"]
26592694
}
26602695
]

0 commit comments

Comments
 (0)