1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-24 18:02:20 -05:00

Set version to 1.0. Updating CHANGELOG.

This commit is contained in:
Sebastian Kaspari 2012-07-29 14:14:33 +02:00
parent 56304633f4
commit db6ed0a122
4 changed files with 55 additions and 30 deletions

View File

@ -1,3 +1,14 @@
--------------------------------------------------------------------------------
Yaaic 1.0 - 2012-07-28
--------------------------------------------------------------------------------
* New cleaned up UI using ActionBar and ViewPager.
* Yaaic can now be installed on SD cards.
* New Android emoticons.
* New command: /back - Turns off the away status (Francesco Lavra)
* Several bug fixes
* Updated translations - Help translating Yaaic online:
http://crowdin.net/project/yaaic
--------------------------------------------------------------------------------
Yaaic 0.9 - 2011-07-17 - 67 commits, 49 files changed, 7 authors
--------------------------------------------------------------------------------

View File

@ -21,13 +21,21 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.yaaic"
android:versionCode="11"
android:versionName="0.9"
android:installLocation="auto">
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.VIBRATE"></uses-permission>
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
android:installLocation="auto"
android:versionCode="12"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<application
android:icon="@drawable/icon"
android:label="Yaaic"
@ -38,6 +46,7 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
android:launchMode="standard" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
@ -46,8 +55,10 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
android:label="@string/add_server_label" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="irc" />
</intent-filter>
</activity>
@ -98,6 +109,9 @@ along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
android:name=".activity.AuthenticationActivity"
android:theme="@android:style/Theme.Dialog" >
</activity>
<service android:name=".irc.IRCService"></service>
<service android:name=".irc.IRCService" >
</service>
</application>
</manifest>

View File

@ -5,7 +5,7 @@
<groupId>org.yaaic</groupId>
<artifactId>yaaic</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>
<packaging>apk</packaging>
<name>yaaic</name>

View File

@ -2,7 +2,7 @@
<resources>
<string name="app_name">Yaaic</string>
<string name="app_full_name">Yet Another Android IRC Client</string>
<string name="app_version">0.9</string>
<string name="app_version">1.0</string>
<string name="app_homepage">http://www.yaaic.org</string>
<string name="app_irc">irc://irc.epd-me.net/yaaic</string>
<string name="app_copyright">(C) 2009-2012 Sebastian Kaspari</string>