mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
commit
df023385d8
3 changed files with 13 additions and 29 deletions
|
|
@ -1,5 +1,11 @@
|
|||
# Wikimedia Commons for Android
|
||||
|
||||
## v1.3
|
||||
- Removed 'send usage reports' setting
|
||||
- Fixed package naming issue
|
||||
- Added 'sign up' button
|
||||
- Removed unused 'campaigns' shortcut
|
||||
|
||||
## v1.0 beta 11
|
||||
- New Launcher Icon
|
||||
- Fix bug with licensing templates
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="fr.free.nrw.commons"
|
||||
android:versionCode="17"
|
||||
android:versionName="1.2" >
|
||||
android:versionCode="18"
|
||||
android:versionName="1.3" >
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="9"
|
||||
|
|
@ -82,14 +82,6 @@
|
|||
android:label="@string/title_activity_settings"
|
||||
/>
|
||||
<activity android:name=".AboutActivity" android:label="@string/title_activity_about"/>
|
||||
<activity android:name=".campaigns.CampaignActivity" android:label="Campaigns"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="android.intent.category.LAUNCHER"/>
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<service android:name=".upload.UploadService" >
|
||||
</service>
|
||||
|
|
@ -105,17 +97,7 @@
|
|||
android:name="android.accounts.AccountAuthenticator"
|
||||
android:resource="@xml/authenticator" />
|
||||
</service>
|
||||
<service
|
||||
android:name=".campaigns.CampaignsSyncService"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action
|
||||
android:name="android.content.SyncAdapter" />
|
||||
</intent-filter>
|
||||
<meta-data
|
||||
android:name="android.content.SyncAdapter"
|
||||
android:resource="@xml/campaigns_sync_adapter" />
|
||||
</service>
|
||||
|
||||
<service
|
||||
android:name=".contributions.ContributionsSyncService"
|
||||
android:exported="true">
|
||||
|
|
@ -147,13 +129,7 @@
|
|||
android:authorities="fr.free.nrw.commons.contributions.contentprovider"
|
||||
android:exported="false">
|
||||
</provider>
|
||||
<provider
|
||||
android:name=".campaigns.CampaignsContentProvider"
|
||||
android:label="@string/provider_campaigns"
|
||||
android:syncable="true"
|
||||
android:authorities="fr.free.nrw.commons.campaigns.contentprovider"
|
||||
android:exported="false">
|
||||
</provider>
|
||||
|
||||
<provider
|
||||
android:name=".modifications.ModificationsContentProvider"
|
||||
android:label="@string/provider_modifications"
|
||||
|
|
|
|||
|
|
@ -19,7 +19,9 @@ import fr.free.nrw.commons.R;
|
|||
|
||||
class ContributionsListAdapter extends CursorAdapter {
|
||||
|
||||
private DisplayImageOptions contributionDisplayOptions = Utils.getGenericDisplayOptions().build();;
|
||||
|
||||
private DisplayImageOptions contributionDisplayOptions = Utils.getGenericDisplayOptions().build();
|
||||
|
||||
private Activity activity;
|
||||
|
||||
public ContributionsListAdapter(Activity activity, Cursor c, int flags) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue