Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Part keepr 559 #561

Merged
merged 4 commits into from
Jan 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## PartKeepr 0.77

This is mainly a bugfix release. Noteworthy bugfixes:

* The HTTP Status code is now shown in exception windows for easier debugging [#549](https://github.com/partkeepr/PartKeepr/issues/549)
* Obsolete database tables from 0.1.9 are now removed [#548](https://github.com/partkeepr/PartKeepr/issues/548)
* Fixed drag'n'drop of parts [#540](https://github.com/partkeepr/PartKeepr/issues/540)
* Initial stock level value is now correctly entered in the database [#534](https://github.com/partkeepr/PartKeepr/issues/534)
* The ubuntu font is now loaded via HTTPS [#520](https://github.com/partkeepr/PartKeepr/issues/520)
* Footprint images are now shown again [#518](https://github.com/partkeepr/PartKeepr/issues/518)

For a mostly complete list of bugfixes, please refer to [GitHub](https://github.com/partkeepr/PartKeepr/issues?q=milestone%3A0.77+is%3Aclosed)

## PartKeepr 0.76

Noteworthy new features and bugfixes:

* It is now possible to search for a manufacturer's part number [#489](https://github.com/partkeepr/PartKeepr/issues/489)
* Re-added "used in projects", footprint, storage location and category name as in PartKeepr 0.1.9 [#514](https://github.com/partkeepr/PartKeepr/issues/514)
* Added APC cache support
* Setup now prompts for the authentication method to use
* Icons are now displayed properly again in Firefox [#481](https://github.com/partkeepr/PartKeepr/issues/481)

For a mostly complete list of new features and bugfixes, please refer to [GitHub](https://github.com/partkeepr/PartKeepr/issues?q=milestone%3A0.76+is%3Aclosed)

## PartKeepr 0.75

Noteworthy new features:
Expand Down
2 changes: 2 additions & 0 deletions documentation/internals/NEW-RELEASE
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ The following steps describe how a new PartKeepr release is being built:

* Check if any unit tests have failed

* Edit CHANGELOG.md within the repository

* Create a new GIT tag using:

git tag -s <version>
Expand Down
2 changes: 1 addition & 1 deletion web/setup/js/PartKeeprSetup.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Ext.application({
database_name: "",
database_user: "",
database_password: "",
authentication_provider: "PartKeepr.Auth.WSSEAuthenticationProvider",
authentication_provider: "PartKeepr.Auth.HTTPBasicAuthenticationProvider",
locale: "en"
},
adminuser: {
Expand Down
9 changes: 5 additions & 4 deletions web/setup/js/wizard/BreadCrumbWizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,11 @@ Ext.define('Ext.ux.BreadCrumbWizard', {
layout: 'center',
style: 'background-color: white; padding: 5px;',
items: Ext.create('Ext.Img', {
height: 90,
width: 495,
src: 'images/partkeepr-setup.svg'
}),
height: 90,
width: 495,
src: 'images/partkeepr-setup.svg',
alt: 'PartKeepr'
}),
},
me.breadCrumbContainer,
me.cardContainer,
Expand Down