7acf84de3b
Merge pull request #1741 from smarquespt/patch-21
...
Update strings.xml
2020-02-12 09:54:23 +01:00
80e049c033
Update strings.xml
2020-02-11 22:24:36 +00:00
8e8cb0bd0f
revert to the previous way of sorting by path, do not use parent path
2020-02-11 22:39:16 +01:00
0bfe621a8f
Merge pull request #1739 from floppyD/patch-2
...
Improve pt-BR translation
2020-02-11 18:16:55 +01:00
d479cc7c3d
Improve pt-BR translation
2020-02-11 13:17:30 -03:00
a0f8c6ddda
adding the gallery website at the portugal app description
2020-02-11 10:25:57 +01:00
0fb235af6d
replacing some tabs with spaces
6.12.4
2020-02-11 10:16:01 +01:00
4beef98aba
updating changelog
2020-02-11 10:12:53 +01:00
6e0ec2e9ad
update version to 6.12.4
2020-02-11 10:12:47 +01:00
a385be80a8
use parent path at folder sorting
2020-02-11 10:06:53 +01:00
4b6da9811b
update commons to 5.22.9
2020-02-11 09:55:16 +01:00
f8b6e14312
removing a wrong string tag
2020-02-11 09:55:09 +01:00
97d8e24859
Merge branch 'master' of github.com:SimpleMobileTools/Simple-Gallery
2020-02-11 09:49:10 +01:00
da5f534539
fixing some folder sorting issues
2020-02-11 09:49:00 +01:00
39bfe33eb8
Merge pull request #1738 from floppyD/patch-1
...
Update strings.xml pt-BR
2020-02-11 09:43:24 +01:00
98da1d37b0
Update strings.xml pt-BR
...
Fixed typos and inconsistencies.
2020-02-11 01:57:09 -03:00
c25d0d9361
updating changelog
6.12.3
2020-02-10 23:55:26 +01:00
ff99043c01
update version to 6.12.3
2020-02-10 23:55:19 +01:00
d029381271
renaming a renaming a variable to make it clearer
2020-02-10 23:48:06 +01:00
f17ffb8642
properly copy over the exif data after image editing
2020-02-10 23:47:20 +01:00
e4d8abd5a3
updating changelog
6.12.2
2020-02-10 22:18:33 +01:00
e8ce13f359
update version to 6.12.2
2020-02-10 22:18:26 +01:00
bd9dc8b04b
properly handle empty size or dates at comparing
2020-02-10 22:09:06 +01:00
b27877c109
make sort_value be empty by default
2020-02-10 22:05:51 +01:00
21cc0b97bc
properly update the database by adding the new sort_value column
2020-02-10 22:02:58 +01:00
0e01026774
fixing some thumbnail and sorting related glitches
2020-02-10 21:59:35 +01:00
3cd303ddde
updating changelog
6.12.1
2020-02-10 12:42:58 +01:00
0a020b9381
update version to 6.12.1
2020-02-10 12:42:51 +01:00
8360b8d9b1
update commons to 5.22.8
2020-02-10 12:37:38 +01:00
8d5a47ce6c
get proper file last modified value only when actually needed
2020-02-10 11:10:46 +01:00
6f565f5828
upgrade the new editor to 7.0.10
2020-02-09 22:33:34 +01:00
37d8f4babf
store temporarily editor files at the cacheDir, not filesDir
2020-02-09 22:22:56 +01:00
02bc49a259
avoid fetching files at a destroyed MainActivity
2020-02-07 20:18:06 +01:00
0cfcba6c8f
avoid fetching the same folder twice, or after exiting the app
2020-02-07 20:04:45 +01:00
e465f73f9b
updating gif drawable to 1.2.19
2020-02-07 17:54:27 +01:00
c3dc3ce275
update commons to 5.22.7
2020-02-07 11:42:28 +01:00
1c8d0f30e9
Merge pull request #1734 from FTno/patch-25
...
Update strings.xml
2020-02-06 17:15:16 +01:00
cd76fdb345
Update strings.xml
...
Norwegian (nb) translation update
2020-02-06 17:13:56 +01:00
e23ac2c878
Merge pull request #1731 from LuisAlfredo92/patch-1
...
Update strings.xml Español
2020-01-30 09:00:35 +01:00
193b5c1f2f
Update strings.xml Español
...
The new editor translations
2020-01-29 20:14:14 -06:00
0faf477e41
updating the turkish app fastlane data
2020-01-29 11:04:38 +01:00
886c1e4281
Merge pull request #1730 from akcansoft/patch-1
...
new tr strings updated
2020-01-29 11:03:56 +01:00
4d96af4d7f
new tr strings updated
2020-01-29 12:15:04 +03:00
8840a1ad0a
updating changelog
6.12.0
2020-01-28 19:02:56 +01:00
6bb6853d49
update version to 6.12.0
2020-01-28 19:02:48 +01:00
2476b97452
properly launch the main activity on first app use
2020-01-28 18:51:28 +01:00
61ded74c06
update commons to 5.21.28
2020-01-28 18:45:22 +01:00
f933296a65
Merge pull request #1728 from ForgottenUmbrella/seamless
...
Loop videos without gaps between playback
2020-01-28 17:06:24 +01:00
9877cbaf2c
Remove unreachable branches in video completion handling
...
It is never the case that `loopVideos == true` in the `videoCompleted` handler,
since enabling that preference sets `repeatMode`, which in turn prevents the
player from reaching `STATE_ENDED`. Thus, the branches are unreachable.
2020-01-29 01:52:44 +11:00
e83db406a9
Reset progress views on video loop
...
The previous loop method of seeking to the beginning at video completion ensured
that the seekbar and current time text were immediately reset. Using ExoPlayer's
own implementation of video looping means that `Player.STATE_ENDED` is no longer
reached, thus the UI no longer accurately tracks progress. Restore the old
behaviour by resetting the views on position discontinuity.
2020-01-29 01:52:44 +11:00