/Collage

Primary LanguageObjective-C

Framage

Collage app, which allows to create awesome collage. With this app user can get photos from Instagram or from his own photo library and create awesome collages. User can choose from several different templates. ######FEATURES:

  • Search in Instagram for new pictures for collage
  • Share via email, iMessages, Instagram, Twitter, etc
  • 12 templates
  • Rounded corners
  • Change the border size
  • Change the border colour

App in App Store

Preview

Example 1 Example 2

How to remove a flag

The flag-remover command has the following syntax

 -d,--disabled            is flag disabled
 -e,--enabled             is flag enabled
 -f,--flag <arg>          flag name
 -i,--input-file <arg>    input file
 -o,--output-file <arg>   output file (optional)

To remove the container.sendFeedback flag and replace it with the disabled value on the file AboutViewController.swift, run the following command:

./tools/flag-removal/flag-remover  \
  -f container.sendFeedback \
  --disabled \
  -i /Users/ekeren/rollout-workspace/Collage/Collages/AboutViewController.swift \
  -o /Users/ekeren/rollout-workspace/Collage/Collages/AboutViewController.swift

The remove_flag.sh is a wrapper on top of flag-remover that finds all candidates files for replacemet and runs flag-remover module on them with the right flags

To remove sendFeedback flag and replace it with the true value from the entire project: ./tools/flag-removal/remove_flag.sh sendFeedback true

To remove sendFeedback flag and replace it with the false value from the entire project: ./tools/flag-removal/remove_flag.sh sendFeedback flase

This command also removes the flag defintion from the code