Compare commits

..

No commits in common. "main" and "1.0.5" have entirely different histories.
main ... 1.0.5

7 changed files with 1034 additions and 948 deletions

View file

@ -33,6 +33,7 @@ esbuild.build({
'@lezer/lr',
...builtins],
format: 'cjs',
watch: !prod,
target: 'es2018',
logLevel: "info",
sourcemap: prod ? false : 'inline',

View file

@ -124,7 +124,7 @@ function appendLine(content, destination) {
return newLine(`${destination + content}`);
}
function generateTags(type) {
return newLine("") + newLine("") + newLine("tags") + newLine("- #pivotal-tracker") + newLine("- #" + type) + newLine("");
return newLine("") + newLine("---") + newLine("tags") + newLine(" - pivotal-tracker") + newLine(" - " + type) + newLine("---");
}
async function generateMarkdown(folderPath, stories) {
let storiesIgnored = 0;
@ -198,11 +198,7 @@ var pullTrackerStories = (settings) => {
var MyPlugin = class extends import_obsidian4.Plugin {
async onload() {
await this.loadSettings();
this.addRibbonIcon(
"book-open",
"Pull Tracker Stories",
() => pullTrackerStories(this.settings)
);
this.addRibbonIcon("book-open", "Pull Tracker Stories", () => pullTrackerStories(this.settings));
this.addCommand({
id: "pivotal-tracker-retrieve-stories",
name: "Pull Pivotal Tracker Stories",

View file

@ -1,7 +1,7 @@
{
"id": "pivotal-tracker-integration",
"name": "Pivotal Tracker Integration",
"version": "1.0.6",
"version": "1.0.5",
"minAppVersion": "0.15.0",
"description": "This is an unofficial pivotal tracker integration plugin for Obsidian. This plugin allows the user to pull stories, chores, bugs from their pivotal counterpart.",
"author": "Jon Deates",

1954
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "pivotal-tracker-integration",
"version": "1.0.6",
"version": "1.0.5",
"description": "This is an unofficial pivotal tracker integration plugin for Obsidian. (https://obsidian.md)",
"main": "main.js",
"scripts": {
@ -13,12 +13,12 @@
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.19",
"esbuild": "0.14.47",
"obsidian": "latest",
"tslib": "2.5.3",
"typescript": "5.1.3"
"tslib": "2.4.0",
"typescript": "4.7.4"
}
}

View file

@ -31,7 +31,7 @@ function appendLine(content: string, destination: string): string {
function generateTags(type: "feature" | "bug" | "chore"){
return newLine("") + newLine("") + newLine("tags") + newLine("- #pivotal-tracker") + newLine("- #" + type) +newLine("")
return newLine("") + newLine("---") + newLine("tags") + newLine(" - pivotal-tracker") + newLine(" - " + type) +newLine("---")
}

View file

@ -4,6 +4,5 @@
"1.0.2": "0.15.0",
"1.0.3": "0.15.0",
"1.0.4": "0.15.0",
"1.0.5": "0.15.0",
"1.0.6": "0.15.0"
"1.0.5": "0.15.0"
}