Skip to content

Commit

Permalink
Bump to version 1.2.4 and update README. (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
dozingcat authored Mar 25, 2018
1 parent 498051f commit db66d04
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions README.txt → README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# AsciiCam

As of March 2018 AsciiCam is not under active development. I may fix bugs but don't plan to add new features.
[Vector Camera](https://github.com/dozingcat/VectorCamera) is its successor.

AsciiCam is an Android application which converts the camera view to ASCII text and allows you to save pictures as PNG and HTML files. It is released under version 2.0 of the Apache License: http://www.apache.org/licenses/LICENSE-2.0.

The code shows a few interesting techniques:
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto"
package="com.dozingcatsoftware.asciicam"
android:versionCode="15"
android:versionName="1.2.3" >
android:versionCode="16"
android:versionName="1.2.4" >

<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="24" />
<uses-permission android:name="android.permission.CAMERA"/>
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<resources>

<string name="app_name">AsciiCam</string>
<string name="aboutText">AsciiCam 1.2.3\n© 2012-2017 Brian Nenninger\n\nComments and bug reports: bnenning@gmail.com\n\nSource Code: https://github.com/dozingcat/AsciiCam\n\nTo take a picture, touch the shutter icon in the upper left. The smaller icons under the shutter in order are:\n- Color: Cycles between color modes of black and white, primary colors only, and all colors.\n- Settings: Allows you to change the characters used to display the image. You can use different characters for each color mode. There is also an option to automatically create ASCII images from pictures you take with the standard camera app.\n- Gallery: Shows a list of all the pictures you\'ve taken. Touch an image to view it full screen, where you will have the option to delete it, or share it as an image, HTML, or text.\n- Convert to ASCII: Allows you to select an existing picture on your device, which will be converted to an ASCII image. (The original file will not be modified).\n- Switch Camera: Switches between rear and front facing cameras.\n\nAsciiCam contains code and images from the Android Open Source Project, used under the terms of the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0.\n\nColor wheel image by Mazenl77 from http://findicons.com/pack/679/nx10, used under the Creative Commons CC-BY license. Convert icon by Oxygen Icons from http://openiconlibrary.sourceforge.net/gallery2/?./Icons/actions/format-font-size-less.png, used under the Creative Commons CC-BY-SA license. Material icons from https://design.google.com/icons/, used under the Creative Commons CC-BY license.</string>
<string name="aboutText">AsciiCam 1.2.4\n© 2012-2018 Brian Nenninger\n\nComments and bug reports: bnenning@gmail.com\n\nSource Code: https://github.com/dozingcat/AsciiCam\n\nTo take a picture, touch the shutter icon in the upper left. The smaller icons under the shutter in order are:\n- Color: Cycles between color modes of black and white, primary colors only, and all colors.\n- Settings: Allows you to change the characters used to display the image. You can use different characters for each color mode. There is also an option to automatically create ASCII images from pictures you take with the standard camera app.\n- Gallery: Shows a list of all the pictures you\'ve taken. Touch an image to view it full screen, where you will have the option to delete it, or share it as an image, HTML, or text.\n- Convert to ASCII: Allows you to select an existing picture on your device, which will be converted to an ASCII image. (The original file will not be modified).\n- Switch Camera: Switches between rear and front facing cameras.\n\nAsciiCam contains code and images from the Android Open Source Project, used under the terms of the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0.\n\nColor wheel image by Mazenl77 from http://findicons.com/pack/679/nx10, used under the Creative Commons CC-BY license. Convert icon by Oxygen Icons from http://openiconlibrary.sourceforge.net/gallery2/?./Icons/actions/format-font-size-less.png, used under the Creative Commons CC-BY-SA license. Material icons from https://design.google.com/icons/, used under the Creative Commons CC-BY license.</string>
<string name="noImagesFound">You have not saved any pictures yet.</string>
<string name="errorSavingPicture">Error saving picture</string>

Expand Down

0 comments on commit db66d04

Please sign in to comment.