Skip to content

Commit

Permalink
better
Browse files Browse the repository at this point in the history
  • Loading branch information
roothider committed Jun 9, 2024
1 parent faaad91 commit 827e0b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
export THEOS="${BASEDIR}/theos"
typeset itemcount=$(plutil -extract items raw -expect array ./Application/Dopamine/UI/Settings/Credits.plist)
for ((i=0; i<$itemcount; i++)); do if [ "$(plutil -extract items.$i.headerCellClass raw ./Application/Dopamine/UI/Settings/Credits.plist)" = "DOCreditsCell" ]; then DOCreditsCellIndex=$i; fi done;
plutil -insert items.$DOCreditsCellIndex.names -xml "<dict><key>name</key><string>${{ github.actor }}</string><key>link</key><string>https://github.com/${{ github.actor }}/Dopamine2-roothide</string></dict>" -append ./Application/Dopamine/UI/Settings/Credits.plist
plutil -insert items.$DOCreditsCellIndex.names -xml "<dict><key>name</key><string>${{ github.actor }}</string><key>link</key><string>https://github.com/${{ github.repository }}</string></dict>" -append ./Application/Dopamine/UI/Settings/Credits.plist
gmake -j$(sysctl -n hw.physicalcpu) NIGHTLY=1
TAG=$(git describe --tags --abbrev=0)
mv ./Application/Dopamine.tipa "./Application/roothide-Dopamine2-v${TAG}.tipa"
Expand Down
2 changes: 1 addition & 1 deletion Application/Dopamine/UI/Update/DOUpdateViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ - (void)viewDidLoad {

BOOL envUpdate = [[DOUIManager sharedInstance] environmentUpdateAvailable];

self.button = [DOActionMenuButton buttonWithAction:[UIAction actionWithTitle:DOLocalizedString(envUpdate ? @"Button_Reboot_Device" : @"Button_Update") image:[UIImage systemImageNamed:@"arrow.down" withConfiguration:[DOGlobalAppearance smallIconImageConfiguration]] identifier:@"update" handler:^(__kindof UIAction * _Nonnull action) {
self.button = [DOActionMenuButton buttonWithAction:[UIAction actionWithTitle:DOLocalizedString(envUpdate ? @"Button_Reboot_Device" : @"Button_Update") image:[UIImage systemImageNamed:(envUpdate ? @"arrow.clockwise.circle" : @"arrow.down") withConfiguration:[DOGlobalAppearance smallIconImageConfiguration]] identifier:@"update" handler:^(__kindof UIAction * _Nonnull action) {
if (envUpdate)
{
[[DOEnvironmentManager sharedManager] reboot];
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Dopamine2-roothide

- Document: https://github.com/RootHide/Developer
- Document: https://github.com/roothide/Developer

- Support: https://twitter.com/RootHideDev
- Support: https://twitter.com/roothideDev

- Discord: https://discord.com/invite/scqCkumAYp

Expand Down

0 comments on commit 827e0b1

Please sign in to comment.