Skip to content
This repository has been archived by the owner on Jan 9, 2021. It is now read-only.

Commit

Permalink
Fix bug where edited provider details weren't persisted.
Browse files Browse the repository at this point in the history
  • Loading branch information
gtritchie committed Aug 31, 2016
1 parent c24d64b commit ce7ff14
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

### 1.0.9 (2016-08-27)

- Fix [Edited provider info doesn't persist across sessions ](https://github.com/gtritchie/WOPIAuth/issues/10)

### 1.0.8 (2016-08-04)

- Fix [Newer authenticated bootstrapper response format not handled correctly](https://github.com/gtritchie/WOPIAuth/issues/9)
Expand Down
4 changes: 2 additions & 2 deletions WOPIAuth/Base.lproj/Main.storyboard
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15G31" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="10117"/>
Expand Down Expand Up @@ -744,7 +744,7 @@
</button>
<popUpButton toolTip="Provider Actions" translatesAutoresizingMaskIntoConstraints="NO" id="srF-bM-lIn" userLabel="Action Menu Button">
<rect key="frame" x="125" y="7" width="38" height="19"/>
<popUpButtonCell key="cell" type="smallSquare" bezelStyle="smallSquare" alignment="center" lineBreakMode="truncatingTail" state="on" imageScaling="proportionallyDown" inset="2" pullsDown="YES" id="q2D-gF-mw8">
<popUpButtonCell key="cell" type="smallSquare" bezelStyle="smallSquare" alignment="center" lineBreakMode="truncatingTail" state="on" imageScaling="proportionallyDown" inset="2" pullsDown="YES" selectedItem="MMu-5S-utC" id="q2D-gF-mw8">
<behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="menu"/>
<menu key="menu" id="NWU-TR-2VF">
Expand Down
2 changes: 1 addition & 1 deletion WOPIAuth/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>8</string>
<string>9</string>
<key>LSApplicationCategoryType</key>
<string></string>
<key>LSMinimumSystemVersion</key>
Expand Down
1 change: 1 addition & 0 deletions WOPIAuth/ProviderListViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ class ProviderListViewController: NSViewController, ProviderDetailEditing, NSTab
}
activeProvider.setPropertiesFrom(provider)
setActiveProvider(activeProvider)
Preferences.providers = providers
}
}

Expand Down

0 comments on commit ce7ff14

Please sign in to comment.