0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 12:02:16 +02:00
Commit Graph

8835 Commits

Author SHA1 Message Date
Timothy Rae
f3f910bc05 Bumped version to 2.9alpha6
@branch-specific
2017-08-11 20:18:29 +09:00
Timothy Rae
d6c59f3763 Updated strings from Crowdin 2017-08-11 20:17:06 +09:00
Tim Rae
9440e197c5 Revert "Hide flashcard title and <hr> tag from TalkBack." (#4684)
This reverts commit e86d66a4ef in order to fix #4673
2017-08-11 20:10:41 +09:00
Timothy Rae
f5b5f8f334 Bumped version to 2.9alpha5
@branch-specific
2017-08-06 21:56:48 +09:00
Jhon Kenneth Cariño
c63608bb25 Fix crash on add picture from camera on Android 7 (#4678)
Fix crash on add picture from camera on Android 7
2017-08-06 21:55:09 +09:00
snowtimeglass
8a19d76012 Edit the name of the card type editor's checkmark (#4671)
Rename the name of the card type editor's checkmark from "OK" to "save"
Fix #4670.
2017-07-21 09:36:55 +09:00
池程 (Takumi Ikezaki)
b0298b70d3 Add round icon (#4659)
Add a round launcher icon in addition to the normal icon
2017-07-18 09:08:28 +09:00
Timothy Rae
097d390a87 Bumped version to 2.9alpha4
@branch-specific
2017-07-17 10:44:37 +09:00
Timothy Rae
5d4daf1b10 Merge remote-tracking branch 'timrae/fix-have-buried' 2017-07-17 10:40:55 +09:00
Timothy Rae
35d2068a61 Remove unused Google image search layout resource 2017-07-17 10:09:58 +09:00
Timothy Rae
d58ed31344 Fix crash attempting to get buried cards when no deck is selected
In the previous code: `mCol.getDecks().select(odid);` was problematic because odid would be -1 if no deck was selected, leading to a crash.
2017-07-17 10:04:27 +09:00
Timothy Rae
bc04e92e5d Update API build tools version to 25.0.1 2017-07-17 09:39:37 +09:00
Timothy Rae
6643ace2c8 Update gradle to 2.3.3 2017-07-17 09:39:23 +09:00
Timothy Rae
237ecfaaa4 Updated strings from Crowdin 2017-07-17 09:27:19 +09:00
Tim Rae
e4a542de33 Don't exclude the master branch from CI builds
We used to name the main branch "develop" and "master" contained the latest released source code. We no longer do this, and "master" contains the latest development source code
2017-07-17 09:21:29 +09:00
dx
f9ae6fc317 drawArc/fillArc: Avoid drawing full arcs when arcAngle is 0 (#4664)
This fixes issues with the card types graph showing almost everything as
black when unseen is 0, except the yellow part for suspended which is
drawn afterwards.

The documentation for Canvas.drawArc says:

    If the sweep angle is >= 360, then the oval is drawn completely.
    Note that this differs slightly from SkPath::arcTo, which treats the
    sweep angle modulo 360. If the sweep angle is negative, the sweep
    angle is treated as sweep angle modulo 360

There's no explicit mention of what happens if the sweep angle is 0,
but it looks like in practice it's the same as if it was 360.

Since the operation is going to be a no-op either way, it doesn't hurt
to skip it.
2017-07-17 08:08:14 +09:00
Enno Hermann
430078c2d3 Merge pull request #4644 from eginhard/master
Hide flashcard title and <hr> tag from TalkBack.
2017-06-08 22:08:56 +01:00
Enno Hermann
e86d66a4ef Hide flashcard title and <hr> tag from TalkBack.
Fixes #4640.
2017-06-05 11:55:54 +01:00
Yannik
b26410dbb6 Corrected Permission Description (#4621)
The permission description was not matching the format intended by google (as described in issue #4619)
2017-04-23 14:31:18 +09:00
Beksultan Sadirov
51e19f1ee2 Fix textChangeListener and custom study "preview new cards" incorrectly showing 0 cards (#4613)
Fixes #4421
2017-03-31 11:43:58 +09:00
Beksultan Sadirov
a53ca8af9b Fixes #4515: bug fixed (#4610) 2017-03-21 15:12:10 +09:00
Timothy Rae
6d762e4fc1 Bumped version to 2.9alpha3
@branch-specific
2017-03-16 22:04:39 +09:00
Beksultan Sadirov
9718981d89 Issue #4579 solved: add icon will not disappear after the search (#4608)
* Fix Issue #4579: Add icon disappears after search in Browser
2017-03-16 15:45:46 +09:00
Oliver Rolle
6e18f790ec 3rd party app integration: calling Reviewer activity via Intent (#4438)
3rd party app integration: calling Reviewer activity via Intent and deckId
2017-03-16 14:32:22 +09:00
Timothy Rae
dbbf3ea654 Bumped version to 2.9alpha2
@branch-specific
2017-03-14 23:01:46 +09:00
Katie Moulang
ece3c3e134 Fix glosbe by checking if api request was successful using the status code not the contents of the status line textual phrase (#4607) 2017-03-14 23:00:32 +09:00
Katie Moulang
86c60faf7c Add insert cloze option to the paperclip menu (#4606)
Add cloze deletion option to the paperclip menu
2017-03-14 22:59:17 +09:00
Timothy Rae
fd59757caa Bumped version to 2.9alpha1
@branch-specific
2017-03-14 22:57:10 +09:00
Fiete
c2a26646a7 Pending runnable that will be executed after the drawer has been closed.
This change makes the animation more fluid on older devices.
2017-03-10 16:46:19 +09:00
snowtimeglass
63046d7445 Delete the strings about "Image search activity"
They are not in use anymore.
2017-03-09 21:01:39 +09:00
Timothy Rae
b8bd6349e8 Fix the remaining confirmation dialogs
I missed several confirmation dialogs in 5c8a309, due to my incorrect assumption that the compiler would catch all of the old usages.
This time I grepped to make sure I got them all.
2017-02-26 19:23:16 +09:00
Timothy Rae
995e0a1776 Fix IllegalStateException crashes with ConfirmationDialog
Android can't instantiate fragments that are anonymous classes. It was somehow working fine until they updated the support library.
Here we use Runnables instead. Once we move to Java8 we can make the code much less verbose by using lambdas.
2017-02-25 12:04:19 +09:00
Timothy Rae
05cb4e94ae Fix #4581 2017-02-14 22:04:36 +09:00
Tim Rae
91e8f8185b Merge pull request #4576 from artsakenos/fix-crash-metaretriever
Fix Application Crash due to Data Retriever
2017-02-12 21:12:22 +09:00
Artsakenos
29b1a01e5e Fix Application Crash due to Data Retriever
The application crashes when triying to set Data Source for mediaRetriever if the media files are not found.
This happens for example, when the "Automatic Display Answer" feature is activated.
2017-02-12 18:34:53 +08:00
Timothy Rae
c8bcd5d9e5 Show relative path to export directory when possible 2017-02-05 22:58:33 +09:00
Tim Rae
d3f854ea81 Merge pull request #4563 from timrae/sync.ankiweb.net
use sync.ankiweb.net for syncing
2017-02-05 20:48:42 +09:00
Timothy Rae
1006968a38 use sync.ankiweb.net for syncing
media sync goes through the same domain now, avoiding a slow extra SSL handshake
dae/anki@04bc1a7
2017-02-05 20:43:17 +09:00
Tim Rae
820020032c Merge pull request #4562 from timrae/export-default-dbfolder
Export apkgs to fixed location on external storage
2017-02-05 19:13:06 +09:00
Timothy Rae
d4ce47c247 Export apkgs to fixed location on external storage 2017-02-05 19:00:54 +09:00
Tim Rae
f16128c90c Merge pull request #4560 from timrae/export-move-bug
Fix bugs moving exported apkg from internal to external storage
2017-02-05 12:58:02 +09:00
Timothy Rae
af7a14ff9c Fix bugs moving exported apkg from internal to external storage 2017-02-05 12:55:20 +09:00
Timothy Rae
316494a7e6 Updated strings from Crowdin 2017-02-04 11:04:43 +09:00
Tim Rae
2b0bd72c38 Merge pull request #4556 from timrae/fix-export-issues
Fix problems with sending APKG over email on pre-Jellybean devices
2017-02-04 11:00:25 +09:00
Timothy Rae
f46b9e30f8 Fix problems with sending APKG over email on pre-Jellybean devices 2017-02-04 10:58:32 +09:00
Enno Hermann
3b81f13cdf Merge pull request #4550 from timrae/fix-export-send
Fix sending of exported files on Android 6+
2017-02-02 00:53:27 +00:00
Timothy Rae
f615ded0c8 Fix sending of exported files on Android 6+
We were getting an android.os.FileUriExposedException
2017-01-29 16:02:58 +09:00
Timothy Rae
ed27715a39 Show syncMessage when it's present 2017-01-29 11:54:00 +09:00
Houssam Salem
b9838ae783 Fix lint warning on formatted string 2017-01-05 21:28:09 +09:00
Houssam Salem
ba00078d0b Fix crash on boot if you have dyn decks 2017-01-05 21:28:09 +09:00