Compare commits
5 commits
Author | SHA1 | Date | |
---|---|---|---|
a83731c652 | |||
ec9a181a51 | |||
6909790de6 | |||
db631bd778 | |||
1b8b3f8ad7 |
5 changed files with 31 additions and 23 deletions
12
.github/workflows/ci.yml
vendored
12
.github/workflows/ci.yml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
||||||
run: echo "NCC_DIR=$(find build/ -type d -name 'ncc_*' | head -n 1)" >> $GITHUB_ENV
|
run: echo "NCC_DIR=$(find build/ -type d -name 'ncc_*' | head -n 1)" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Upload NCC build directory
|
- name: Upload NCC build directory
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ncc-build
|
name: ncc-build
|
||||||
path: ${{ env.NCC_DIR }}
|
path: ${{ env.NCC_DIR }}
|
||||||
|
@ -59,7 +59,7 @@ jobs:
|
||||||
run: zip -r redist.zip ${{ env.NCC_DIR }}
|
run: zip -r redist.zip ${{ env.NCC_DIR }}
|
||||||
|
|
||||||
- name: Upload redist.zip
|
- name: Upload redist.zip
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: redist-zip
|
name: redist-zip
|
||||||
path: redist.zip
|
path: redist.zip
|
||||||
|
@ -72,7 +72,7 @@ jobs:
|
||||||
run: echo "DEB_FILE=$(find build/ -type f -name '*.deb' | head -n 1)" >> $GITHUB_ENV
|
run: echo "DEB_FILE=$(find build/ -type f -name '*.deb' | head -n 1)" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Upload Debian package
|
- name: Upload Debian package
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ncc-deb
|
name: ncc-deb
|
||||||
path: ${{ env.DEB_FILE }}
|
path: ${{ env.DEB_FILE }}
|
||||||
|
@ -83,7 +83,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Download NCC build directory
|
- name: Download NCC build directory
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ncc-build
|
name: ncc-build
|
||||||
path: build
|
path: build
|
||||||
|
@ -107,13 +107,13 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Download redist.zip
|
- name: Download redist.zip
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: redist-zip
|
name: redist-zip
|
||||||
path: .
|
path: .
|
||||||
|
|
||||||
- name: Download Debian package
|
- name: Download Debian package
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ncc-deb
|
name: ncc-deb
|
||||||
path: .
|
path: .
|
||||||
|
|
|
@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [2.1.8] - 2025-03-17
|
||||||
|
|
||||||
|
This update introduces a temporary fix
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- (Temporary) removed the ability to delete cache files because it's deleting important files that are needed.
|
||||||
|
|
||||||
|
|
||||||
## [2.1.7] - 2025-03-17
|
## [2.1.7] - 2025-03-17
|
||||||
|
|
||||||
This update introduces a quality of life improvement
|
This update introduces a quality of life improvement
|
||||||
|
|
|
@ -65,21 +65,21 @@
|
||||||
*/
|
*/
|
||||||
public static function shutdown(): void
|
public static function shutdown(): void
|
||||||
{
|
{
|
||||||
if(count(self::$cleanupPaths) > 0)
|
//if(count(self::$cleanupPaths) > 0)
|
||||||
{
|
//{
|
||||||
$filesystem = new Filesystem();
|
// $filesystem = new Filesystem();
|
||||||
foreach(self::$cleanupPaths as $path)
|
// foreach(self::$cleanupPaths as $path)
|
||||||
{
|
// {
|
||||||
try
|
// try
|
||||||
{
|
// {
|
||||||
$filesystem->remove($path);
|
// $//filesystem->remove($path);
|
||||||
}
|
// }
|
||||||
catch(Exception $e)
|
// catch(Exception $e)
|
||||||
{
|
// {
|
||||||
Console::outWarning('An error occurred while cleaning up temporary path "' . $path . '", ' . $e->getMessage());
|
// Console::outWarning('An error occurred while cleaning up temporary path "' . $path . '", ' . $e->getMessage());
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
//}
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
2.1.7
|
2.1.8
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"version": "2.1.7",
|
"version": "2.1.8",
|
||||||
"branch": "stable",
|
"branch": "stable",
|
||||||
"flags": [],
|
"flags": [],
|
||||||
"components": [
|
"components": [
|
||||||
|
|
Loading…
Add table
Reference in a new issue