Skip to content

Commit 8ceff5e

Browse files
committed
Misc Tweaks
1 parent f76d6c2 commit 8ceff5e

5 files changed

Lines changed: 29 additions & 28 deletions

File tree

.github/workflows/add-label.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
# Configuration for Handling Stale Threads - https://github.com/marketplace/actions/stale
2-
# Configuration for Locking Threads - https://github.com/marketplace/actions/lock-threads
3-
4-
name: 'Manage Issues'
1+
name: 'Issues'
52

63
on:
4+
issues:
5+
types: opened
76
workflow_dispatch:
87
schedule:
98
- cron: '1 1 * * *'
@@ -15,9 +14,26 @@ concurrency:
1514
group: lock
1615

1716
jobs:
17+
18+
# Add Labels - https://github.com/actions-ecosystem/action-add-labels
19+
add_label:
20+
name: Default Issue Label
21+
runs-on: ubuntu-latest
22+
23+
if: github.event_name == 'issues' && github.event.action == 'opened'
24+
steps:
25+
- uses: actions/checkout@v2
26+
- uses: actions-ecosystem/action-add-labels@v1
27+
with:
28+
github_token: ${{ github.token }}
29+
labels: Pending
30+
31+
# Handle Stale Threads - https://github.com/actions/stale
1832
stale:
1933
name: Flag or Close Issues
2034
runs-on: ubuntu-latest
35+
36+
if: github.event_name != 'issues'
2137
steps:
2238

2339
- name: Flag or Close Incomplete Issues
@@ -126,9 +142,12 @@ jobs:
126142
stale-issue-label: 'Flagged'
127143
only-issue-labels: 'WontFix'
128144

145+
# Lock Threads - https://github.com/dessant/lock-threads
129146
lock:
130147
name: Lock Threads
131148
runs-on: ubuntu-latest
149+
150+
if: github.event_name != 'issues'
132151
steps:
133152

134153
- name: Lock Incomplete Issues

NEWS.txt

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,16 @@
1616
- Fixes 'BootKicker' and 'CleanNvram' Amongst Others
1717
* Misc memory management defects had disabled both
1818
- Fixes for 'BTRFS' and 'NTFS' Filesystem Drivers from GitHub user @Joevt
19-
* BTRFS: ixes file creation date bug
19+
* BTRFS: Fixes file creation date bug
2020
* NTFS: Fixes file creation date bug
21-
* NTFS: Adds some comments to describe some fields that were only referenced by offset.
2221
* NTFS: Fixed "attribute_sparse" and "attribute_encrypted" which were not testing those flags correctly
23-
- The field is a USHORT (16 bit)
22+
- The field is a USHORT (Unsigned 16-bit integer) but was handled as a BYTE (Unsigned 8-bit integer)
2423
* NTFS: Fixes a bug where "read_attribute_direct" could write outside the attribute destination buffer.
2524
- "olen" can become negative and could be passed to "CopyMem", which requires an unsigned length.
2625
- Improves 'SyncAPFS'
2726
* APFS Volume Groups can now be identified along with the earlier identified 'Disk Roles'
2827
* This significantly improves determination of APFS Volume Types/Roles
29-
* Restrictions limiting features to setups with only one APFS instance per container are removed
28+
* Restrictions limiting some features to setups with only one APFS instance per container are now removed
3029
* This is a port of the downstream implementation by GitHub user @Joevt
3130
- Amends Log Levels
3231
* LogLevel 0 remains as a native summary format
@@ -38,7 +37,7 @@
3837
* When LogLevel 2 is exposed, selected levels above two (2) will be capped at LogLevel 2
3938
- Initial activation of fixes on Mac Recovery For Mac OS 11 (Big Sur) and Later
4039
* IMPORTANT:
41-
- This implementation is still a work in progress
40+
- This implementation is still a work in progress ... feedback required/welcome
4241

4342

4443
0.13.2.AK (07 Dec 2021):

README-Dev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ However, the enhancements RefindPlus adds to rEFInd are not limited in scope to
3333
## Installation
3434
[MyBootMgr](https://www.dakanji.com/creations/index.html), an automated implementation of a RefindPlus/OpenCore chain-loading arrangement is recommended for implementation on MacPro3,1 to MacPro5,1 as well as on XServe2,1 and XServe3,1. However, the RefindPlus efi file can function as a drop-in replacement for the rEFInd efi file. Hence, you can install the [rEFInd package](https://www.rodsbooks.com/refind/installing.html) first and replace the rEFInd efi file with the RefindPlus efi file. (Ensure you rename the RefindPlus efi file to match). This permits implementing RefindPlus on other types of Mac as well as on other operating systems.
3535

36-
Users may also want to replace filesystem drivers with those packaged with RefindPlus as these are always either exactly the same as from rEFInd or with fixes applied.
36+
Users may also want to replace filesystem drivers with those packaged with RefindPlus as these are always either exactly the same as upstream versions or have had fixes applied.
3737

3838
RefindPlus will function with the rEFInd configuration file, `refind.conf`. This should however be replaced with the RefindPlus configuration file, `config.conf`, to configure the additonal options provided by RefindPlus. A sample RefindPlus configuration file is available here: [config.conf-sample](https://github.com/dakanji/RefindPlus/blob/GOPFix/config.conf-sample).
3939

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ However, the enhancements RefindPlus adds to rEFInd are not limited in scope to
3333
## Installation
3434
[MyBootMgr](https://www.dakanji.com/creations/index.html), an automated implementation of a RefindPlus/OpenCore chain-loading arrangement is recommended for implementation on MacPro3,1 to MacPro5,1 as well as on XServe2,1 and XServe3,1. However, the RefindPlus efi file can function as a drop-in replacement for the rEFInd efi file. Hence, you can install the [rEFInd package](https://www.rodsbooks.com/refind/installing.html) first and replace the rEFInd efi file with the RefindPlus efi file. (Ensure you rename the RefindPlus efi file to match). This permits implementing RefindPlus on other types of Mac as well as on other operating systems.
3535

36-
Users may also want to replace filesystem drivers with those packaged with RefindPlus as these are always either exactly the same as from rEFInd or with fixes applied.
36+
Users may also want to replace filesystem drivers with those packaged with RefindPlus as these are always either exactly the same as upstream versions or have had fixes applied.
3737

3838
RefindPlus will function with the rEFInd configuration file, `refind.conf`. This should however be replaced with the RefindPlus configuration file, `config.conf`, to configure the additonal options provided by RefindPlus. A sample RefindPlus configuration file is available here: [config.conf-sample](https://github.com/dakanji/RefindPlus/blob/GOPFix/config.conf-sample).
3939

0 commit comments

Comments
 (0)