about summary refs log tree commit diff stats
path: root/src/ui/statusbar.c
Commit message (Expand)AuthorAgeFilesLines
* Replaced colours with theme_item_tJames Booth2014-11-161-22/+34
* Show indicator when form has unsaved changesJames Booth2014-09-161-8/+1
* Added license exemption for OpenSSL to source headersJames Booth2014-08-241-0/+12
* Moved status_bar_resizeJames Booth2014-07-181-2/+3
* Tidied xmlconsoleJames Booth2014-04-151-8/+0
* Removed inputwin functions from ui.hJames Booth2014-04-071-0/+1
* Removed statusbar functions from ui.hJames Booth2014-04-071-42/+26
* Removed dirty flag from statusbarJames Booth2014-04-061-42/+53
* Inlined status_bar_update_timeJames Booth2014-04-061-21/+12
* Removed strcpy callsJames Booth2014-04-021-2/+1
* Renamed refresh functions to update_virtualJames Booth2014-04-011-2/+2
* Updated copyrightJames Booth2014-03-091-1/+1
* Use wnoutrefresh, pnoutrefresh and doupdateJames Booth2014-02-021-1/+1
* Bind remaining ui functions in main.cJames Booth2013-12-231-12/+17
* Dynamically load UI functions, fixed testsJames Booth2013-12-221-24/+36
* Show current window in status barJames Booth2013-10-021-0/+25
* Fixed ">" indicator when tidying windowsJames Booth2013-08-301-0/+14
* Refactored status bar indicatorsJames Booth2013-08-301-105/+60
* Handle ">" indicator when more than 10 wins openJames Booth2013-08-291-47/+167
* Refactor updating window statusesJames Booth2013-08-281-30/+18
* Fixed showing active console after login failJames Booth2013-08-281-0/+7
* Changes to status bar for unlimited windows - WIPJames Booth2013-08-281-35/+58
* small refactoring in statusbar.cDmitry Podgorny2013-08-241-5/+11
* removed sizeof(char)Dmitry Podgorny2013-08-031-1/+1
* Use werase() rather than wclear() to avoid screen flashJames Booth2013-04-221-4/+4
* Added config dir to sourceJames Booth2013-02-021-1/+1
* Tidied #include'sJames Booth2013-02-021-1/+1
* Added ui subdir to sourceJames Booth2013-02-021-0/+285
'>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 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606