hackmac 0.7.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b6c8c5a72ba001479a3511490610728925723af06704fc487d3cc7862f7c3aeb
4
- data.tar.gz: c767b134d22c9eda171cb388749fbabf3bda7068b5a4518718bc87443c2b69cf
3
+ metadata.gz: 7af767d33e759f56b3859b180902074c8dee41ede4dca8e1ce386d78f3876b07
4
+ data.tar.gz: '0940a4ff2b917c27084d84ffef63315471199e973c06fe72843f1ad45efd1f66'
5
5
  SHA512:
6
- metadata.gz: cd8f6268a0f6f689494829be46611f09c26e58667525c8eb29bb89bd604e9221776a5086431289687c66a55e07b032b0fe44e3cf66539c30a9e9f3e346f1e2b8
7
- data.tar.gz: b7bbd7a47a6523906d355078be5ae2de046de4b6b6d9677b333a6c7582fdaa2f1b49bc6d7ba9544f4a2923c9204be577f385bc03300744781b4450f01bd56b97
6
+ metadata.gz: d870311c137b9c23858c59577cdd08fc0711f3d7d74bbcdd8b4c63fe982625f2918a44f2698620b87e66e00f0d09d81d640c99b425b30bb690a421c81a5920b0
7
+ data.tar.gz: 7f47b532331beff3df16b6808e6365e514662098d8538101f1b43dcb8d782be0979ec61d9172e7178f6067c826b07d25fe0100d7c5e46a4b8cf18559febb45f7
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.0
1
+ 0.8.0
data/bin/efi CHANGED
@@ -199,6 +199,9 @@ when 'list'
199
199
  e.Volumes =
200
200
  ContainerDisk.new(disk: e.ParentWholeDisk, limiter: 'internal').VolumesFromDisks
201
201
  end
202
+ aliases = $config.devices.to_h.each_with_object({}) do |(dk,dv),h|
203
+ h[dv[:name]] = dk
204
+ end
202
205
  puts Tabulo::Table.new(efis, align_header: :left, border: :modern) { |t|
203
206
  t.add_column(
204
207
  :Booted,
@@ -206,6 +209,7 @@ when 'list'
206
209
  header_styler: bold_head
207
210
  ) { |e| e.Booted ? ?☑ : ?☐ }
208
211
  t.add_column(:VolumeName, header_styler: bold_head)
212
+ t.add_column(:Alias, header_styler: bold_head) { |e| aliases[e.VolumeName] }
209
213
  t.add_column(:DeviceIdentifier, header_styler: bold_head)
210
214
  t.add_column(:ParentWholeDisk, header_styler: bold_head)
211
215
  t.add_column(:Volumes, header_styler: bold_head) { |e| e.Volumes * ?, }
@@ -1,14 +1,14 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: hackmac 0.7.0 ruby lib
2
+ # stub: hackmac 0.8.0 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "hackmac".freeze
6
- s.version = "0.7.0"
6
+ s.version = "0.8.0"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib".freeze]
10
10
  s.authors = ["Florian Frank".freeze]
11
- s.date = "2020-08-14"
11
+ s.date = "2020-08-17"
12
12
  s.description = "This ruby gem provides some useful tools for working with a Hackintosh.".freeze
13
13
  s.email = "flori@ping.de".freeze
14
14
  s.executables = ["gfxmon".freeze, "usb".freeze, "efi".freeze]
@@ -15,14 +15,14 @@ module Hackmac
15
15
  os: '/Applications/Install macOS Mojave.app'
16
16
  devices:
17
17
  main:
18
- name: EFI
19
- #backup:
20
- # name: BACKUP_EFI
18
+ name: 'OSX_EFI'
19
+ backup:
20
+ name: 'BACKUP_EFI'
21
21
  github:
22
22
  user: null
23
23
  access_token: null
24
24
  kext:
25
- efi_path: EFI/CLOVER/kexts/Other
25
+ efi_path: 'EFI/CLOVER/kexts/Other'
26
26
  sources:
27
27
  AppleALC:
28
28
  github: 'acidanthera/AppleALC'
@@ -30,13 +30,21 @@ module Hackmac
30
30
  github: 'acidanthera/IntelMausi'
31
31
  Lilu:
32
32
  github: 'acidanthera/Lilu'
33
- USBInjectAll:
34
- github: 'Sniki/OS-X-USB-Inject-All'
33
+ #USBInjectAll:
34
+ # github: 'Sniki/OS-X-USB-Inject-All'
35
35
  VirtualSMC:
36
36
  github: 'acidanthera/VirtualSMC'
37
+ debug: false
37
38
  plugins:
38
39
  - SMCProcessor
39
40
  - SMCSuperIO
41
+ BrcmPatchRAM2:
42
+ download:
43
+ name: 'BrcmPatchRAM'
44
+ version: '2.2.10'
45
+ url: 'https://bitbucket.org/RehabMan/os-x-brcmpatchram/downloads/RehabMan-BrcmPatchRAM-2018-0505.zip'
46
+ plugins:
47
+ - BrcmFirmwareData
40
48
  WhateverGreen:
41
49
  github: 'acidanthera/WhateverGreen'
42
50
  end
@@ -1,6 +1,6 @@
1
1
  module Hackmac
2
2
  # Hackmac version
3
- VERSION = '0.7.0'
3
+ VERSION = '0.8.0'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hackmac
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-14 00:00:00.000000000 Z
11
+ date: 2020-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gem_hadar