summarylogtreecommitdiffstats
path: root/.CHANGELOG
blob: 6ae2b0379799434bf28857a89faab7e013cc3468 (plain)
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
* commit d360b73bf5ab9ac13576cbff9c36d6b95cc500db
| Author: Jeffrey Han <itdelatrisu@gmail.com>
| Date:   Wed Sep 2 01:47:15 2015 -0500
| 
|     Specify whether Curve uses scaled or unscaled coordinates.
|     Unscaled coordinates will be used in a future commit (hopefully).
|     
|     Added a normalize() method to Vec2f.
|     
|     Throw RuntimeExceptions for any Curve initialization errors; the game would crash anyway, and this way the objects can be substituted for DummyObjects for a graceful failure.
|     
|     Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
|  
* commit 6c956e927f8fa2b704914c70bae858f103542f97
| Author: Jeffrey Han <itdelatrisu@gmail.com>
| Date:   Wed Sep 2 01:41:47 2015 -0500
| 
|     Beatmap parser fixes.
|     - Fixed hit object 'addition' field parsing. (Still not sure what the fields do, but the types should be correct now...)
|     - Fixed a careless error causing a potential null pointer exception. (blame: 0b33fed)
|     - Show an error if parseHitObjects() parses a different amount of objects than expected.
|     
|     Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
|  
* commit fdd70a81c4ce50a8ebeb1edc4ef2d7f64d457ea8
| Author: Jeffrey Han <itdelatrisu@gmail.com>
| Date:   Tue Sep 1 21:57:37 2015 -0500
| 
|     Removed leftover/unused 'color' parameter in Curve constructor.
|     
|     Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
|  
* commit e3d8a11c39a91d926f9a4e13b1f5c150555d5480
| Author: Jeffrey Han <itdelatrisu@gmail.com>
| Date:   Tue Sep 1 16:12:41 2015 -0500
| 
|     Updating to 0.11.0.
|     
|     Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
|  
* commit df3e662865532b6607713cfc83cc9a2a428e6da9
| Author: Jeffrey Han <itdelatrisu@gmail.com>
| Date:   Mon Aug 31 22:54:35 2015 -0500
| 
|     Marked a couple more members as 'final'. (continuation of 441bb95)
|     
|     Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
|  
* commit 769ad963e7aa636875c9ad673cb14c222a6ffb54
| Author: Jeffrey Han <itdelatrisu@gmail.com>
| Date:   Mon Aug 31 22:25:28 2015 -0500
| 
|     Moved OszUnpacker into package 'opsu.beatmap'.
|     
|     Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
|  
* commit c70fcb296f4524211df0bba58d60f7960be09c4d
| Author: Jeffrey Han <itdelatrisu@gmail.com>
| Date:   Mon Aug 31 17:54:32 2015 -0500
| 
|     Add git hash (from refs/remotes/origin/master) to error reports.
|     
|     Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
|  
* commit e535a8884081a780ff704aa5ae0d90f5392c3421
| Author: Jeffrey Han <itdelatrisu@gmail.com>
| Date:   Sun Aug 30 23:21:58 2015 -0500
| 
|     Stop firing BeatmapWatchService events for intended file modifications.
|     Specifically, during OSZ unpacking and for file deletion through the song menu.  Triggering the beatmap reload event in these scenarios would be redundant.
|     
|     Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
|  
* commit aed5163a832c6bdd237f65009e560d5c3dbff16d
| Author: Jeffrey Han <itdelatrisu@gmail.com>
| Date:   Sun Aug 30 23:18:46 2015 -0500
| 
|     Check completed download size against Content-Length header.
|     If the number of bytes received is less than the reported content length (e.g. a network timeout), mark the download with the "error" status instead of "complete".  Content-Length should be reliable if reported at all, so this should be a valid approach.
|     
|     Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
|  
* commit bd8e35cb81e5fefaabf586d4193c386de9648e6e
| Author: Jeffrey Han <itdelatrisu@gmail.com>
| Date:   Sun Aug 30 22:20:52 2015 -0500
| 
|     Added MengSky download server.
|     URL: http://osu.mengsky.net/
|     
|     Also parsing raw HTML for this one because there's no API.
|     
|     Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>