Skip to content

Releases: billthefarmer/CustomCalendarView

Version 1.06

07 Feb 16:28
Compare
Choose a tag to compare

ic_launcher

  • Compress icons with zopflipng
  • Update build scripts

Version 1.05

05 Dec 13:16
Compare
Choose a tag to compare

ic_launcher

  • Updated swipe and button actions
allprojects {
  repositories {
    jcenter()
    maven { url "https://jitpack.io" }
  }
}

dependencies {
  compile 'com.github.billthefarmer:CustomCalendarView:v1.05'
}

Version 1.04

07 Jan 20:23
Compare
Choose a tag to compare

ic_launcher

  • Use current theme styles for calendar dialog
allprojects {
  repositories {
    jcenter()
    maven { url "https://jitpack.io" }
  }
}

dependencies {
  compile 'com.github.billthefarmer:CustomCalendarView:v1.04'
}

Version 1.03

27 Sep 12:50
Compare
Choose a tag to compare

ic_launcher

  • Add CustomCalendarDialog
    public CustomCalendarDialog(Context context,
                                OnDateSetListener listener,
                                int year, int month, int date)

    public CustomCalendarDialog(Context context, int themeResId, 
                                OnDateSetListener listener, 
                                int year, int month, int date)

    public interface OnDateSetListener
    {
        public abstract void onDateSet (CustomCalendarView view,
                                        int year, int month, int date);
    }

    // showCustomCalendar
    public void showCustomCalendarDialog(Calendar date)
    {
        CustomCalendarDialog dialog = new
            CustomCalendarDialog(this, this,
                                 date.get(Calendar.YEAR),
                                 date.get(Calendar.MONTH),
                                 date.get(Calendar.DATE));

        List<DayDecorator> decorators = new ArrayList<DayDecorator>();
        decorators.add(new EntryDecorator(getEntries()));
        CustomCalendarView calendarView = dialog.getCalendarView();
        calendarView.setDecorators(decorators);
        dialog.show();
    }
allprojects {
  repositories {
    jcenter()
    maven { url "https://jitpack.io" }
  }
}

dependencies {
  compile 'com.github.billthefarmer:CustomCalendarView:v1.03'
}

Version 1.02

07 Jul 09:02
Compare
Choose a tag to compare

ic_launcher

  • Added swipe up and down for previous, next year
allprojects {
  repositories {
    jcenter()
    maven { url "https://jitpack.io" }
  }
}

dependencies {
  compile 'com.github.billthefarmer:CustomCalendarView:v1.02'
}

Version 1.01

04 Jun 08:53
Compare
Choose a tag to compare

ic_launcher

  • Added swipe left and right for next, previous month
allprojects {
  repositories {
    jcenter()
    maven { url "https://jitpack.io" }
  }
}

dependencies {
  compile 'com.github.billthefarmer:CustomCalendarView:v1.01'
}

Version 1.0

26 May 13:18
Compare
Choose a tag to compare

First release - get from JitPack

allprojects {
  repositories {
    jcenter()
    maven { url "https://jitpack.io" }
  }
}

and:

dependencies {
  compile 'com.github.billthefarmer:CustomCalendarView:v1.0'
}