Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
4502ff6
feat: Add "order" column for ContentTable, and set its as default sor…
cklei-carly Aug 11, 2025
488150d
Update CHANGELOG
cklei-carly Aug 12, 2025
aee7203
feat: Add "Media Picker" & "Content Picker" button to rich editor
cklei-carly Aug 12, 2025
83b9f98
Bugfix:
cklei-carly Aug 13, 2025
2b486e3
Merge branch 'feature/enhance_icon' into feature/trix_fields
cklei-carly Aug 13, 2025
4a09381
feat: Add "Media Picker" & "Content Picker" button to markdown editor
cklei-carly Aug 13, 2025
af2ed52
feat: Refactor MarkdownConverter to use getter methods for configs an…
cklei-carly Aug 13, 2025
56d84f9
Merge branch 'feature/enhance_icon' into feature/trix_fields
cklei-carly Aug 13, 2025
082e049
Merge branch 'feature/trix_fields' into 1.x
cklei-carly Aug 13, 2025
a62697c
Merge branch 'feature/add_content_sorting_options' into 1.x
cklei-carly Aug 13, 2025
99741fd
fix: invalid content pbulish state [https://github.com/orgs/solutionf…
cklei-carly Aug 13, 2025
46a0717
add test cases for content invalid publish state
cklei-carly Aug 13, 2025
feedc6d
Fix styling
cklei-carly Aug 13, 2025
f5e6d98
Update CHANGELOG
cklei-carly Aug 13, 2025
c19b983
Update generate-release-note.yml
cklei-carly Aug 14, 2025
ac650eb
- fix: have error while create user (MySql)
cklei-carly Aug 19, 2025
c69bb4b
Update CHANGELOG
cklei-carly Aug 19, 2025
d8a2331
Update CHANGELOG
cklei-carly Aug 20, 2025
848cd67
Update CHANGELOG
cklei-carly Aug 20, 2025
d0171a3
Update generate-release-note.yml
cklei-carly Aug 22, 2025
bc81ec8
Bump actions/checkout from 4 to 5
dependabot[bot] Aug 22, 2025
fe557da
Merge pull request #8 from solutionforest/dependabot/github_actions/a…
cklei-carly Sep 1, 2025
7f919f4
Merge branch '2.x' into 1_to_2
cklei-carly Sep 2, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/fix-php-code-style-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.head_ref }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: 1.x

Expand Down
26 changes: 24 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

All notable changes to `inspirecms-core` will be documented in this file.

## 1.2.3 - 2025-08-20

<!-- Release notes generated using configuration in .github/release.yml at 1.x -->
### Sync version with support

**Full Changelog**: https://github.com/solutionforest/Inspirecms-core/compare/1.2.2...1.2.3

## 1.2.2 - 2025-08-20

### What's Changed in 1.2.2

#### Sync version with support

### Installation

```bash
composer require solution-forest/inspirecms-core:^1.2.2


```
## 1.2.1 - 2025-08-19

### What's Changed in 1.2.1
Expand All @@ -15,8 +35,9 @@ All notable changes to `inspirecms-core` will be documented in this file.
```bash
composer require solution-forest/inspirecms-core:^1.2.1

```


```
## 1.2.0 - 2025-08-13

### What's Changed in 1.2.0
Expand All @@ -41,8 +62,9 @@ composer require solution-forest/inspirecms-core:^1.2.1
composer require solution-forest/inspirecms-core:^1.2.0


```


```
## 1.1.3 - 2025-08-12

### Sync version with support
Expand Down
10 changes: 10 additions & 0 deletions bin/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,14 @@ compile({
...defaultOptions,
entryPoints: ['./resources/js/components/code-editor.js'],
outfile: './resources/dist/components/code-editor.js',
})
compile({
...defaultOptions,
entryPoints: ['./resources/js/components/markdown-editor.js'],
outfile: './resources/dist/components/markdown-editor.js',
})
compile({
...defaultOptions,
entryPoints: ['./resources/js/rich-editor-enhancement.js'],
outfile: './resources/dist/rich-editor-enhancement.js',
})
203 changes: 191 additions & 12 deletions package-lock.json

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

Loading