Skip to content

Commit 8091379

Browse files
committed
feat(settings): Add twitter link to get user's feedback.
1 parent 342865a commit 8091379

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "invio",
33
"name": "Invio",
4-
"version": "0.2.3",
4+
"version": "0.2.4",
55
"minAppVersion": "0.13.21",
66
"description": "Export docs as websites and deploy them to AWS S3 or compatible COS. Invio streamlines the process of publishing, enabling users to easily share their work online.",
77
"author": "frontend-engineering",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-invio",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"description": "Publish your obsidian docs to COS.",
55
"scripts": {
66
"dev": "node esbuild.config.mjs",

src/settings.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -905,6 +905,17 @@ export class InvioSettingTab extends PluginSettingTab {
905905
new Notice(t("settings_resetcache_notice"));
906906
});
907907
});
908+
909+
const bonusDiv = containerEl.createEl('div');
910+
bonusDiv.createEl('h2', { text: 'Stay up to date' });
911+
912+
const twitterContainer = bonusDiv.createEl('p')
913+
const twitterText = twitterContainer.createSpan();
914+
twitterText.innerText = 'Stay up to date with the latest news and updates about our product by following us on Twitter: ';
915+
twitterContainer.createEl("a", {
916+
href: "https://twitter.com/webinfra111450",
917+
text: 'webinfra111450',
918+
});
908919
}
909920

910921
hide() {

0 commit comments

Comments
 (0)