Skip to content

Releases: p-x9/AppContainer

0.3.1

29 Oct 14:49
f574579
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.3.0...0.3.1

v0.3.0

03 Aug 02:01
fddeb73
Compare
Choose a tag to compare

What's Changed

  • rename plist file for AppContainer settings by @p-x9 in #45

Breaking Changes

Setting plist file path is changed (#45)

Renamed settings file from settings.plist to com.p-x9.AppContainer.settings.plist.

Warning
Information on the currently active container will be lost.
This change will not cause any loss of information for containers other than the currently active container.

If you want to carry over information created in previous versions, you will need to rename the file as follows.

let fileManager = FileManager.default

let home = NSHomeDirectory()
// If you are using it for App Group, change as follows
// let home = fileManager.containerURL(forSecurityApplicationGroupIdentifier: "YOUR APP GROUP IDENTIFIER")!.absoluteString

let libraryPath = home + "/Library"

let oldPath = libraryPath + "/settings.plist"
let newPath = libraryPath + "/com.p-x9.AppContainer.settings.plist"

guard fileManager.fileExists(atPath: oldPath) else { return }
try? fileManager.moveItem(atPath: oldPath, toPath: newPath)

Full Changelog: 0.2.2...0.3.0

v0.2.2

31 Jul 17:11
d951537
Compare
Choose a tag to compare

What's Changed

  • add empty Package.swift by @p-x9 in #43
  • bump EditValueView to 0.4.0 by @p-x9 in #44

Full Changelog: 0.2.1...0.2.2

v0.2.1

21 Jul 14:12
60618a8
Compare
Choose a tag to compare

What's Changed

  • Bump EditValueView to v0.0.7 by @p-x9 in #42

Full Changelog: 0.2.0...0.2.1

v0.2.0

26 Jun 00:13
e64e03a
Compare
Choose a tag to compare

What's Changed

  • enable ExistentialAny by @p-x9 in #39
  • update dependencies by @p-x9 in #41
  • support for customizing files to be excluded from the move target. by @p-x9 in #40

Full Changelog: 0.1.0...0.2.0

v0.1.0

15 Mar 11:39
d770def
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.0.5...0.1.0

0.0.5

11 Jan 18:14
9d89445
Compare
Choose a tag to compare

What's Changed

  • fix to use KeyPathValue package by @p-x9 in #31
  • add swiftlint plug-in by @p-x9 in #26
  • implemented method for clone container by @p-x9 in #32
  • update dependencies by @p-x9 in #34

Full Changelog: 0.0.4...0.0.5

0.0.4

23 Oct 18:53
6dd9ef6
Compare
Choose a tag to compare

What's Changed

  • updated README.md for HTTPCookieStorage by @p-x9 in #27
  • add screenshot of example app by @p-x9 in #28
  • AppContainer UI by @p-x9 in #29

Full Changelog: 0.0.3...0.0.4

0.0.3

12 Oct 13:53
06d027d
Compare
Choose a tag to compare

What's Changed

  • fix UserDefaults suites that should be synchronized by @p-x9 in #25
  • fix to handle files directory under the home directory by @p-x9 in #24

Full Changelog: 0.0.2...0.0.3

0.0.2

08 Oct 06:15
Compare
Choose a tag to compare

What's Changed

  • add default suite name by @p-x9 in #23
  • fix to export http cookies before stashing container by @p-x9 in #22

Full Changelog: 0.0.1...0.0.2