Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: yoyurec/logseq-awesome-ui
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.3.5
Choose a base ref
...
head repository: yoyurec/logseq-awesome-ui
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.3.6
Choose a head ref
  • 3 commits
  • 7 files changed
  • 2 contributors

Commits on Oct 22, 2022

  1. Copy the full SHA
    3474dee View commit details
  2. fix(build): npm script

    yoyurec committed Oct 22, 2022
    Copy the full SHA
    e2aeb3e View commit details
  3. chore(release): 1.3.6 [skip ci]

    ## [1.3.6](v1.3.5...v1.3.6) (2022-10-22)
    
    ### Bug Fixes
    
    * **build:** npm script ([e2aeb3e](e2aeb3e))
    * **version:** add prebuild script ([3474dee](3474dee))
    semantic-release-bot committed Oct 22, 2022
    Copy the full SHA
    619d3fd View commit details
Showing with 54 additions and 33 deletions.
  1. +4 −0 .github/workflows/main.yml
  2. +1 −0 .gitignore
  3. +8 −0 CHANGELOG.md
  4. +2 −2 package.json
  5. +30 −29 pnpm-lock.yaml
  6. +6 −0 release.config.js
  7. +3 −2 src/modules/globals.ts
4 changes: 4 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@ name: Releases

env:
PLUGIN_NAME: logseq-awesome-ui
GH_TOKEN: ${{ secrets.GH_TOKEN }}

on:
push:
@@ -31,6 +32,9 @@ jobs:
- name: Install dependencies
run: pnpm install

- name: Get next version
run: npx semantic-release --dry-run --no-ci

- name: Build dist
run: pnpm build

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -2,3 +2,4 @@ node_modules
.DS_Store
dist
*.local
.version.ts
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [1.3.6](https://github.com/yoyurec/logseq-awesome-ui/compare/v1.3.5...v1.3.6) (2022-10-22)


### Bug Fixes

* **build:** npm script ([e2aeb3e](https://github.com/yoyurec/logseq-awesome-ui/commit/e2aeb3eb7524d5dc4253f8caf11ebeb8858a9b05))
* **version:** add prebuild script ([3474dee](https://github.com/yoyurec/logseq-awesome-ui/commit/3474dee3836684e7c24a6cd34b964f93e377145a))

## [1.3.5](https://github.com/yoyurec/logseq-awesome-ui/compare/v1.3.4...v1.3.5) (2022-10-22)


4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "logseq-awesome-ui",
"description": "Reworked, simplified, fixed and pumped-up Logseq! Layout, components, etc...",
"version": "1.3.5",
"version": "1.3.6",
"author": "yoyurec <yoyurec@gmail.com>",
"main": "dist/index.html",
"scripts": {
@@ -27,7 +27,7 @@
"@typescript-eslint/parser": "^5.40.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.25.0",
"eslint": "^8.26.0",
"semantic-release": "^19.0.5",
"typescript": "^4.8.4",
"vite": "3.1.8"
59 changes: 30 additions & 29 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
module.exports = {
branches: ["main"],
plugins: [
[
"@semantic-release/exec",
{
"verifyReleaseCmd": "echo 'export const version = \"'${nextRelease.version}'\";' > .version.ts && cat .version.ts"
}
],
[
"@semantic-release/commit-analyzer",
{
5 changes: 3 additions & 2 deletions src/modules/globals.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { logseq as PL, version } from '../../package.json';
import { logseq as PL } from '../../package.json';
import { version } from '../../.version';

type globalContextType = {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -14,6 +15,6 @@ export const globalContext: globalContextType = {
isSearchOpenedClass: 'is-search-opened',
isThemesOpenedClass: 'is-themes-opened',
isSearchEnabledClass: 'awUi-search',
promoAwesomeStylerMsg: '🐱‍👤 To customize UI & content text/bg colors, install "Awesome Styler" (former "Solarized Extended") theme! https://github.com/yoyurec/logseq-awesome-styler',
promoAwesomeStylerMsg: 'To customize UI & content text/bg colors, install "Awesome Styler" (former "Solarized Extended") theme! https://github.com/yoyurec/logseq-awesome-styler',
tabsPluginIframe: null
};