diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f4d858a..8e40d81 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,9 +6,9 @@ To clone the [fastlane](https://fastlane.tools) repos, use the [countdown](https Before submitting a new issue, do the following: -- Verify you're runing the latest version by running `snapshot -v` and compare it with the [project page on GitHub](https://github.com/KrauseFx/snapshot). +- Verify you're runing the latest version by running `snapshot -v` and compare it with the [project page on GitHub](https://github.com/fastlane/snapshot). - Verify you have Xcode tools installed by running `xcode-select --install`. -- Make sure to read through the [README](https://github.com/KrauseFx/snapshot) of the project. +- Make sure to read through the [README](https://github.com/fastlane/snapshot) of the project. When submitting a new issue, please provide the following information: diff --git a/MigrationGuide.md b/MigrationGuide.md index cf05b04..1dc25c5 100644 --- a/MigrationGuide.md +++ b/MigrationGuide.md @@ -28,4 +28,4 @@ How to migrate: - Update to the new version using `sudo gem update snapshot` - Delete `snapshot.js`, `SnapshotHelper.js` and `Snapfile` and any other files you were using -- Follow the [Quick Start Guide](https://github.com/KrauseFx/snapshot#quick-start) +- Follow the [Quick Start Guide](https://github.com/fastlane/snapshot#quick-start) diff --git a/README.md b/README.md index 0e83371..b82513a 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ snapshot ============ -[![Twitter: @KauseFx](https://img.shields.io/badge/contact-@KrauseFx-blue.svg?style=flat)](https://twitter.com/KrauseFx) +[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools) [![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/snapshot/blob/master/LICENSE) [![Gem](https://img.shields.io/gem/v/snapshot.svg?style=flat)](http://rubygems.org/gems/snapshot) @@ -49,7 +49,7 @@ More information about [creating perfect screenshots](https://krausefx.com/blog/ `snapshot` runs completely in the background - you can do something else, while your computer takes the screenshots for you. -Get in contact with the developer on Twitter: [@KrauseFx](https://twitter.com/KrauseFx) +Get in contact with the developer on Twitter: [@FastlaneTools](https://twitter.com/FastlaneTools) ### Note: New `snapshot` with UI Tests in Xcode 7 diff --git a/bin/snapshot b/bin/snapshot index e785241..110b678 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -15,7 +15,7 @@ class SnapshotApplication program :description, 'CLI for \'snapshot\' - Automate taking localized screenshots of your iOS app on every device' program :help, 'Author', 'Felix Krause ' program :help, 'Website', 'https://fastlane.tools' - program :help, 'GitHub', 'https://github.com/krausefx/snapshot' + program :help, 'GitHub', 'https://github.com/fastlane/snapshot' program :help_formatter, :compact global_option('--verbose', 'Shows a more verbose output') { $verbose = true } diff --git a/example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xccheckout b/example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xccheckout index 1840c47..c6eb7d3 100644 --- a/example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xccheckout +++ b/example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xccheckout @@ -11,7 +11,7 @@ IDESourceControlProjectOriginsDictionary 0C13013A15CBECA0A0F90171BFF095518AA5D530 - https://github.com/KrauseFx/snapshot.git + https://github.com/fastlane/snapshot.git IDESourceControlProjectPath example/Example.xcodeproj @@ -21,7 +21,7 @@ ../../.. IDESourceControlProjectURL - https://github.com/KrauseFx/snapshot.git + https://github.com/fastlane/snapshot.git IDESourceControlProjectVersion 111 IDESourceControlProjectWCCIdentifier diff --git a/example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xcscmblueprint b/example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xcscmblueprint index c6f928b..698114d 100644 --- a/example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xcscmblueprint +++ b/example/Example.xcodeproj/project.xcworkspace/xcshareddata/Example.xcscmblueprint @@ -17,7 +17,7 @@ "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "example\/Example.xcodeproj", "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ { - "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/KrauseFx\/snapshot.git", + "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "https:\/\/github.com\/fastlane\/snapshot.git", "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "0C13013A15CBECA0A0F90171BFF095518AA5D530" }, diff --git a/fastlane/Fastfile b/fastlane/Fastfile index efe9ca0..df97c81 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -1,2 +1,2 @@ # Fetch and use the latest Fastfile from the fastlane main repository -import_from_git(url: "https://github.com/krausefx/fastlane/") +import_from_git(url: "https://github.com/fastlane/fastlane/") diff --git a/lib/assets/SnapshotHelper.swift b/lib/assets/SnapshotHelper.swift index 1f912a9..8aa0522 100644 --- a/lib/assets/SnapshotHelper.swift +++ b/lib/assets/SnapshotHelper.swift @@ -66,7 +66,7 @@ class Snapshot: NSObject { waitForLoadingIndicatorToDisappear() } - print("snapshot: \(name)") // more information about this, check out https://github.com/krausefx/snapshot + print("snapshot: \(name)") // more information about this, check out https://github.com/fastlane/snapshot sleep(1) // Waiting for the animation to be finished (kind of) XCUIDevice.sharedDevice().orientation = .Unknown diff --git a/lib/snapshot/runner.rb b/lib/snapshot/runner.rb index f0f8791..22ca80d 100644 --- a/lib/snapshot/runner.rb +++ b/lib/snapshot/runner.rb @@ -9,8 +9,8 @@ def work if File.exist?("./fastlane/snapshot.js") or File.exist?("./snapshot.js") Helper.log.warn "Found old snapshot configuration file 'snapshot.js'".red Helper.log.warn "You updated to snapshot 1.0 which now uses UI Automation".red - Helper.log.warn "Please follow the migration guide: https://github.com/KrauseFx/snapshot/blob/master/MigrationGuide.md".red - Helper.log.warn "And read the updated documentation: https://github.com/KrauseFx/snapshot".red + Helper.log.warn "Please follow the migration guide: https://github.com/fastlane/snapshot/blob/master/MigrationGuide.md".red + Helper.log.warn "And read the updated documentation: https://github.com/fastlane/snapshot".red sleep 3 # to be sure the user sees this, as compiling clears the screen end diff --git a/lib/snapshot/setup.rb b/lib/snapshot/setup.rb index c157924..2088da6 100644 --- a/lib/snapshot/setup.rb +++ b/lib/snapshot/setup.rb @@ -27,7 +27,7 @@ def self.create(path) puts "" puts "3) Add `snapshot(\"0Launch\")` to wherever you want to create the screenshots".yellow puts "" - puts "More information on GitHub: https://github.com/krausefx/snapshot".green + puts "More information on GitHub: https://github.com/fastlane/snapshot".green end end end