Skip to content

Commit

Permalink
v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
madskristensen committed Apr 5, 2016
1 parent af5ca5d commit 24044c3
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 11 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Expand Up @@ -7,7 +7,7 @@
- [ ] Light bulb in `packman.json`
- [ ] Visual indication that folder/file is from package
- [ ] Cross-platform command line interface
- [ ] List packages under the _Dependencies_ node in Solution Explorer
- [ ] List packages under the _Dependencies_ node in Solution Explorer\

Features that have a checkmark are complete and available for
download in the
Expand All @@ -18,6 +18,13 @@ download in the
These are the changes to each version that has been released
on the official Visual Studio extension gallery.

## 1.2
**2016-04-05**

- [x] Keyboard shortcut
- [x] Make CdnJS the default provider
- [x] Support fuzzy search with alias support

## 1.1
**2016-02-23**

Expand Down
24 changes: 15 additions & 9 deletions src/PackmanVsix/source.extension.cs
@@ -1,12 +1,18 @@
// ------------------------------------------------------------------------------
// <auto-generated>
// This file was generated by Extensibility Tools 2015 v1.7.158
// </auto-generated>
// ------------------------------------------------------------------------------
namespace PackmanVsix
{
static class Vsix
{
public const string Id = "ce753d0f-f511-4b2b-93de-5cc50145dca6";
public const string Name = "Client-Side Library Installer";
public const string Description = "A simple solution to installing JavaScript and CSS libraries into any project. It uses well established global content delivery networks that hosts thousands of the most popular libraries.";
public const string Version = "1.1";
public const string Author = "Mads Kristensen";
public const string Tags = "jsdelivr, cdn, packages, library, javascript, css";
}
static class Vsix
{
public const string Id = "ce753d0f-f511-4b2b-93de-5cc50145dca6";
public const string Name = "Client-Side Library Installer";
public const string Description = "A simple solution to installing JavaScript and CSS libraries into any project. It uses well established global content delivery networks that hosts thousands of the most popular libraries.";
public const string Language = "en-US";
public const string Version = "1.2";
public const string Author = "Mads Kristensen";
public const string Tags = "jsdelivr, cdn, packages, library, javascript, css";
}
}
Binary file modified src/PackmanVsix/source.extension.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/PackmanVsix/source.extension.vsixmanifest
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="ce753d0f-f511-4b2b-93de-5cc50145dca6" Version="1.1" Language="en-US" Publisher="Mads Kristensen" />
<Identity Id="ce753d0f-f511-4b2b-93de-5cc50145dca6" Version="1.2" Language="en-US" Publisher="Mads Kristensen" />
<DisplayName>Client-Side Library Installer</DisplayName>
<Description xml:space="preserve">A simple solution to installing JavaScript and CSS libraries into any project. It uses well established global content delivery networks that hosts thousands of the most popular libraries.</Description>
<MoreInfo>https://github.com/madskristensen/Packman</MoreInfo>
Expand Down

0 comments on commit 24044c3

Please sign in to comment.