diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e6fd5e..64b5392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ +# 2.0.0 +- Minimizable TPTweakViewController with `TPTweakViewController.presentMinimizableTweaks` +- Hold navigation controller to peep the background(only available on non minimizable mode) +- now every option will have completions +- add Settings menu for setting up TPTweakViewController +- add an empty state message on the favourite page +- fix the favorite page not reflecting the latest value after modifying one of the cells. # 1.2.0 - Add Search functionality ([#11](https://github.com/tokopedia/ios-tptweak/pull/11)) diff --git a/Example/Example/AppDelegate.swift b/Example/Example/AppDelegate.swift index 0f62778..b5a6841 100644 --- a/Example/Example/AppDelegate.swift +++ b/Example/Example/AppDelegate.swift @@ -1,4 +1,4 @@ -// Copyright 2022 Tokopedia. All rights reserved. +// Copyright 2022-2024 Tokopedia. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/Example/Example/TPTweakEntry+Extension.swift b/Example/Example/TPTweakEntry+Extension.swift index dcc2c07..a65e90a 100644 --- a/Example/Example/TPTweakEntry+Extension.swift +++ b/Example/Example/TPTweakEntry+Extension.swift @@ -1,4 +1,4 @@ -// Copyright 2022 Tokopedia. All rights reserved. +// Copyright 2022-2024 Tokopedia. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/Example/Example/TrackingHistoryViewController.swift b/Example/Example/TrackingHistoryViewController.swift index b326f00..94b0656 100644 --- a/Example/Example/TrackingHistoryViewController.swift +++ b/Example/Example/TrackingHistoryViewController.swift @@ -1,4 +1,4 @@ -// Copyright 2022 Tokopedia. All rights reserved. +// Copyright 2022-2024 Tokopedia. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/Example/Example/ViewController.swift b/Example/Example/ViewController.swift index 019314a..78f93e1 100644 --- a/Example/Example/ViewController.swift +++ b/Example/Example/ViewController.swift @@ -1,4 +1,4 @@ -// Copyright 2022 Tokopedia. All rights reserved. +// Copyright 2022-2024 Tokopedia. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/LICENSE.md b/LICENSE.md index 5065ae9..6c21786 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2022 Tokopedia + Copyright 2022-2024 Tokopedia Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index 23d9846..c292250 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,13 @@ https://github.com/tokopedia/ios-tptweak or manually add to your `Package.swift` ```swift -.package(url: "https://github.com/tokopedia/ios-tptweak", from: "1.0.0"), +.package(url: "https://github.com/tokopedia/ios-tptweak", from: "2.0.0"), ``` # Cocoapods add this to your `Podfile` ``` -pod 'TPTweak', '~> 1.0.0' +pod 'TPTweak', '~> 2.0.0' ``` # Nomenclature @@ -178,7 +178,7 @@ TPTweakEntry.enableTracking.setValue(true) # License ``` - Copyright 2022 Tokopedia. All rights reserved. + Copyright 2022-2024 Tokopedia. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Sources/TPTweak/TPTweakEntry.swift b/Sources/TPTweak/TPTweakEntry.swift index e4b921c..92c01a7 100644 --- a/Sources/TPTweak/TPTweakEntry.swift +++ b/Sources/TPTweak/TPTweakEntry.swift @@ -1,4 +1,4 @@ -// Copyright 2022 Tokopedia. All rights reserved. +// Copyright 2022-2024 Tokopedia. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/Sources/TPTweak/TPTweakOptionsViewController.swift b/Sources/TPTweak/TPTweakOptionsViewController.swift index cfaec9a..24c4fdc 100644 --- a/Sources/TPTweak/TPTweakOptionsViewController.swift +++ b/Sources/TPTweak/TPTweakOptionsViewController.swift @@ -1,4 +1,4 @@ -// Copyright 2022 Tokopedia. All rights reserved. +// Copyright 2022-2024 Tokopedia. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/Sources/TPTweak/TPTweakPickerViewController.swift b/Sources/TPTweak/TPTweakPickerViewController.swift index e2ac098..a540d24 100644 --- a/Sources/TPTweak/TPTweakPickerViewController.swift +++ b/Sources/TPTweak/TPTweakPickerViewController.swift @@ -1,4 +1,4 @@ -// Copyright 2022 Tokopedia. All rights reserved. +// Copyright 2022-2024 Tokopedia. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/Sources/TPTweak/TPTweakShakeWindow.swift b/Sources/TPTweak/TPTweakShakeWindow.swift index d732145..58db3e5 100644 --- a/Sources/TPTweak/TPTweakShakeWindow.swift +++ b/Sources/TPTweak/TPTweakShakeWindow.swift @@ -1,4 +1,4 @@ -// Copyright 2022 Tokopedia. All rights reserved. +// Copyright 2022-2024 Tokopedia. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/Sources/TPTweak/TPTweakStore.swift b/Sources/TPTweak/TPTweakStore.swift index 056a2b8..58a5d54 100644 --- a/Sources/TPTweak/TPTweakStore.swift +++ b/Sources/TPTweak/TPTweakStore.swift @@ -1,4 +1,4 @@ -// Copyright 2022 Tokopedia. All rights reserved. +// Copyright 2022-2024 Tokopedia. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/Sources/TPTweak/TPTweakViewController.swift b/Sources/TPTweak/TPTweakViewController.swift index 5a9406b..9378b82 100644 --- a/Sources/TPTweak/TPTweakViewController.swift +++ b/Sources/TPTweak/TPTweakViewController.swift @@ -1,4 +1,4 @@ -// Copyright 2022 Tokopedia. All rights reserved. +// Copyright 2022-2024 Tokopedia. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/TPTweak.podspec b/TPTweak.podspec index 2bc82d9..20e9e1a 100644 --- a/TPTweak.podspec +++ b/TPTweak.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "TPTweak" - spec.version = "1.2.0" + spec.version = "2.0.0" spec.summary = "TPTweak is a debugging tool to help adjust your iOS app on the fly without recompile" spec.license = { :type => "Apache 2.0", :file => "LICENSE.md" } diff --git a/Tests/TPTweakTests/TPTweakTests.swift b/Tests/TPTweakTests/TPTweakTests.swift index 8c4b925..9a23566 100644 --- a/Tests/TPTweakTests/TPTweakTests.swift +++ b/Tests/TPTweakTests/TPTweakTests.swift @@ -1,4 +1,4 @@ -// Copyright 2022 Tokopedia. All rights reserved. +// Copyright 2022-2024 Tokopedia. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.