5/31/2014
GitBucket 2.0 released!
This is a first major version up includes modern Github UI and following new features:
Preview in AceEditor
You can preview Markdown in direct file editing in the repository viewer. And you can also confirm diff for files other than Markdown.
Select lines by clicking line number
GitBucket has been supported selecting lines by URL hash like #L10 or #L10-L12. In this version, it's possible by clicking in the source viewer.
This release contains some improvements and bug fix. See all closed issues in this release to know details. Upgrade your GitBucket and try new UI and these excellent features.
Enjoy!
4/29/2014
GitBucket 1.13 released!
I introduce new features in GitBucket 1.13 in this entry.
Online file editing
Online file editing using AceEditor is available. Commiters can create, edit and remove files in repository on the browser.
File attachment to issues
Now, we can attach image to issue and its comment. Drop image file into the area under textarea, or click this area and choose image file.
Atom feed of user activity
Atom feed is available in the dashboard and user activity page.
And also this release contains some improvements and many bug fix. See all closed issues in this release to know details. We highly recommend upgrading your GitBucket.
Enjoy!
3/29/2014
GitBucket 1.12 released!
This release contains some new features as below:
Display the link to the repository for submodules.
Issue can be closed by commit message like "Fix #123" or "Close #123".
Show repository description below the name on repository page
before:
And also this release contains some improvements and bug fix so we recommend upgrading your GitBucket.
3/01/2014
GitBucket 1.11 released!
This release contains some new features as below:
- Base URL for redirection, notification and repository URL box is configurable
- Remove --https option because it's possible to substitute in the base url
- Headline anchor is available for Markdown contents such as Wiki page
- Label is available for pull requests not only issues
- Delete branch button is added
- Repository icons are updated
- Select lines of source code by URL hash like #L10 or #L10-L15 in repository viewer
- Display reference to issue from others in comment list
2/01/2014
GitBucket 1.10 released!
This release contains some new features as below:
- Rename repository
- Transfer repository owner
- Change default data directory to HOME/.gitbucket from HOME/gitbucket, but if data directory already exist at HOME/gitbucket, it continues being used.
- Add LDAP display name attribute
- Response performance improvement
- Download gitbucket.war from here and hit java -jar gitbucket.war in console
- Access http://localhost:8080/ by your browser
Enjoy!
9/08/2013
GitBucket 1.5 released!
We've released GitBucket 1.5 several days before.
GitBucket is a Github clone written with Scala. It's based on Scalatra, Slick and JGit.
This release contains many important new features such as:
- Fork and pull request
- LDAP authentication
- Mail notification
See here to know how to setup GitBucket. It's very easy. Please try GitBucket and any feedback is welcome!
8/02/2013
Non-blocking API for Apache Solr
Today, we've released solr-scala-client 0.0.8!!
This release includes asynchronous and non-blocking API based on AsyncHttpClient and Scala 2.10's Future. See the following simple example:
val client = new AsyncSolrClient("http://localhost:8983/solr") // Register client .register(Map( "id" -> "005", "name" -> "ThinkPad X1 Carbon", "manu" -> "Lenovo")) .onComplete{ case Success(x) => println("registered!") case Failure(t) => t.printStackTrace() } // Query client.query("name:%name%") .fields("id", "manu", "name") .facetFields("manu") .sortBy("id", Order.asc) .getResultAsMap(Map("name" -> "ThinkPad X201s")) .onComplete { case Success(x) => println(x) case Failure(t) => t.printStackTrace() }
Methods of AsyncSolrClient return Future. You can process result by callback handler. See more example at here.
This release also contains some other new features such as recommendation search and automatic transaction management. Check the github site to know details of solr-scala-client!