Skip to content

Commit ad59cac

Browse files
authored
Merge pull request #54 from philoserf/prepare-v1.1
Prepare version 1.1
2 parents 3cc4787 + 7b35195 commit ad59cac

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,20 @@ On behalf of the Obsidian community, we extend our gratitude to Badr for this va
4343

4444
## Settings
4545

46-
- **Auto Update**: Enable automatic updates (`false` by default).
47-
- **Changelog Path**: File location for the changelog (`Changelog.md` by default).
48-
- **Datetime Format**: Moment.js format string (`YYYY-MM-DD[T]HHmm` by default).
49-
- **Max Recent Files**: Number of tracked files (`25` by default).
46+
- **Auto update**: Enable automatic updates (`false` by default).
47+
- **Changelog path**: File location for the changelog (`Changelog.md` by default).
48+
- **Datetime format**: Moment.js format string (`YYYY-MM-DD[T]HHmm` by default).
49+
- **Max recent files**: Number of tracked files (`25` by default).
50+
- **Excluded folders**: Folders to exclude from the changelog (empty by default).
5051

5152
## Changelog
5253

54+
### 1.1.0
55+
56+
- Added folder suggestion for the "Changelog path"
57+
- Added "Excluded folders"
58+
- Added input validation for "Datetime format" and "Max recent files"
59+
5360
### 1.0.0
5461

5562
- Transferred to a new maintainer.

manifest.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"author": "Mark Ayers",
66
"authorUrl": "https://philoserf.com",
77
"fundingUrl": "https://buymeacoffee.com/philoserf",
8-
"isDesktopOnly": false,
98
"minAppVersion": "1.0.0",
109
"version": "1.1.0"
1110
}

src/main.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
} from "./settings";
88

99
// Add styles for the excluded folders list
10+
// TODO: Move this to a styles.css file
1011
const EXCLUDED_FOLDERS_STYLES = `
1112
.excluded-folders-list {
1213
margin-bottom: 1em;

src/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export class ChangelogSettingsTab extends PluginSettingTab {
148148
);
149149

150150
// Excluded folders section header
151-
containerEl.createEl("h3", { text: "Excluded Folders" });
151+
containerEl.createEl("h3", { text: "Excluded folders" });
152152

153153
// Create a list of currently excluded folders with delete buttons
154154
const excludedFoldersList = containerEl.createDiv(

0 commit comments

Comments
 (0)