Skip to content

Releases: cybozu/LicenseList

1.1.1

10 Sep 08:04
a745840
Compare
Choose a tag to compare

Modifications

  • Added accessibility identifier to View element. by @Kyome22 in #48

Full Changelog: 1.1.0...1.1.1

1.1.0

06 Sep 01:37
2385dc3
Compare
Choose a tag to compare

Breaking Change

  • Allows the Style of LicenseListView and LicenseView to be customized. by @Kyome22 in #47
    • You can customize the styles of LicenseListView and LicenseView.
      // Example
      struct MyLicenseViewStyle: LicenseViewStyle {
          func makeBody(configuration: Configuration) -> some View {
              VStack {
                  HStack {
                      Spacer()
                      Button {
                          if let url = configuration.library.url {
                              configuration.openURL(url)
                          }
                      } label: {
                          Image(systemName: "link")
                      }
                  }
                  Text(configuration.library.licenseBody)
                      .multilineTextAlignment(.center)
              }
          }
      }
      
      LicenseListView()
          .licenseViewStyle(MyLicenseViewStyle())

Modifications

  • Supported tvOS (17.0+) 🎉.

Full Changelog: 1.0.0...1.1.0

1.0.0

08 Jul 09:51
Compare
Choose a tag to compare

Breaking Change

  • End to support iOS 14 by @Kyome22 in #36
  • Renamed to LicenseViewStyle from LicenseListViewStyle by @Kyome22 in #43

Deployed

The documentation is deployed on GitHub Pages. 🎉
https://cybozu.github.io/LicenseList/documentation/licenselist/

Modifications

Full Changelog: 0.7.0...1.0.0

0.7.0

18 Apr 08:25
0828b88
Compare
Choose a tag to compare

Modifications

  • Remove info-macos.json.template by @Kyome22 in #31
  • Remove Privacy Manifest by @Kyome22 in #32
  • Remove unnecessary argument (useUINavigationController) by @Kyome22 in #33

Full Changelog: 0.6.0...0.7.0

0.6.0

29 Feb 08:56
37fd936
Compare
Choose a tag to compare

Breaking Change

  • Change SourcePackagesParser to internal target. by @Kyome22 in #29
    Ended support swift-packages-parser-macos.artifactbundle

Modifications

Full Changelog: 0.5.1...0.6.0

0.5.1 (Feb 28, 2024)

28 Feb 14:45
ead4c4c
Compare
Choose a tag to compare

Modifications

  • Added Privacy Manifest File by @Kyome22 in #25
  • Fix error message (license-list.plist to LicenseList.swift) by @Kyome22 in #26

checksum: d3846a697313a2da6c853b0a97bebc5b4ca6477eaaf3b85de56c169043d93b31

Full Changelog: 0.5.0...0.5.1

0.5.0 (Feb 20, 2024)

20 Feb 02:44
814e3a9
Compare
Choose a tag to compare

Breaking Change

  • Changed to generate a swift file instead of a plist file so that it can be built with Xcode Cloud. by @Kyome22 in #24
    • LicenseListView.init(bundle: Bundle) have been deprecated.
    • "Prepare LicenseList (Plugin)" is no longer required. So you need to remove this from your project.

checksum: 5acc20458ff91c0dac8b4e93803d23ced04ea93f14dcd46147b10ab5fdec1ca2

Full Changelog: 0.4.2...0.5.0

0.4.2 (Feb 07, 2024)

07 Feb 07:04
Compare
Choose a tag to compare

Modifications

checksum: 3c786fbba810a05791bc69339b89b62d24e925010f75cebd5de65e5a29161130

Full Changelog: 0.4.0...0.4.2

0.4.0 (Nov 22, 2023)

22 Nov 06:47
Compare
Choose a tag to compare

Breaking Change

  • LicenseList has ended support for iOS 13.

Modifications

  • Refactoring SourcePackagesNotfoundError by @Kyome22 in #19
  • Include URL in library information by @SNQ-2001 in #21
    anchor
    NavigationView {
      NavigationLink("License") {
          LicenseListView()
    +         .licenseListViewStyle(.withRepositoryAnchorLink)
              .navigationTitle("LICENSE")
              .navigationBarTitleDisplayMode(.inline)
      }
    }

checksum: bcccd07b497020461bf37c3bf1ce9bb46904ef42fec076bd30c333282e89248f

Full Changelog: 0.3.2...0.4.0

0.3.2 (Sep 29, 2023)

29 Sep 01:26
49cd857
Compare
Choose a tag to compare

Modifications

  • Create CONTRIBUTING.md by @elmetal in #17
  • Fixed a bug caused by hyperlinks by @Kyome22 in #18
  • Improve layout of scroll bars in LicenseView (Take 2) by @Kyome22 in #15

checksum: aebbb78b17b3e9c688948323a65b578623df8d1061557d40f2733093ddff4f86

New Contributors

Full Changelog: 0.3.1...0.3.2