Skip to content

Commit

Permalink
v1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rignaneseleo committed Jan 18, 2016
1 parent 47a8cff commit 7d2e156
Show file tree
Hide file tree
Showing 29 changed files with 799 additions and 280 deletions.
20 changes: 16 additions & 4 deletions Changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ v1.4
- Fix the utf8 in the offline page
- Fix the refresh when there is no connection
- Photos are opened with the browser
- Add indonesian translations
- Add indonesian translations (Minions_Army)

v1.5
- Upload of files
Expand All @@ -35,8 +35,11 @@ v1.5
- Add some toasts

v1.5.1
- Added the French, German, Spanish, Portuguese, Chinese translations!

- Added translations:
French, Spanish, Portuguese (minimaster4734)
Chinese (dic1911)
German (xdevs23)

v1.6
- Geolocalizzation
- Share links with app
Expand All @@ -51,4 +54,13 @@ v1.6.1

v1.6.2
- Added Slovenian translation (Miha Krsevan)
- Added Czech translation (multibestia)
- Added Czech translation (multibestia)

v1.7
- Renamed to 'SlimSocial for Facebook'
- Ultra fast share (hold one link or image and share it) (thanks to FaceSlim)
- Fixed the photo upload for all versions (4.4.4 specially) (thanks to FaceSlim)
- Added Credits in Settings

v1.7.1
- Added more credits to FaceSlim
27 changes: 27 additions & 0 deletions SlimFacebook/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

491 changes: 327 additions & 164 deletions SlimFacebook/.idea/workspace.xml

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions SlimFacebook/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apply plugin: 'com.android.application'
//SlimFacebook is an Open Source app realized by Leonardo Rignanese
//SlimSocial for Facebook is an Open Source app realized by Leonardo Rignanese
//GNU GENERAL PUBLIC LICENSE Version 2, June 1991
android {
compileSdkVersion 23
Expand All @@ -9,8 +9,8 @@ android {
applicationId "it.rignanese.leo.slimfacebook"
minSdkVersion 15
targetSdkVersion 23
versionCode 11
versionName "1.6.2"
versionCode 13
versionName "1.7.1"
}
buildTypes {
release {
Expand Down
19 changes: 15 additions & 4 deletions SlimFacebook/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
SlimFacebook is an Open Source app realized by Leonardo Rignanese
SlimSocial for Facebook is an Open Source app realized by Leonardo Rignanese
GNU GENERAL PUBLIC LICENSE Version 2, June 1991
-->

Expand All @@ -27,16 +27,16 @@ SlimFacebook is an Open Source app realized by Leonardo Rignanese
android:theme="@style/SlimFacebookTheme"


android:versionCode="11"
android:versionName="1.6.2"
android:versionCode="13"
android:versionName="1.7.1"
><!--the official version is wrote in build.gradle-->


<!--the main activity-->
<activity
android:name=".MainActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:label="SlimSocial"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
Expand Down Expand Up @@ -88,6 +88,17 @@ SlimFacebook is an Open Source app realized by Leonardo Rignanese
</intent-filter>
</activity>

<!--credits activity-->
<activity
android:name=".ShowCreditsActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:label="@string/settings">

<intent-filter>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>


<!-- uses the Multi Window library -->
<uses-library
Expand Down
Loading

0 comments on commit 7d2e156

Please sign in to comment.