Skip to content

Commit 0724f0f

Browse files
authored
0.2.1 (#7)
- extended the description to support google sheets, apple numbers and libreoffice calc
1 parent 275c666 commit 0724f0f

File tree

5 files changed

+78
-8
lines changed

5 files changed

+78
-8
lines changed

.github/workflows/release.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: Build obsidian plugin
2+
3+
on:
4+
push:
5+
# Sequence of patterns matched against refs/tags
6+
tags:
7+
- "*" # Push events to matching any tag format, i.e. 1.0, 20.15.10
8+
9+
env:
10+
PLUGIN_NAME: nldates-obsidian # Change this to the name of your plugin-id folder
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Use Node.js
19+
uses: actions/setup-node@v1
20+
with:
21+
node-version: "14.x" # You might need to adjust this value to your own version
22+
- name: Build
23+
id: build
24+
run: |
25+
yarn
26+
yarn run build --if-present
27+
ls
28+
echo "::set-output name=tag_name::$(git tag --sort version:refname | tail -n 1)"
29+
- name: Create Release
30+
id: create_release
31+
uses: actions/create-release@v1
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
VERSION: ${{ github.ref }}
35+
with:
36+
tag_name: ${{ github.ref }}
37+
release_name: ${{ github.ref }}
38+
draft: false
39+
prerelease: false
40+
- name: Upload main.js
41+
id: upload-main
42+
uses: actions/upload-release-asset@v1
43+
env:
44+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45+
with:
46+
upload_url: ${{ steps.create_release.outputs.upload_url }}
47+
asset_path: ./main.js
48+
asset_name: main.js
49+
asset_content_type: text/javascript
50+
- name: Upload manifest.json
51+
id: upload-manifest
52+
uses: actions/upload-release-asset@v1
53+
env:
54+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55+
with:
56+
upload_url: ${{ steps.create_release.outputs.upload_url }}
57+
asset_path: ./manifest.json
58+
asset_name: manifest.json
59+
asset_content_type: application/json
60+
- name: Upload styles.css
61+
id: upload-css
62+
uses: actions/upload-release-asset@v1
63+
env:
64+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
65+
with:
66+
upload_url: ${{ steps.create_release.outputs.upload_url }}
67+
asset_path: ./styles.css
68+
asset_name: styles.css
69+
asset_content_type: text/css

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Obsidian Excel to Markdown Table
22

3-
[![Tag 0.2.0](https://img.shields.io/badge/tag-0.2.0-blue)](https://github.com/ganesshkumar/obsidian-excel-to-markdown-table/releases/tag/0.2.0)
3+
[![Tag 0.2.1](https://img.shields.io/badge/tag-0.2.1-blue)](https://github.com/ganesshkumar/obsidian-excel-to-markdown-table/releases/tag/0.2.1)
44
[![MIT License](https://img.shields.io/github/license/ganesshkumar/obsidian-excel-to-markdown-table)](LICENSE)
55

6-
An Obsidian plugin to paste Excel tables as Markdown tables in Obsidian editor.
6+
An Obsidian plugin to paste data from Microsoft Excel, Google Sheets, Apple Numbers and LibreOffice Calc as Markdown tables in Obsidian editor.
77

88
## Demo
99

10-
You can paste the copied Excel data from the clipboard by one of the following methods.
10+
You can paste the copied data in the clipboard by one of the following methods.
1111

1212
| # | Name | Method | Notes |
1313
|---|------|--------|-------|

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"id": "obsidian-excel-to-markdown-table",
33
"name": "Excel to Markdown Table",
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"minAppVersion": "0.12.0",
6-
"description": "An Obsidian plugin to paste Excel tables as Markdown tables in Obsidian editor.",
6+
"description": "An Obsidian plugin to paste data from Microsoft Excel, Google Sheets, Apple Numbers and LibreOffice Calc as Markdown tables in Obsidian editor.",
77
"author": "Ganessh Kumar R P <rpganesshkumar@gmail.com>",
88
"authorUrl": "https://ganesshkumar.com",
99
"isDesktopOnly": false

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "obsidian-excel-to-markdown-table",
3-
"version": "0.2.0",
4-
"description": "An Obsidian plugin to paste Excel tables as Markdown tables in Obsidian editor.",
3+
"version": "0.2.1",
4+
"description": "An Obsidian plugin to paste data from Microsoft Excel, Google Sheets, Apple Numbers and LibreOffice Calc as Markdown tables in Obsidian editor.",
55
"main": "main.js",
66
"scripts": {
77
"dev": "node esbuild.config.mjs",

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"0.1.0": "0.12.0",
33
"0.1.1": "0.12.0",
4-
"0.2.0": "0.12.0"
4+
"0.2.0": "0.12.0",
5+
"0.2.1": "0.12.0"
56
}

0 commit comments

Comments
 (0)