obsidian-releases icon indicating copy to clipboard operation
obsidian-releases copied to clipboard

added entry for obsidian-count-down

Open hamolicious opened this issue 2 years ago • 5 comments

I am submitting a new Community Plugin

Repo URL

Link to my plugin: https://github.com/hamolicious/Obsidian-Count-Down

Release Checklist

  • [x] I have tested the plugin on
    • [x] Windows
    • [x] macOS
    • [x] Linux
    • [x] Android (if applicable)
    • [x] iOS (if applicable)
  • [x] My GitHub release contains all required files
    • [x] main.js
    • [x] manifest.json
    • [x] styles.css (optional)
  • [x] GitHub release name matches the exact version number specified in my manifest.json (Note: Use the exact version number, don't include a prefix v)
  • [x] The id in my manifest.json matches the id in the community-plugins.json file.
  • [x] My README.md describes the plugin's purpose and provides clear usage instructions.
  • [x] I have read the tips in https://github.com/obsidianmd/obsidian-releases/blob/master/plugin-review.md and have self-reviewed my plugin to avoid these common pitfalls.
  • [x] I have added a license in the LICENSE file.
  • [x] My project respects and is compatible with the original license of any code from other plugins that I'm using. I have given proper attribution to these other projects in my README.md.

hamolicious avatar Jul 27 '22 15:07 hamolicious

import moment from "moment"; You don't need to bring your own copy of moment, Obsidian already provides it.

declare global Please don't do this, declaring global variables can lead to all kinds of problems. You can just remove it, and use this.settings in the one place where you access it.

this.registerMarkdownPostProcessor(async function ( You can just do this.registerMarkdownPostProcessor(countdownMarkdownPostProcessor);

// NOTE: figure out the way to add highlighting blocks

el.createEl("mark", {cls: "countdown-highlight", text: formatDiff(diff)});

would be my way to do this.

joethei avatar Aug 01 '22 14:08 joethei

import moment from "moment"; You don't need to bring your own copy of moment, Obsidian already provides it.

fixed as of d237aaf


declare global Please don't do this, declaring global variables can lead to all kinds of problems. You can just remove it, and use this.settings in the one place where you access it.

fixed as of b11a497


this.registerMarkdownPostProcessor(async function ( You can just do this.registerMarkdownPostProcessor(countdownMarkdownPostProcessor);

fixed as of 1baf694


// NOTE: figure out the way to add highlighting blocks el.createEl("mark", {cls: "countdown-highlight", text: formatDiff(diff)}); would be my way to do this.

duly noted, this is not yet a priority but thank you very much. fixed as of not-yet

hamolicious avatar Aug 02 '22 16:08 hamolicious

Hello hamolicious!

I found the following errors in your plugin, Focus and Highlight:

:x: The newly added entry is not at the end, or you are submitting on someone else's behalf. Last plugin in the list is: nagi1999a/obsidian-focus-plugin


This check was done automatically.

github-actions[bot] avatar Aug 02 '22 16:08 github-actions[bot]

Hello hamolicious!

I found the following errors in your plugin, Focus and Highlight:

❌ The newly added entry is not at the end, or you are submitting on someone else's behalf. Last plugin in the list is: nagi1999a/obsidian-focus-plugin

This check was done automatically.

this will be fixed when I am ready to merge

hamolicious avatar Aug 04 '22 14:08 hamolicious

Hi, you might want to mention in the README that this transformation will only happen in Reading mode and not in live preview.

liamcain avatar Aug 05 '22 01:08 liamcain

@hamolicious Hi! Do you still intend to submit this plugin? Thanks!

ericaxu avatar Nov 09 '22 02:11 ericaxu

@hamolicious Hi! Do you still intend to submit this plugin? Thanks!

No, sorry forgot to close, I need to iron out some bugs first and need to find the time to do that, will resubmit when I get a chance

hamolicious avatar Nov 09 '22 03:11 hamolicious

@hamolicious Hi! Do you still intend to submit this plugin? Thanks!

No, sorry forgot to close, I need to iron out some bugs first and need to find the time to do that, will resubmit when I get a chance

Great, thanks for the update!

ericaxu avatar Nov 09 '22 05:11 ericaxu