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 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
|
2019-02-03 Paul Wise <pabs3@bonedaddy.net>
* NEWS, configure.ac: Release 0.7.1
2019-02-03 Paul Wise <pabs3@bonedaddy.net>
* data/buttons.xsl: Remove the SVG g tag's filter attribute when
filter name is empty Empty or invalid filter names in url() cause various renderers to
not render the object at all. Fixes: Firefox Fixes: Chromium Fixes: rsvg 2.44.10 Thanks-to: Cyril
Brulebois <kibi> on #debian-devel Thanks-to: <dwfreed> on
#debian-devel
2019-02-03 Paul Wise <pabs3@bonedaddy.net>
* data/filters.svg: Fix syntax error in SVG filter colour matrix Decimal values need a digit after the period. Reported-by: <dwfreed> on #debian-devel Suggested-by: Chromium
Fixes-error: <feColorMatrix> attribute values: Expected number, "0.
0.51 0.1 …". Suggested-by: Firefox Fixes-error: Unexpected
value 0. 0.51 0.1 … parsing values attribute.
2018-10-22 Paul Wise <pabs3@bonedaddy.net>
* data/mokomaze.desktop: Add marble to the FreeDesktop menu keywords
2018-10-22 Paul Wise <pabs3@bonedaddy.net>
* data/mokomaze.desktop: Add some keywords to the FreeDesktop menu
file Suggested-by: lintian
2018-10-22 Paul Wise <pabs3@bonedaddy.net>
* src/gui/gui_settings.cpp: Catch std::exception by reference
instead of by value Suggested-by: gcc Suggestion: warning: catching polymorphic type
‘class std::exception’ by value [-Wcatch-value=]
2018-10-19 Paul Wise <pabs3@bonedaddy.net>
* configure.ac, src/gui/gui_settings.cpp: Update links from http to
https where possible.
2018-06-23 Paul Wise <pabs3@bonedaddy.net>
* src/main.c, src/mainwindow.c: Remove use of deprecated headers and
functions Suggested-by: gcc main.c: In function ‘main’: main.c:35:5:
warning: ‘g_type_init’ is deprecated [-Wdeprecated-declarations]
g_type_init(); ^~~~~~~~~~~ In file included from mainwindow.c:27:0:
/usr/include/librsvg-2.0/librsvg/rsvg-cairo.h:27:2: warning:
#warning is a GCC extension #warning "Including
<librsvg/rsvg-cairo.h> directly is deprecated." ^~~~~~~ mainwindow.c: In function ‘LoadSvg’: mainwindow.c:129:5:
warning: ‘rsvg_init’ is deprecated: Use 'g_type_init' instead
[-Wdeprecated-declarations] rsvg_init(); ^~~~~~~~~ mainwindow.c:245:5: warning: ‘rsvg_term’ is deprecated
[-Wdeprecated-declarations] rsvg_term(); ^~~~~~~~~
2018-06-23 Paul Wise <pabs3@bonedaddy.net>
* src/mazecore/mazecore.c: Fix typo Suggested-by: codespell
2015-11-12 Paul Wise <pabs3@bonedaddy.net>
* configure.ac: Correct the help text for the --with-font-name build
option.
2015-11-12 Paul Wise <pabs3@bonedaddy.net>
* src/mainwindow.c: Also allow pause via keyboard events This forward-ports commit 9f1e99c427a86b02bfb6d7d941e038625b463440.
2015-11-12 Paul Wise <pabs3@bonedaddy.net>
* README.install: Update install instructions for new font
configuration setup.
2015-11-12 Paul Wise <pabs3@bonedaddy.net>
* src/dirs.h: Drop unused MFONTDIR #define
2015-11-12 Paul Wise <pabs3@bonedaddy.net>
* .gitignore, ChangeLog, Makefile.am: Remove empty ChangeLog file
and generate it at dist time
2015-11-12 Paul Wise <pabs3@bonedaddy.net>
* src/gui/gui_settings.cpp: Split multi-line strings after \n for
readability. Suggested-by: codespell --quiet-level=3
./src/gui/gui_settings.cpp:715: nto ==> not | disable due to \n
./src/gui/gui_settings.cpp:732: nto ==> not | disable due to \n
./src/gui/gui_settings.cpp:744: nto ==> not | disable due to \n
./src/gui/gui_settings.cpp:754: nto ==> not | disable due to \n
./src/gui/gui_settings.cpp:791: nto ==> not | disable due to \n
2015-11-12 Paul Wise <pabs3@bonedaddy.net>
* NEWS, src/paramsloader.c: Fix a couple of typos Suggested-by: codespell --quiet-level=3 ./NEWS:36: compatability
==> compatibility ./src/paramsloader.c:603: sucessfully ==>
successfully
2014-08-06 Paul Wise <pabs3@bonedaddy.net>
* configure.ac, src/Makefile.am, src/fonts.h: Add better build-time
flexibility in font finding Signed-off-by: ANT <ant007h@gmail.com>
2014-08-06 Paul Wise <pabs3@bonedaddy.net>
* COPYING, data/COPYING.Oxygen, src/dirs.h, src/fonts.h,
src/gui/gui_font.cpp, src/gui/gui_font.h, src/gui/gui_msgbox.cpp,
src/gui/gui_msgbox.h, src/gui/gui_settings.cpp,
src/gui/gui_settings.h, src/input/input.h, src/input/input_accel.c,
src/input/input_accel.h, src/input/input_calibration.c,
src/input/input_calibration.h, src/input/input_dummy.c,
src/input/input_dummy.h, src/input/input_joystick.c,
src/input/input_joystick.h, src/input/input_joystick_sdl.c,
src/input/input_joystick_sdl.h, src/input/input_keyboard.c,
src/input/input_keyboard.h, src/input/inputtypes.h, src/logging.c,
src/logging.h, src/main.c, src/mainwindow.c, src/mainwindow.h,
src/matrix.c, src/matrix.h, src/mazecore/mazecore.c,
src/mazecore/mazecore.h, src/mazecore/mazehelpers.c,
src/mazecore/mazehelpers.h, src/mazecore/mazetypes.h,
src/paramsloader.c, src/paramsloader.h, src/render.c, src/render.h,
src/types.h, src/vibro/vibro.h, src/vibro/vibro_dummy.c,
src/vibro/vibro_dummy.h, src/vibro/vibro_freerunner.c,
src/vibro/vibro_freerunner.h, src/vibro/vibrotypes.h: Update links
from http to https where possible.
2014-05-28 Paul Wise <pabs3@bonedaddy.net>
* configure.ac, src/Makefile.am: Explicitly link against libpng
since it is used
2014-05-28 Paul Wise <pabs3@bonedaddy.net>
* configure.ac: Use subdir-objects automake option to avoid future
incompatibilities.
2014-05-28 Paul Wise <pabs3@bonedaddy.net>
* .gitignore: Ignore some more autotools files
2013-07-13 Paul Wise <pabs3@bonedaddy.net>
* .gitignore: Ignore the generated SVG files.
2013-07-13 Paul Wise <pabs3@bonedaddy.net>
* data/Makefile.am: Correct building the SVG files
2012-09-21 ANT <ant007h@gmail.com>
* configure.ac, data/Makefile.am, data/{mokomaze.sed => ball.sed},
data/buttons.xsl, data/clean.xsl, data/close-main.svg,
data/logo.xsl, data/mokomaze-main.svg, data/next-grey.svg,
data/next-light.svg, data/next-main.svg, data/prev-grey.svg,
data/prev-light.svg, data/prev-main.svg, data/settings-grey.svg,
data/settings-light.svg, data/settings-main.svg: Generate standalone
svg files (without xlinks)
2012-07-30 ANT <ant007h@gmail.com>
* data/config.json, src/Makefile.am, src/gui/gui_settings.cpp,
src/input/input.h, src/input/input_accel.c,
src/input/input_dummy.c, src/input/input_joystick.c,
src/input/input_joystick_sdl.c, src/input/input_joystick_sdl.h,
src/input/input_keyboard.c, src/input/inputtypes.h, src/main.c,
src/mainwindow.c, src/paramsloader.c, src/types.h: Added support for
SDL joystick
2012-01-09 ANT <ant007h@gmail.com>
* README, src/paramsloader.c: Format README and --help output
2012-01-08 ANT <ant007h@gmail.com>
* data/config.json: New default values in config
2012-01-08 ANT <ant007h@gmail.com>
* src/gui/gui_settings.cpp: Fix focushandler exception "No
focushandler set (did you add the widget to the gui?)."
http://code.google.com/p/guichan/issues/detail?id=59
2012-01-08 ANT <ant007h@gmail.com>
* src/gui/gui_settings.cpp: Fix grammar
2012-01-08 ANT <ant007h@gmail.com>
* src/gui/gui_settings.cpp: Load actual settings into UI window
every time it appears
2012-01-08 ANT <ant007h@gmail.com>
* src/gui/gui_settings.cpp: Adjust vibration preset for Freerunner
2012-01-08 ANT <ant007h@gmail.com>
* data/config.json, src/gui/gui_settings.cpp, src/mainwindow.c,
src/mazecore/mazecore.c, src/paramsloader.c, src/types.h: More
vibration settings
2012-01-08 ANT <ant007h@gmail.com>
* src/mainwindow.c, src/mazecore/mazecore.c,
src/vibro/vibro_dummy.c, src/vibro/vibro_freerunner.c,
src/vibro/vibrotypes.h: Better vibration level calculation
2012-01-08 ANT <ant007h@gmail.com>
* data/config.json, src/paramsloader.c: Check compatibility of
config file format
2012-01-08 ANT <ant007h@gmail.com>
* src/input/input_accel.c, src/input/input_joystick.c: Reopen input
device on reading error
2012-01-08 ANT <ant007h@gmail.com>
* src/gui/gui_settings.cpp: Improve input and video settings tabs.
Add presets for Freerunner and Pandora.
2012-01-05 ANT <ant007h@gmail.com>
* src/mainwindow.c: Fix compilation
2012-01-05 ANT <ant007h@gmail.com>
* src/mainwindow.c, src/paramsloader.c, src/paramsloader.h:
Introduce caching of rasterized vector graphics + add loading screen
2012-01-04 ANT <ant007h@gmail.com>
* src/Makefile.am, src/misc/IMG_SavePNG.c, src/misc/IMG_SavePNG.h:
Import of IMG_SavePNG code from Enigma 1.01
http://www.nongnu.org/enigma/
2012-01-04 ANT <ant007h@gmail.com>
* data/config.json, src/gui/gui_settings.cpp,
src/input/input_calibration.c, src/input/input_calibration.h,
src/input/input_keyboard.c, src/input/input_keyboard.h,
src/mainwindow.c, src/mazecore/mazecore.c, src/mazecore/mazecore.h,
src/paramsloader.c, src/types.h: Input device sensitivity and ball
speed control
2012-01-02 ANT <ant007h@gmail.com>
* src/input/input_accel.c: Code formatting
2012-01-02 ANT <ant007h@gmail.com>
* src/paramsloader.c: json-glib: doubles serialization might not
work on some Ubuntu releases
https://bugs.launchpad.net/ubuntu/+source/json-glib/+bug/756426
2012-01-02 ANT <ant007h@gmail.com>
* src/gui/gui_font.cpp, src/gui/gui_font.h: Improve font class + fix
segfault
2012-01-02 ANT <ant007h@gmail.com>
* README, src/dirs.h, src/fonts.h, src/gui/gui_msgbox.cpp,
src/gui/gui_msgbox.h, src/gui/gui_settings.cpp,
src/gui/gui_settings.h, src/input/input.h, src/input/input_accel.c,
src/input/input_accel.h, src/input/input_calibration.c,
src/input/input_calibration.h, src/input/input_dummy.c,
src/input/input_dummy.h, src/input/input_joystick.c,
src/input/input_joystick.h, src/input/input_keyboard.c,
src/input/input_keyboard.h, src/input/inputtypes.h, src/logging.c,
src/logging.h, src/main.c, src/mainwindow.c, src/mainwindow.h,
src/matrix.c, src/matrix.h, src/mazecore/mazecore.c,
src/mazecore/mazecore.h, src/mazecore/mazehelpers.c,
src/mazecore/mazehelpers.h, src/mazecore/mazetypes.h,
src/paramsloader.c, src/paramsloader.h, src/render.c, src/render.h,
src/types.h, src/vibro/vibro.h, src/vibro/vibro_dummy.c,
src/vibro/vibro_dummy.h, src/vibro/vibro_freerunner.c,
src/vibro/vibro_freerunner.h, src/vibro/vibrotypes.h: Update
copyright info
2012-01-02 ANT <ant007h@gmail.com>
* data/config.json, src/Makefile.am, src/gui/gui_settings.cpp,
src/input/input.h, src/input/input_accel.c,
src/input/input_accel.h, src/input/input_joystick.c,
src/mainwindow.c, src/paramsloader.c, src/types.h: Added support for
accelerometers
2012-01-01 Paul Wise <pabs3@bonedaddy.net>
* src/paramsloader.c: Support writing G_TYPE_INT64 values to json
2012-01-01 Paul Wise <pabs3@bonedaddy.net>
* src/mainwindow.c: Remove an unused variable.
2012-01-01 Paul Wise <pabs3@bonedaddy.net>
* configure.ac: Disable AM_MAINTAINER_MODE by default since it has
some bad effects.
2012-01-01 Paul Wise <pabs3@bonedaddy.net>
* Makefile.am, data/Makefile.am, src/Makefile.am: Wrap the automake
Makefile.am files for diff readability.
2011-12-31 ANT <ant007h@gmail.com>
* src/paramsloader.c: Support reading G_TYPE_INT64 values from json
2011-12-31 ANT <ant007h@gmail.com>
* src/Makefile.am, src/mazecore/mazehelpers.c,
src/mazecore/mazehelpers.h: Fix compilation with -O0
2011-12-30 ANT <ant007h@gmail.com>
* configure.ac: Support old default location for the liberation font
2011-12-30 Paul Wise <pabs3@bonedaddy.net>
* configure.ac: Use the new default location for the liberation font
2011-12-30 Paul Wise <pabs3@bonedaddy.net>
* data/desk.svg, data/settings.svg, data/wall.svg: Fix some
incorrect permissions on data files.
2011-12-30 Paul Wise <pabs3@bonedaddy.net>
* src/paramsloader.c: Fix build failure due to use of incomplete
type.
2011-12-30 ANT <ant007h@gmail.com>
* src/gui/gui_settings.cpp: Restore default config values
2011-12-30 ANT <ant007h@gmail.com>
* src/mainwindow.c, src/paramsloader.c: Initialize variables
2011-12-29 ANT <ant007h@gmail.com>
* NEWS, README, configure.ac, data/Makefile.am, data/config.json,
data/desk.svg, data/main.levelpack.json, data/mokomaze.desktop,
data/reset.svg, data/{reset-grey.svg => settings-grey.svg},
data/{reset-light.svg => settings-light.svg}, data/{reset-main.svg
=> settings-main.svg}, data/settings.svg, data/wall.svg,
src/Makefile.am, src/accelerometers.c, src/dirs.h,
src/{accelerometers.h => fonts.h}, src/gui/gui_font.cpp,
src/gui/gui_font.h, src/gui/gui_msgbox.cpp, src/gui/gui_msgbox.h,
src/gui/gui_settings.cpp, src/gui/gui_settings.h,
src/input/input.h, src/input/input_calibration.c,
src/input/input_calibration.h, src/input/input_dummy.c,
src/{vibro.h => input/input_dummy.h}, src/input/input_joystick.c,
src/input/input_joystick.h, src/input/input_keyboard.c,
src/input/input_keyboard.h, src/input/inputtypes.h, src/json.c,
src/json.h, src/logging.c, src/logging.h, src/main.c,
src/mainwindow.c, src/mainwindow.h, src/matrix.c, src/matrix.h,
src/mazecore/mazecore.c, src/mazecore/mazecore.h,
src/mazecore/mazehelpers.h, src/mazecore/mazetypes.h,
src/paramsloader.c, src/paramsloader.h, src/render.c, src/render.h,
src/types.h, src/vibro/vibro.h, src/vibro/vibro_dummy.c,
src/vibro/vibro_dummy.h, src/{vibro.c => vibro/vibro_freerunner.c},
src/vibro/vibro_freerunner.h, src/vibro/vibrotypes.h: Import of
Mokomaze 0.7.0 * 100% vector graphics * 16/32 bit color depth support * Game board resize and rotation * Screen scrolling mode * Game settings GUI * New JSON parser * New command line parser
2011-01-14 ANT <ant007h@gmail.com>
* src/json.c: Prevent the JSON parsing code from overwriting 1 byte
with zero.
2011-01-14 ANT <ant007h@gmail.com>
* src/paramsloader.c: Don't leak file descriptors when failing to
load JSON files.
2011-01-14 ANT <ant007h@gmail.com>
* src/Makefile.am: Link against libm since we use asin()
2010-11-21 ANT <ant007h@gmail.com>
* data/main.levelpack.json: Levelpack updated: 58 levels now
2010-11-21 ANT <ant007h@gmail.com>
* AUTHORS: AUTHORS updated
2010-11-20 Paul Wise <pabs3@bonedaddy.net>
* .gitignore, configure.ac, data/COPYING.Neverball,
data/COPYING.Oxygen, data/Makefile.am, data/background.sed,
data/close-main.svg, data/close.svg, data/filters.svg,
data/kde.svg, data/mokomaze-main.svg, data/mokomaze.sed,
data/neverlogos.svg, data/next-grey.svg, data/next-light.svg,
data/next-main.svg, data/next.svg, data/openmoko.svg,
data/prev-grey.svg, data/prev-light.svg, data/prev-main.svg,
data/prev.svg, data/reset-grey.svg, data/reset-light.svg,
data/reset-main.svg, data/reset.svg: Build all the images from a set
of SVG files. The SVG files are split up so that there is no shape duplication. Use rsvg-convert since inkscape is fat and slow and doesn't seem to
support filter chaining in the way that we need it. Also include copyright, license and source code in SVG format for
the KDE and Neverball logos. Pre-process the KDE and Neverball logos before including them in the
icons so that we can swap them out or change effects more easily. Signed-off-by: ANT <ant007h@gmail.com>
2010-11-17 ANT <ant007h@gmail.com>
* README: README - fix typo
2010-11-17 ANT <ant007h@gmail.com>
* README: Menu icons replaced with the free ones
2010-11-06 ANT <ant007h@gmail.com>
* src/mainwindow.c: Pause the game when the window looses focus
2010-11-06 ANT <ant007h@gmail.com>
* src/mainwindow.c: Fix walls' shadows intensity inversion bug
2010-11-06 ANT <ant007h@gmail.com>
* src/Makefile.am: Include logging.c and logging.h into Makefile.am
2010-11-06 ANT <ant007h@gmail.com>
* src/accelerometers.c, src/main.c, src/mainwindow.c,
src/paramsloader.c, src/vibro.c: Use new logging functions
2010-11-06 ANT <ant007h@gmail.com>
* src/logging.c, src/logging.h: Auto-format logging code
2010-11-06 ANT <ant007h@gmail.com>
* src/logging.c, src/logging.h: Logging functions simplified
2010-11-05 ANT <ant007h@gmail.com>
* src/mainwindow.c: Fix regression appeared in "Fix some compiler
warnings" commit
2010-11-05 ANT <ant007h@gmail.com>
* src/accelerometers.c, src/accelerometers.h, src/logging.c,
src/main.c, src/mainwindow.c, src/mainwindow.h, src/paramsloader.c,
src/paramsloader.h, src/types.h, src/vibro.c, src/vibro.h: Remove
unused includes
2010-01-03 Peter Tworek <tworaz666@gmail.com>
* src/logging.c, src/logging.h: Add new logging facilities. Signed-off-by: ANT <ant007h@gmail.com>
2010-11-05 ANT <ant007h@gmail.com>
* README, README.install, doc/mokomaze.6: Documentation - minor
updates
2010-10-17 Paul Wise <pabs3@bonedaddy.net>
* README, data/main.levelpack.json: Fix permissions on the README
and levelpack Signed-off-by: ANT <ant007h@gmail.com>
2010-10-17 Paul Wise <pabs3@bonedaddy.net>
* src/vibro.c: Fix vibration with SHR's Linux 2.6.32.23 kernel Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* Makefile.am, data/Makefile.am: Clean some more files in
maintainer-clean Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* README, README.install: Split build and installation instructions
into README.install. This is so that binary distributions do not ship useless info. Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* README: Use unix line endings in the README Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* .gitignore: Ignore files generated by the build and autotools. Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* Makefile.am, configure.ac, doc/Makefile.am, doc/mokomaze.6: Add
the manual page from Debian Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* configure.ac: Correct the version number. Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* src/accelerometers.c, src/mainwindow.c, src/vibro.c: Fix some
compiler warnings. Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* configure.ac, src/Makefile.am: Update to more recent autoconf
macros Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* configure.ac: Drop unused libtool autoconf macro Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* Makefile.am, configure.ac, po/POTFILES.in: Drop unused
internationalisation infrastructure Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* data/mokomaze.desktop: Drop obsolete and wrong fields from
FreeDesktop Menu file. Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* src/Makefile.am: Fix make distcheck by including the headers in
the tarball. Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* autogen.sh: Add an autogen.sh so people know what to do after
checkout Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* ChangeLog, NEWS: Name the NEWS file correctly according to The GNU
Coding Standards Signed-off-by: ANT <ant007h@gmail.com>
2010-10-16 Paul Wise <pabs3@bonedaddy.net>
* INSTALL, Makefile.in, aclocal.m4, config.guess, config.h.in,
config.sub, configure, data/Makefile.in, depcomp, install-sh,
intltool-extract.in, intltool-merge.in, intltool-update.in,
ltmain.sh, missing, mkinstalldirs, po/Makefile.in.in,
src/Makefile.in: Remove generated/copied files from version control. Signed-off-by: ANT <ant007h@gmail.com>
2009-07-26 ANT <ant007h@gmail.com>
* data/main.levelpack.json: Levelpack updated: 48 levels now
2009-07-25 ANT <ant007h@gmail.com>
* ChangeLog: Version changed to 0.5.5
2009-07-25 ANT <ant007h@gmail.com>
* data/main.levelpack.json: New levels in levelpack
2009-07-25 ANT <ant007h@gmail.com>
* src/mainwindow.c: Added "pass-through-checkpoints" game mode
2009-07-25 ANT <ant007h@gmail.com>
* src/vibro.c: [vibro.c] Reading vibration interval from settings
2009-07-25 ANT <ant007h@gmail.com>
* data/config.json, src/paramsloader.c, src/paramsloader.h,
src/types.h: Modification of config and levelpack files structure
2009-07-25 ANT <ant007h@gmail.com>
* src/accelerometers.c: Bounding of acceleration values
2009-07-25 ANT <ant007h@gmail.com>
* Initial import of Mokomaze 0.5.1
|