-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
282 lines (200 loc) · 7.35 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
2014-10-21 pads <[email protected]>
* .gitignore:
- Ignore keystore files.
* AndroidManifest.xml:
* src/net/yourhouse/myhouse/IRadioService.aidl:
* src/net/yourhouse/myhouse/RadioApp.java:
* src/net/yourhouse/myhouse/RadioService.java:
- Rename package to be able to publish the APK as a new app.
2014-10-21 pads <[email protected]>
* assets/shoutbox.html:
- Tidy up markup and styling.
* build.gradle:
- Configure APK generation.
2014-10-17 pads <[email protected]>
* src/net/yourhouse/myhouse/www/RadioService.java:
- Set the show name by opening another URL connection and reading the header.
2014-10-17 pads <[email protected]>
* src/net/yourhouse/myhouse/www/RadioApp.java:
* res/layout/main.xml:
- Add progress spinner to button when buffering.
* src/net/yourhouse/myhouse/www/RadioService.java:
- Refactor: Set show name from here in all scenarios.
2014-09-08 pads <[email protected]>
* src/net/yourhouse/myhouse/www/RadioApp.java:
* assets/shoutbox.html:
* res/values/strings.xml:
- Replace Shoutbox web page with local version (using yourshoutbox.com script).
2014-09-08 pads <[email protected]>
* AndroidManifest.xml:
- Remove SD card unmount and write to external storage permissions.
* src/net/yourhouse/myhouse/www/RadioApp.java:
- Remove remaining Nagare references.
- Remove error handling for writing to SD card.
2014-09-07 pads <[email protected]>
* AndroidManifest.xml:
- Bump version to 2.0.0 (code 6)
- Use new native media player service.
* src/net/yourhouse/myhouse/www/IRadioService.aidl:
* src/net/yourhouse/myhouse/www/RadioApp.java:
* src/net/yourhouse/myhouse/www/RadioService.java:
- Replace Nagare Shoutcast service with native media player service.
2014-09-06 pads <[email protected]>
Migrate from Subversion repository.
* AndroidManifest.xml:
- Bump min SDK version to 8 (2.2 Froyo).
* build.gradle:
- Use Gradle for building the project.
* .gitignore:
- Ignore generated files.
2013-08-05 pads <[email protected]>
* AndroidManifest.xml:
- Bump version to 1.0.4
- Renamed package to publish as new application.
* src/ww/yourhouse/myhouse/radio/*:
- Renamed package.
2013-08-04 pads <[email protected]>
* res/values/strings.xml
- Use new stream URL.
* AndroidManifest.xml:
- Bump version to 1.0.3.
2011-05-22 pads <[email protected]>
* AndroidManifest.xml:
* src/net/yourhouse/myhouse/radio/RadioApp.java:
- code reformat
2011-02-27 pads <[email protected]>
* AndroidManifest.xml:
- install location set to auto.
* default.properties:
- build target API level 8.
2011-02-25 pads <[email protected]>
* AndroidManifest.xml:
- Removed screen and max/target SDK restrictions.
- Now at version 1.0.1. (code 2).
2011-02-19 pads <[email protected]>
* AndroidManifest.xml:
- specify that the app is not designed for small screens.
* res/layout/main.xml:
* src/net/yourhouse/myhouse/radio/RadioApp.java:
- completed adding all tabs.
* res/values/strings.xml:
- added all mobile PHP page links.
* res/drawable-hdpi/logo.jpg
* res/drawable-hdpi/news.png
* res/drawable-hdpi/schedule.png
* res/drawable-hdpi/featured.png
* res/drawable-hdpi/music.png
* res/drawable-hdpi/records.png
* res/drawable-hdpi/events.png
* res/drawable-hdpi/icon.png
* res/drawable-hdpi/contact.png
* res/drawable-hdpi/shoutbox.png
* res/drawable-mdpi/logo.jpg
* res/drawable-mdpi/news.png
* res/drawable-mdpi/schedule.png
* res/drawable-mdpi/featured.png
* res/drawable-mdpi/music.png
* res/drawable-mdpi/records.png
* res/drawable-mdpi/events.png
* res/drawable-mdpi/icon.png
* res/drawable-mdpi/contact.png
* res/drawable-mdpi/shoutbox.png
- icons for tabs.
2011-02-19 pads <[email protected]>
* default.properties:
- target of 2.1.
* AndroidManifest.xml:
- max Android target now 2.3.3 (10).
- target is 2.1-update1 (7).
- min target is 2.1-update1 (7).
* src/com/giantrabbit/nagare/ShoutcastFile.java:
- Removed unused imports.
* src/net/yourhouse/myhouse/radio/RadioApp.java:
- moved SD card broadcast intent to onDestroy method.
- use tabs.
* res/layout/main.xml:
- use tabs.
* res/drawable/dialog.png:
* res/drawable/music.png:
- icons for tab headers.
* res/values/strings.xml:
- use mobile shoutbox PHP page.
2011-01-10 pads <[email protected]>
* AndroidManifest.xml:
- Tidy up layout.
- Set version to 1.0.0
- Set install location to auto.
- Allow back-up and clear-data.
- Min Android 2.1
- broadcast intent about SD card data changes.
* res/values/strings.xml:
- updated stream server URL.
* src/net/yourhouse/myhouse/radio/RadioApp.java:
* res/menu/main_menu.xml:
- Hide preferences for now - they're not ready yet.
- Notify the system about audio file deletions.
* src/com/giantrabbit/nagare/ShoutcastFile.java:
- Log about file deletion success.
2010-09-29 pads <[email protected]>
* default.properties:
- Android 2.2 target.
2010-08-06 pads <[email protected]>
* src/com/giantrabbit/nagare/ShoutcastFile.java:
- folder name to save streams now Myhouse-yourhouse.
2010-08-03 Ben <[email protected]>
* src/net/yourhouse/myhouse/radio/RadioWidget.java:
- removed unused imports.
* AndroidManifest.xml:
- minimum of Android 2.1 now.
- preferences activity.
* default.properties:
- minimum of Android 2.1 now.
* res/menu/main_menu.xml:
- top menu for quitting and settings.
* src/net/yourhouse/myhouse/radio/RadioApp.java:
- handle top menu.
- code tidy up.
* src/net/yourhouse/myhouse/radio/Preferences.java:
* res/xml/preferences.xml:
- preferences menu.
2010-02-28 Ben <[email protected]>
* res\values\strings.xml:
- shoutbox.php location changed.
2010-01-13 Ben <[email protected]>
* src\net\yourhouse\myhouse\radio\RadioApp.java:
- svn keywords.
- fixed bug where audio did not resume after incoming call ends.
- web page now part of a sliding view.
- removed shout and schedule options.
- volume icon.
* src\com\giantrabbit\nagare\ShoutcastFile.java:
- delete file on stop - SD card filing up!
* res\layout\main.xml:
- web page now part of a sliding view.
- removed shout and schedule options.
- volume icon.
* default.properties:
- target version now 5 (2.0).
2010-01-12 Ben <[email protected]>
* AndroidManifest.xml:
- force activity to stay alive on orientation change.
2010-01-10 Ben <[email protected]>
* AndroidManifest.xml:
- upped version name to 0.2.
- single instance mode for activity.
- widget declared.
* res\layout\main.xml:
- volume control.
* res\values\styles.xml:
- initial styles (to do).
* res\layout\widget.xml:
* res\xml\widget_info.xml:
* src\net\yourhouse\myhouse\radio\RadioWidget.java:
- initial widget (to do).
* src\net\yourhouse\myhouse\radio\RadioApp.java:
- status bar notification when running in the background.
- volume control (system media stream).
- stop media stream when a call is in progress.
2010-01-09 Ben <[email protected]>
* src\net\yourhouse\myhouse\radio\RadioApp.java:
- prevent more than one stream running if application is stopped and started again.