Skip to content

Commit

Permalink
Hotfix/fix disk sidebar crash (#168)
Browse files Browse the repository at this point in the history
* implemented `updateGUIComponents` function

* updated appcast.xml
  • Loading branch information
D0miH authored Apr 26, 2020
1 parent 5400781 commit 7ee4acf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 1 addition & 2 deletions Sparkle/updates/appcast.xml
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,8 @@
https://iglance.github.io/release-notes.html
</sparkle:releaseNotesLink>
<sparkle:minimumSystemVersion>10.12</sparkle:minimumSystemVersion>
<enclosure url="https://github.com/iglance/iGlance/releases/download/v2.0.8/iGlance_v2.0.8.zip" sparkle:version="2.0.8" sparkle:shortVersionString="2.0.8" length="10151873" type="application/octet-stream" sparkle:edSignature="3VAQJl325YqIjzQLybnOyNbAZEbNOeGpu4mCjAYsDMYVyhOfQz04jTu+aICmihQBSf3uFm16Fd2rSWP0WF7pCA=="/>
<enclosure url="https://github.com/iglance/iGlance/releases/download/v2.0.8/iGlance_v2.0.8.zip" sparkle:version="2.0.8" sparkle:shortVersionString="2.0.8" length="10151814" type="application/octet-stream" sparkle:edSignature="NQJYOTB955lzGDjCqEYJOxpQTrKxnBASYvSdkqt8/C7MEyrD1529J86kg9CK4RHDdV95ydGeOrswxRWPa831CA=="/>
<sparkle:deltas>
<enclosure url="https://github.com/raw/iglance/iGlance/master/Sparkle/updates/iGlance2.0.8-2.0.7.delta" sparkle:version="2.0.8" sparkle:shortVersionString="2.0.8" sparkle:deltaFrom="2.0.7" length="748788" type="application/octet-stream" sparkle:edSignature="N3Kz3GZAmTyTg+gBLdD58PV12aC74gI2LHzO0wpizwvk4msTs4YP1JkgeJazMtvG2N6hXekFE4+a+7axwHwuAg=="/>
<enclosure url="https://github.com/raw/iglance/iGlance/master/Sparkle/updates/iGlance2.0.8-2.0.6.delta" sparkle:version="2.0.8" sparkle:shortVersionString="2.0.8" sparkle:deltaFrom="2.0.6" length="745545" type="application/octet-stream" sparkle:edSignature="ajj3AqDPEOQ+w93YVyueRy3Kx04bco/P1YP4vGAZHgB6jUb9aNGdknnG4e53OiTBTibmxZqrnoBUO6DWi0WTBw=="/>
<enclosure url="https://github.com/raw/iglance/iGlance/master/Sparkle/updates/iGlance2.0.8-2.0.5.delta" sparkle:version="2.0.8" sparkle:shortVersionString="2.0.8" sparkle:deltaFrom="2.0.5" length="762836" type="application/octet-stream" sparkle:edSignature="79Tp8AxiXOLEslRqvy61XkV1BLpmTK3V3w7ekXJaULzSQ797VAQFszgzgdbTkvj9pzc/d7rhb9fEkqSTxqLJAw=="/>
<enclosure url="https://github.com/raw/iglance/iGlance/master/Sparkle/updates/iGlance2.0.8-2.0.4.delta" sparkle:version="2.0.8" sparkle:shortVersionString="2.0.8" sparkle:deltaFrom="2.0.4" length="772147" type="application/octet-stream" sparkle:edSignature="E9EsJmGtlJsJ9ozrt31HJD/olTmWbdiOen0D/CPPJYZRyR6XVWOFssVct77PmOZUjiw+5ZAfxEyH3vCSRlPLAg=="/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ class DiskViewController: MainViewViewController {
// MARK: Outlets
@IBOutlet private var diskkUsageCheckbox: NSButton!

// MARK: -
// MARK: Function Overrides
override func updateGUIComponents() {
// Call didSet methods of all GUI components
self.diskkUsageCheckbox = { self.diskkUsageCheckbox }()
}

// MARK: -
// MARK: Actions

Expand Down

0 comments on commit 7ee4acf

Please sign in to comment.