Skip to content

Commit be03467

Browse files
Update - 2025-October
1 parent 44a4ec1 commit be03467

File tree

38 files changed

+48
-48
lines changed

38 files changed

+48
-48
lines changed

.github/workflows/bump-date.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- name: Check out 2025-September
20+
- name: Check out 2025-October
2121
uses: actions/checkout@v5.0.0
2222
with:
23-
ref: 2025-September
23+
ref: 2025-October
2424

25-
- name: Bump Date (2025-September)
25+
- name: Bump Date (2025-October)
2626
run: |
2727
if [[ ! "$( git log -1 --pretty=%B )" =~ ^\[cron\] ]]; then
2828
shopt -s globstar && \

.github/workflows/check-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
bad_target:
1414
name: Bad PR Target
15-
if: github.repository == 'classicrocker883/MRiscoCProUI' && github.event.pull_request.base.ref != '2025-September'
15+
if: github.repository == 'classicrocker883/MRiscoCProUI' && github.event.pull_request.base.ref != '2025-October'
1616

1717
runs-on: ubuntu-latest
1818

.github/workflows/ci-build-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name: CI - Build Tests
88
on:
99
pull_request:
1010
branches:
11-
- 2025-September
11+
- 2025-October
1212
paths-ignore:
1313
- configurations/**
1414
- display assets/**
@@ -22,7 +22,7 @@ on:
2222
- "**/*.md"
2323
push:
2424
branches:
25-
- 2025-September
25+
- 2025-October
2626
paths-ignore:
2727
- configurations/**
2828
- display assets/**

.github/workflows/ci-unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name: CI - Unit Tests
88
on:
99
pull_request:
1010
branches:
11-
- 2025-September
11+
- 2025-October
1212
paths-ignore:
1313
- configurations/**
1414
- display assets/**
@@ -22,7 +22,7 @@ on:
2222
- "**/*.md"
2323
push:
2424
branches:
25-
- 2025-September
25+
- 2025-October
2626
paths-ignore:
2727
- configurations/**
2828
- display assets/**

.github/workflows/ci-validate-boards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ name: CI - Validate boards.h
99
on:
1010
pull_request:
1111
branches:
12-
- 2025-September
12+
- 2025-October
1313
paths:
1414
- "Marlin/src/core/boards.h"
1515
push:
1616
branches:
17-
- 2025-September
17+
- 2025-October
1818
paths:
1919
- "Marlin/src/core/boards.h"
2020

.github/workflows/ci-validate-lines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ name: CI - Validate Source Files
88
on:
99
pull_request:
1010
branches:
11-
- 2025-September
11+
- 2025-October
1212
push:
1313
branches:
14-
- 2025-September
14+
- 2025-October
1515

1616
jobs:
1717
validate_source_files:

.github/workflows/ci-validate-pins.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ name: CI - Validate Pins Files
88
on:
99
pull_request:
1010
branches:
11-
- 2025-September
11+
- 2025-October
1212
# Cannot be enabled on 2.1.x until it contains the unit test framework
1313
#- 2.1.x
1414
paths:
1515
- "Marlin/src/pins/*/**"
1616
push:
1717
branches:
18-
- 2025-September
18+
- 2025-October
1919
# Cannot be enabled on 2.1.x until it contains the unit test framework
2020
#- 2.1.x
2121
paths:

.github/workflows/compile-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,24 @@ on:
88
jobs:
99
build-ender3:
1010
if: contains(github.event.release.tag_name, 'ender3')
11-
uses: classicrocker883/MRiscoCProUI/.github/workflows/compile-configs_ender3.yml@2025-September
11+
uses: classicrocker883/MRiscoCProUI/.github/workflows/compile-configs_ender3.yml@2025-October
1212
with:
1313
target: ender3
1414

1515
build-hc32:
1616
if: contains(github.event.release.tag_name, 'HC32')
17-
uses: classicrocker883/MRiscoCProUI/.github/workflows/compile-configs_HC32.yml@2025-September
17+
uses: classicrocker883/MRiscoCProUI/.github/workflows/compile-configs_HC32.yml@2025-October
1818
with:
1919
target: HC32
2020

2121
build-c2:
2222
if: contains(github.event.release.tag_name, 'C2')
23-
uses: classicrocker883/MRiscoCProUI/.github/workflows/compile-configs_C2.yml@2025-September
23+
uses: classicrocker883/MRiscoCProUI/.github/workflows/compile-configs_C2.yml@2025-October
2424
with:
2525
target: C2
2626

2727
build-aquila:
2828
if: ${{ !contains(github.event.release.tag_name, 'ender3') && !contains(github.event.release.tag_name, 'HC32') && !contains(github.event.release.tag_name, 'C2')}}
29-
uses: classicrocker883/MRiscoCProUI/.github/workflows/compile-configs.yml@2025-September
29+
uses: classicrocker883/MRiscoCProUI/.github/workflows/compile-configs.yml@2025-October
3030
with:
3131
target: aquila

Marlin/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Marlin release version identifier
3030
*/
31-
#define SHORT_BUILD_VERSION "2.1.3g-9"
31+
#define SHORT_BUILD_VERSION "2.1.3g-10"
3232

3333
/**
3434
* Verbose version identifier which should contain a reference to the location

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ G32, N32, H32, Creality 4.2.7 and 4.2.2 boards<br>
4242
4343
> [!NOTE]
4444
> I will be working on more updates, features, and tweaks along the way.
45-
> Much has been included in MRiscoCProUI releases, the most recent of which is **2025-September**.
45+
> Much has been included in MRiscoCProUI releases, the most recent of which is **2025-October**.
4646
> There are all kinds of versions and combinations to suite a specific printer, and changes to the **UI** and menu layout which are not available in any other fork.
4747
> For information about recent changes visit the [Wiki - What's New in this Release](https://github.com/classicrocker883/MRiscoCProUI/wiki/What's-New-in-this-Release).
4848
> Support for _12864 Monochrome_ LCD types is under the model **C2**.

0 commit comments

Comments
 (0)