Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ jobs:
- name: Build zip
run: |
chmod +x plugin.py
zip tabularis-csv-plugin.zip plugin.py manifest.json
zip tabularis-csv-plugin.zip plugin.py .tabularium

- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: tabularis-csv-plugin.zip
files: |
tabularis-csv-plugin.zip
.tabularium
generate_release_notes: true
21 changes: 18 additions & 3 deletions manifest.json → .tabularium
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,23 @@
"alter_primary_key": false
},
"data_types": [
{ "name": "TEXT", "category": "string", "requires_length": false, "requires_precision": false },
{ "name": "INTEGER", "category": "numeric", "requires_length": false, "requires_precision": false },
{ "name": "REAL", "category": "numeric", "requires_length": false, "requires_precision": false }
{
"name": "TEXT",
"category": "string",
"requires_length": false,
"requires_precision": false
},
{
"name": "INTEGER",
"category": "numeric",
"requires_length": false,
"requires_precision": false
},
{
"name": "REAL",
"category": "numeric",
"requires_length": false,
"requires_precision": false
}
]
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Open **Settings → Available Plugins** in Tabularis and install **CSV Folder**

1. Download the latest `csv-plugin.zip` from the [Releases page](https://github.com/debba/tabularis-csv-plugin/releases).
2. Extract the archive.
3. Copy `plugin.py` and `manifest.json` into the Tabularis plugins directory:
3. Copy `plugin.py` and `.tabularium` into the Tabularis plugins directory:

| OS | Plugins Directory |
|---|---|
Expand Down
2 changes: 1 addition & 1 deletion sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ esac
DEST="$PLUGINS_DIR/$PLUGIN_ID"
mkdir -p "$DEST"

cp plugin.py manifest.json "$DEST/"
cp plugin.py .tabularium "$DEST/"
chmod +x "$DEST/plugin.py"

echo "Installed to: $DEST"