mirror of
https://github.com/rordaz/ColorTab.git
synced 2026-07-22 07:48:53 +00:00
feat: update version to 1.1.3, enhance compatibility, and add GitHub Actions workflow for release tagging
This commit is contained in:
parent
4cbb1d0f26
commit
b0cac3319a
6 changed files with 68 additions and 14 deletions
45
.github/workflows/create-tag.yml
vendored
Normal file
45
.github/workflows/create-tag.yml
vendored
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
name: Create Release Tag
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- manifest.json
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
tag:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Get version from manifest
|
||||
id: version
|
||||
run: |
|
||||
version=$(jq -r '.version' manifest.json)
|
||||
echo "version=$version" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Check if tag already exists
|
||||
id: tag_check
|
||||
run: |
|
||||
if git rev-parse "refs/tags/${{ steps.version.outputs.version }}" >/dev/null 2>&1; then
|
||||
echo "exists=true" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "exists=false" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: Create and push tag
|
||||
if: steps.tag_check.outputs.exists == 'false'
|
||||
run: |
|
||||
git config user.name "github-actions[bot]"
|
||||
git config user.email "github-actions[bot]@users.noreply.github.com"
|
||||
git tag ${{ steps.version.outputs.version }}
|
||||
git push origin ${{ steps.version.outputs.version }}
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -3,3 +3,4 @@ main.js
|
|||
*.js.map
|
||||
Scan-Results-*.md
|
||||
Review-Results-*.md
|
||||
.vscode/settings.json
|
||||
|
|
|
|||
22
.vscode/settings.json
vendored
22
.vscode/settings.json
vendored
|
|
@ -1,15 +1,15 @@
|
|||
{
|
||||
"workbench.colorCustomizations": {
|
||||
"activityBar.background": "#875000",
|
||||
"titleBar.activeBackground": "#BD7000",
|
||||
"titleBar.activeForeground": "#FFFAF2",
|
||||
"titleBar.inactiveBackground": "#875000",
|
||||
"titleBar.inactiveForeground": "#FFFAF2",
|
||||
"statusBar.background": "#875000",
|
||||
"statusBar.foreground": "#FFFAF2",
|
||||
"statusBar.debuggingBackground": "#875000",
|
||||
"statusBar.debuggingForeground": "#FFFAF2",
|
||||
"statusBar.noFolderBackground": "#875000",
|
||||
"statusBar.noFolderForeground": "#FFFAF2"
|
||||
"activityBar.background": "#0C351D",
|
||||
"titleBar.activeBackground": "#114A29",
|
||||
"titleBar.activeForeground": "#F3FCF7",
|
||||
"titleBar.inactiveBackground": "#0C351D",
|
||||
"titleBar.inactiveForeground": "#F3FCF7",
|
||||
"statusBar.background": "#0C351D",
|
||||
"statusBar.foreground": "#F3FCF7",
|
||||
"statusBar.debuggingBackground": "#0C351D",
|
||||
"statusBar.debuggingForeground": "#F3FCF7",
|
||||
"statusBar.noFolderBackground": "#0C351D",
|
||||
"statusBar.noFolderForeground": "#F3FCF7"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,13 @@
|
|||
# Release Notes
|
||||
|
||||
## [1.1.3] - 2026-06-27
|
||||
|
||||
### ✨ Improvements
|
||||
|
||||
- **Broader Obsidian Compatibility** – Lowered minimum required Obsidian version from `1.13.0` to `1.12.0`, allowing the plugin to be installed on Obsidian 1.12.x
|
||||
|
||||
---
|
||||
|
||||
## [1.1.2] - 2026-06-23
|
||||
|
||||
### ✨ Improvements
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"id": "color-tab",
|
||||
"name": "Color Tab",
|
||||
"version": "1.1.2",
|
||||
"minAppVersion": "1.13.0",
|
||||
"version": "1.1.3",
|
||||
"minAppVersion": "1.12.0",
|
||||
"description": "Colorize open tabs to visually distinguish notes at a glance, using a right-click context menu.",
|
||||
"author": "Rafael Ordaz",
|
||||
"authorUrl": "https://github.com/rordaz",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "color-tab",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.3",
|
||||
"description": "Obsidian plugin to colorize open tabs",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue