feidee_utils 0.0.5.0 → 0.0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +32 -15
- data/lib/feidee_utils/version.rb +1 -1
- metadata +14 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1de248b25404a51294532bce5b317e4c7bb8bc52
|
4
|
+
data.tar.gz: 1207e7caf079f5e73c68e8095347f5dfb29c53d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1758936bfd77bfe716459cb8151898766b0c50b07d526ebe1f3e8f2dc48a1cbd86993f2c059315f70f6a3c2030057c6bfd4271cb6ea7b1a473cc0675f6918aa
|
7
|
+
data.tar.gz: 22cde31f522334fc6e436eadcef31c0a888aa4450dc00233455c7a861c9ffd9a2200ff74e19516b13a997e0f4f29dd64e6f356617e9685509afbda2315062098
|
data/README.md
CHANGED
@@ -4,13 +4,16 @@ Feidee Utils
|
|
4
4
|
|
5
5
|
Free user data from [Feidee](http://www.feidee.com) private backups (.kbf).
|
6
6
|
|
7
|
-
Feidee
|
7
|
+
Feidee and the KBF Format
|
8
8
|
-----------
|
9
|
-
[Feidee MyMoney](http://www.feidee.com/money/) is a set of
|
9
|
+
[Feidee MyMoney](http://www.feidee.com/money/) is a set of book-keeping software
|
10
|
+
popular in China. It includes Android, iOS, web apps and several pieces of
|
11
|
+
desktop software. The Android and iOS apps produces backup in kbf format.
|
10
12
|
|
11
|
-
A kbf file is in fact a zip file contains a modified SQLite database and other
|
12
|
-
The first 16 bits of the SQLite database is
|
13
|
-
|
13
|
+
A kbf file is in fact a zip file contains a modified SQLite database and other
|
14
|
+
attachments, such as photos. The first 16 bits of the SQLite database is
|
15
|
+
modified so that it could not be read directly by SQLite. The database itself is
|
16
|
+
NOT encrypted. Almost all useful information is in the SQLite database.
|
14
17
|
|
15
18
|
Install
|
16
19
|
---------
|
@@ -20,7 +23,8 @@ gem install feidee_utils
|
|
20
23
|
|
21
24
|
Usage
|
22
25
|
----------
|
23
|
-
A set of ActiveRecord-like classes are provided to access the information in the
|
26
|
+
A set of ActiveRecord-like classes are provided to access the information in the
|
27
|
+
backup. See the quick example below.
|
24
28
|
|
25
29
|
```ruby
|
26
30
|
require 'feidee_utils'
|
@@ -44,24 +48,37 @@ Supported Entities
|
|
44
48
|
Chinese Characters
|
45
49
|
-----------------
|
46
50
|
|
47
|
-
The database contains many Chinese characters such as builtin category names.
|
51
|
+
The database contains many Chinese characters such as builtin category names.
|
52
|
+
Some of the characters are also included in tests. The gem is developed under
|
53
|
+
OSX so presumably the gem should work fine in Unix-like environments with
|
54
|
+
Unicode/UTF8 or whatever the encoding is.
|
48
55
|
|
49
56
|
Why not ActiveRecord
|
50
57
|
----------------
|
51
|
-
Sometimes we have to compare the content of two backups and must open them at
|
52
|
-
Only one database can be opened using ActiveRecord. It is not
|
58
|
+
Sometimes we have to compare the content of two backups and must open them at
|
59
|
+
the same time. Only one database can be opened using ActiveRecord. It is not
|
60
|
+
designed to be used in such a way.
|
53
61
|
|
54
62
|
Why Feidee Utils At All
|
55
63
|
-----------
|
56
|
-
Originally the Feidee Android and iOS app let users export their personal data
|
57
|
-
|
64
|
+
Originally the Feidee Android and iOS app let users export their personal data
|
65
|
+
recorded by the app. Since some version last year (2014), the export
|
66
|
+
functionality is removed from the app and user data is trapped inside Feidee's
|
67
|
+
private system forever. The uses may pay to get pro version, or upload their
|
68
|
+
data to Feidee's server in order to export.
|
58
69
|
|
59
|
-
As a user of Feidee MyMoney, I'm truelly grateful that such great apps are
|
70
|
+
As a user of Feidee MyMoney, I'm truelly grateful that such great apps are
|
71
|
+
available free of charge. However I also believe that users' data belongs to
|
72
|
+
users and should be controlled by its owner. Thus I decided to build the utils
|
73
|
+
to help Feidee MyMoney users access their own data.
|
60
74
|
|
61
75
|
Disclaimer
|
62
76
|
---------
|
63
|
-
Use at your own risk. Study purpose only. Please do NOT use for any illegal
|
77
|
+
Use at your own risk. Study purpose only. Please do NOT use for any illegal
|
78
|
+
purpose. For details see MIT-LICENSE in the repo.
|
64
79
|
|
65
|
-
This software DOES NOT involve any kind of jail break, reverse engineering or
|
80
|
+
This software DOES NOT involve any kind of jail break, reverse engineering or
|
81
|
+
crack of any Feidee's proprietary software or app.
|
66
82
|
|
67
|
-
The trademark Feidee, Feidee MyMoney, kbf file format and database design are
|
83
|
+
The trademark Feidee, Feidee MyMoney, kbf file format and database design are
|
84
|
+
intellecture properties of Feidee, or whoever the owners are.
|
data/lib/feidee_utils/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: feidee_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.5.
|
4
|
+
version: 0.0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Liqing Muyi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-07-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -16,40 +16,40 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '10.
|
19
|
+
version: '10.5'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 10.
|
22
|
+
version: 10.5.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '10.
|
29
|
+
version: '10.5'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 10.
|
32
|
+
version: 10.5.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: rubyzip
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.2'
|
40
40
|
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 1.
|
42
|
+
version: 1.2.0
|
43
43
|
type: :runtime
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: '1.
|
49
|
+
version: '1.2'
|
50
50
|
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
|
-
version: 1.
|
52
|
+
version: 1.2.0
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: sqlite3
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
@@ -96,20 +96,20 @@ dependencies:
|
|
96
96
|
requirements:
|
97
97
|
- - "~>"
|
98
98
|
- !ruby/object:Gem::Version
|
99
|
-
version: '5.
|
99
|
+
version: '5.11'
|
100
100
|
- - ">="
|
101
101
|
- !ruby/object:Gem::Version
|
102
|
-
version: 5.
|
102
|
+
version: 5.11.1
|
103
103
|
type: :development
|
104
104
|
prerelease: false
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
107
|
- - "~>"
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: '5.
|
109
|
+
version: '5.11'
|
110
110
|
- - ">="
|
111
111
|
- !ruby/object:Gem::Version
|
112
|
-
version: 5.
|
112
|
+
version: 5.11.1
|
113
113
|
description: Feidee Utils provides a set of ActiveReocrd-like classes to read Feidee
|
114
114
|
private backups (.kbf files). It also provides a better abstraction to the general
|
115
115
|
format of transaction-account style data.
|