v4.0.5 -
+ 新增 crash report, 如果 FC, 請把根目錄的 comicsdownloder.log 寄給我們.
+ 新增影像解析度模式, 閱讀時常出現錯誤的請至設定調整成 Low memory mode.
+ 加速檢查我的最愛的速度
+ 調整部份 UI
- 修正搜尋無結果問題
- 修正部份容易出現 FC 的問題
- 修正部份四角縮放的問題
Box: v4.0.5
2013/12/31
2013/12/28
2013/12/26
漫畫下載器 v4.0.1
之前舊版本原始碼我自己都無法編譯了.
所以重新弄了一個, 也針對現在網站的一些編碼重新'處理'一下.
支援 android 4.1.2 版本以上.
目前支援以下:
+ 線上閱讀
+ 離線閱讀 (下載後閱讀)
+ 我的最愛 (匯出匯入功能, 相容之前舊版本)
+ 點擊換頁, 點擊換話(集)
+ 自動檢查更新
+ 支援多線程下載
+ 支援瀏覽方向切換 (左右切換)
..
陸續會支援其他功能
Box: v4.0.1
所以重新弄了一個, 也針對現在網站的一些編碼重新'處理'一下.
支援 android 4.1.2 版本以上.
目前支援以下:
+ 線上閱讀
+ 離線閱讀 (下載後閱讀)
+ 我的最愛 (匯出匯入功能, 相容之前舊版本)
+ 點擊換頁, 點擊換話(集)
+ 自動檢查更新
+ 支援多線程下載
+ 支援瀏覽方向切換 (左右切換)
..
陸續會支援其他功能
Box: v4.0.1
Labels:
app,
comics,
comicsdownloader
2013/12/19
小說閱讀器 v 1.8.1
v 1.8.1
+ 修改點擊圖檔後顯示方式.
BUGS:
- 修正部份 FC 問題
- 修正部份自動檢查更新的問題
- 修正 '大文學' 部份小說無法載入問題
- 修正 '晉江文學' 部份小說無法載入問題
- 修正旋轉後, 會退回網站列表的問題
Google Play: 小說閱讀器 v1.8.1
+ 修改點擊圖檔後顯示方式.
BUGS:
- 修正部份 FC 問題
- 修正部份自動檢查更新的問題
- 修正 '大文學' 部份小說無法載入問題
- 修正 '晉江文學' 部份小說無法載入問題
- 修正旋轉後, 會退回網站列表的問題
Google Play: 小說閱讀器 v1.8.1
2013/12/11
FlickrBot v1.0.2
v 1.0.2
+ Add show photo description
+ Switch back to use 'single-tap' to play video
+ Add auto create default set if default set is not exist
+ Add 'prompt' option for default sets in setting page
> This will ask you to choose or create sets when upload
*BUGS:*
- Fix download bug in view mode
- Fix even remove items from queue, it is still not removed
- Fix when upload to a set, press OK will reset the set chosed
- Fix some default set and tag bug
> Please re-config to fix the bug
Google Play: FlickrBot v1.0.2
+ Add show photo description
+ Switch back to use 'single-tap' to play video
+ Add auto create default set if default set is not exist
+ Add 'prompt' option for default sets in setting page
> This will ask you to choose or create sets when upload
*BUGS:*
- Fix download bug in view mode
- Fix even remove items from queue, it is still not removed
- Fix when upload to a set, press OK will reset the set chosed
- Fix some default set and tag bug
> Please re-config to fix the bug
Google Play: FlickrBot v1.0.2
2013/12/08
OAuth Example
最近由於正在做 flickr 的 client , 所以稍微實作了一下 OAuth 的部份.
OAuth 認證部份可以透過 http://www.flickr.com/services/api/auth.oauth.html 了解.
以下是實作部份.
最主要部份是上面網址的 2 -> 3, 要怎麼去收到使用者輸入後所得到的 verifier 來取得 access token.
這邊我們使用 scribe 套件.
這邊 callback_scheme 可以隨便自己定義, 但記得使用這樣的格式 'xxxx://xxxxx'.
callback 是當使用者輸入他的帳號密碼後, flickr api 會呼叫 callback 所指向的位址.
而我們就可以透過此位址來得到 verifier 以便之後取得 access token.
以下就可以看到回傳的格式, 這樣我們很方便可以透過 Uri 來取得 oauth_verifier
這範例很簡單, 主要部份只要注意這邊即可. 其他應該也不用多說.
完整的原始碼: OAuthExample.zip
OAuth 認證部份可以透過 http://www.flickr.com/services/api/auth.oauth.html 了解.
以下是實作部份.
最主要部份是上面網址的 2 -> 3, 要怎麼去收到使用者輸入後所得到的 verifier 來取得 access token.
這邊我們使用 scribe 套件.
OAuthService service = new ServiceBuilder() .provider(FlickrApi.class) .apiKey(YOUR_API_KEY) .apiSecret(YOUR_API_SECRET) .callback(CALLBACK_SCHEME) .build();
這邊 callback_scheme 可以隨便自己定義, 但記得使用這樣的格式 'xxxx://xxxxx'.
callback 是當使用者輸入他的帳號密碼後, flickr api 會呼叫 callback 所指向的位址.
而我們就可以透過此位址來得到 verifier 以便之後取得 access token.
以下就可以看到回傳的格式, 這樣我們很方便可以透過 Uri 來取得 oauth_verifier
mWebView.setWebViewClient(new WebViewClient() { @Override public void onPageStarted(WebView view, String url, Bitmap favicon) { mProgress.setVisibility(View.VISIBLE); mProgress.setIndeterminate(false); mProgress.setProgress(0); } @Override public void onPageFinished(final WebView view, String url) { mProgress.setVisibility(View.GONE); } @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { if (url == null) { return true; } if (!url.startsWith(CALLBACK_SCHEME)) { /** * if this is not our callback scheme, just pass it to the webview */ view.loadUrl(url); return true; } //tw.clotai.oauthexample:callback?oauth_token=72157638471772995-ad1973723cfdceb4&oauth_verifier=b0ef999e41547457 Uri uri = Uri.parse(url); String verifier = uri.getQueryParameter("oauth_verifier"); return true; } });
這範例很簡單, 主要部份只要注意這邊即可. 其他應該也不用多說.
完整的原始碼: OAuthExample.zip
小說閱讀器 v 1.7.9
試著解決最近幾個版本容易跳出的問題.
如果這版本一樣有問題, 麻煩告知.
剛放上去, 約 1-2 小時可以使用.
v 1.7.9
+ 修改退出 app 方式為連按兩次退出
+ 增加開關 '自動回報錯誤', 預設開啟
BUGS:
- 修正部份使用 wifi 所導致的連線問題
- 修正部份文字檔無法存在最近閱讀的問題
- 試著修復容易跳開的問題
Google Play: 小說閱讀器 v1.7.9
如果這版本一樣有問題, 麻煩告知.
剛放上去, 約 1-2 小時可以使用.
v 1.7.9
+ 修改退出 app 方式為連按兩次退出
+ 增加開關 '自動回報錯誤', 預設開啟
BUGS:
- 修正部份使用 wifi 所導致的連線問題
- 修正部份文字檔無法存在最近閱讀的問題
- 試著修復容易跳開的問題
Google Play: 小說閱讀器 v1.7.9
2013/12/07
2013/12/06
FlickrBot v1.0.1
v 1.0.1
+ Switch to use 'double-tap' to play video
+ Better error-handling
+ Add default set, tags setting for upload
+ Add ability to have different default privacy settings and upload settings for different account
> Please re-config again to make it work.
*BUGS:*
- Fix some UI Bugs
- Fix when uploading large files, it will crash
- Fix choose exist set, it won't upload to this selected set
- Fix some FC issues
Google Play: FlickrBot v1.0.1
+ Switch to use 'double-tap' to play video
+ Better error-handling
+ Add default set, tags setting for upload
+ Add ability to have different default privacy settings and upload settings for different account
> Please re-config again to make it work.
*BUGS:*
- Fix some UI Bugs
- Fix when uploading large files, it will crash
- Fix choose exist set, it won't upload to this selected set
- Fix some FC issues
Google Play: FlickrBot v1.0.1
2013/12/05
小說閱讀器 v 1.7.7
v 1.7.7
+ 最近閱讀會顯示從我的書櫃閱讀的小說
+ 增加離開確認視窗.
+ 增加點擊插圖可另開新窗檢視.
+ 新增 '大文學' 支援
+ 新增 '燃文小說網' 支援
> 此網站是由 '燃文中文網' 改版, 舊版本跟新版本不相容
BUGS:
- 修正 android 4.4 內文位置紀錄錯誤的問題
- 修正部份 FC 問題
- 修正檢查小說更新的部份問題
Google Play: 小說閱讀器 v1.7.7
+ 最近閱讀會顯示從我的書櫃閱讀的小說
+ 增加離開確認視窗.
+ 增加點擊插圖可另開新窗檢視.
+ 新增 '大文學' 支援
+ 新增 '燃文小說網' 支援
> 此網站是由 '燃文中文網' 改版, 舊版本跟新版本不相容
BUGS:
- 修正 android 4.4 內文位置紀錄錯誤的問題
- 修正部份 FC 問題
- 修正檢查小說更新的部份問題
Google Play: 小說閱讀器 v1.7.7
2013/12/04
FlickrBot v1.0.0
Feature:
+ Multiple account supported
+ Easy to browse photos and videos
+ Video supported. (Using external video player)
+ Batch upload.
+ Batch download. You can select the download photo quality in the settings, default is 'Best'
+ Explore the days most interesting photos.
+ Explore the most recent photos.
+ Easy to check on someone's photostream, favorites and sets. (By click on their's buddy icon)
+ Pinch to zoom
+ Add/Remove your favorite photos or videos.
+ Integration with other apps (upload one or multiple image/video from other apps)
Supports:
If you have any suggestions or problems, you can email to weakapp@gmail.com with the details if this is a bug (device, android version and steps to reproduce the problem)
** This app is using the Flickr API but is not endorsed or certified by Flickr. **
Changelog
v 1.0.0
+ Beta Release
+ Multi-account supported
+ Batch upload/download supported
+ Video supported (Using external video player to play)
+ Logout supported
Google Play: FlickrBot v1.0.0
+ Multiple account supported
+ Easy to browse photos and videos
+ Video supported. (Using external video player)
+ Batch upload.
+ Batch download. You can select the download photo quality in the settings, default is 'Best'
+ Explore the days most interesting photos.
+ Explore the most recent photos.
+ Easy to check on someone's photostream, favorites and sets. (By click on their's buddy icon)
+ Pinch to zoom
+ Add/Remove your favorite photos or videos.
+ Integration with other apps (upload one or multiple image/video from other apps)
Supports:
If you have any suggestions or problems, you can email to weakapp@gmail.com with the details if this is a bug (device, android version and steps to reproduce the problem)
** This app is using the Flickr API but is not endorsed or certified by Flickr. **
Changelog
v 1.0.0
+ Beta Release
+ Multi-account supported
+ Batch upload/download supported
+ Video supported (Using external video player to play)
+ Logout supported
Google Play: FlickrBot v1.0.0
訂閱:
文章 (Atom)