-
Notifications
You must be signed in to change notification settings - Fork 539
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version strings for v2.0.3 release
Fix: unable to enter decimals in split editor Fix: split type toggle not working in split editor Remove transaction exported flag from XML Add app/system version to UserVoice feedback
- Loading branch information
1 parent
ebf2e83
commit a3ad8c2
Showing
10 changed files
with
93 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ | |
import android.database.SQLException; | ||
import android.database.sqlite.SQLiteDatabase; | ||
import android.graphics.Color; | ||
import android.os.Build; | ||
import android.preference.PreferenceManager; | ||
import android.support.annotation.NonNull; | ||
import android.util.Log; | ||
|
@@ -33,6 +34,7 @@ | |
import com.uservoice.uservoicesdk.Config; | ||
import com.uservoice.uservoicesdk.UserVoice; | ||
|
||
import org.gnucash.android.BuildConfig; | ||
import org.gnucash.android.R; | ||
import org.gnucash.android.db.AccountsDbAdapter; | ||
import org.gnucash.android.db.CommoditiesDbAdapter; | ||
|
@@ -108,6 +110,9 @@ public void onCreate(){ | |
Config config = new Config("gnucash.uservoice.com"); | ||
config.setTopicId(107400); | ||
config.setForumId(320493); | ||
config.putUserTrait("app_version_name", BuildConfig.VERSION_NAME); | ||
config.putUserTrait("app_version_code", BuildConfig.VERSION_CODE); | ||
config.putUserTrait("android_version", Build.VERSION.RELEASE); | ||
// config.identifyUser("USER_ID", "User Name", "[email protected]"); | ||
UserVoice.init(config, this); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters