Commit Graph

195 Commits

Author SHA1 Message Date
Iristyle
05736fbe70 chore(EthanBrown.GitAliases): release 0.0.3 2013-04-03 12:48:03 -04:00
Iristyle
a051b2fb7b feat(EthanBrown.GitAliases): update branch
- Verbose switch adds hashes / commit name
 - Add branches as another alias for bra
2013-04-03 12:46:09 -04:00
Iristyle
549086e695 fix(ChromeDevExtensions): nuspec filename 2013-04-03 12:41:32 -04:00
Iristyle
b308f10548 chore(ChromeDevExtensions): release 0.0.2 2013-04-03 12:41:31 -04:00
Iristyle
d5b8e3f652 chore(ChromeCanaryDevExtensions): release 0.0.2 2013-04-03 12:41:31 -04:00
Iristyle
0e6372e97d feat(chrome extensions: JS Runtime, PrettyPrint
- Update README
 - Keep an eye on, but don't install CSS Shack / JetBrains IDE
2013-04-03 12:41:30 -04:00
Iristyle
73c51c0150 chore(GoogleChrome.Dev): release 27.0.1453.12 2013-04-03 12:28:56 -04:00
Iristyle
22b192fbaa chore(GoogleChrome.Canary): publish 28.0.1461.0 2013-04-03 12:28:35 -04:00
Iristyle
8d03388413 fix(chrome installers): Check for existence
- Don't launch Chrome installers if they're already
    installed
 - Heuristic for Canary is a path check
 - Heuristic for dev channel is path check + reg key
2013-04-03 12:28:08 -04:00
Iristyle
2f854eaadf chore(SublimeText2.EditorPackages): release 0.0.5 2013-03-26 07:56:21 -04:00
Iristyle
812ee9b11c feat(EasyMotion): Super-fast keyboard based nav
- Change default settings to case-insensitive search
2013-03-26 07:55:56 -04:00
Iristyle
c123381530 chore(EthanBrown.SublimeText2.EditorPackages): release 0.0.4 2013-03-22 10:28:46 -04:00
Iristyle
5eda906d68 chore(EthanBrown.SublimeText2.GitPackages): release 0.0.3 2013-03-22 10:27:47 -04:00
Iristyle
07f9a14cb1 chore(EthanBrown.SublimeText2.UtilPackages): release 0.0.3 2013-03-22 10:26:58 -04:00
Iristyle
702a70ec1c chore(EthanBrown.SublimeText2.WebPackages): release 0.0.5 2013-03-22 10:26:01 -04:00
Iristyle
5c500f24ab fix(sublimehelpers): file / dir existence
- Ensure User direcotry exists in packages directory
 - Ensure 'Package Control.sublime-settings' exists
 - Ensure 'Preferences.sublime-settings' exists
2013-03-22 10:23:52 -04:00
Iristyle
5643c8d0db chore: EthanBrown.GitAliases 0.0.2 release 2013-03-18 21:34:40 -04:00
Iristyle
2cdd778834 feat(gitaliases): bra, filelog, lasttag, remotes 2013-03-18 21:27:01 -04:00
Iristyle
fcdbb2d7ba feat(gitaliases): Sniff out current user for standup 2013-03-18 21:24:33 -04:00
Iristyle
2a04044d07 EthanBrown.SublimeText2.WebPackages 0.0.4
- Add Http Requester
2013-03-17 16:01:08 -04:00
Iristyle
2dbf85a675 EthanBrown.SublimeText2.WebPackages to 0.0.3
- Copy CoffeeScript.sublime-settings to User packages directory
2013-03-15 09:23:42 -04:00
Iristyle
f6240d3ed9 EthanBrown.SublimeText2.EditorPackages to 0.0.3
- Don't trash RelatedFiles.sublime-settings on disk
 - Awaiting implementation of a per-project set of related files
  https://github.com/fabiokr/sublime-related-files/issues/6
2013-03-15 09:14:37 -04:00
Iristyle
0015d665bf EthanBrown.GitExtensionsConfiguration 0.0.1
- Standard GitExtensions configuration including:
   - SourceCodePro for diff font
   - Max 50 characters for first line of commit
   - Max 72 characters on subsequent lines
   - 2nd line of commit must be empty
   - Show repository status in browse dialog (# of changes in toolbar)
   - Show current working dir changes in revision graph
   - Use FileSystemWatcher to check if index is changed
   - Show stash count on status bar in browse window
2013-03-15 09:04:11 -04:00
Iristyle
032d197bf6 EthanBrown.SublimeText2.* bumped to 0.0.2
- Work-around weird Powershell issue when merging JSON
2013-03-13 10:04:55 -04:00
Iristyle
03ea687e3e FIX: Merge-JsonSimpleMap
- First time hash is undefined, copying it is not a good
    approach - instead, create a new empty hash and
    copy values in
2013-03-13 10:03:03 -04:00
Iristyle
e47b95dd33 EthanBrown.GitConfiguration to 0.0.2, added DiffMerge dep 2013-03-13 08:53:34 -04:00
Iristyle
28dafef924 EthanBrown.GitAliases
aliases = config --get-regexp alias
    amend = commit --amend
    bl = blame -w -M -C
    changed = status -sb
    f = !git ls-files | grep -i
    hist = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue) [%an]%Creset' --abbrev-commit --date=relative
    last = log -p --max-count=1 --word-diff
    pick = add -p
    stage = add
    standup = log --since yesterday --oneline --author Iristyle
    stats = diff --stat
    sync = ! git fetch upstream -v && git fetch origin -v && git checkout master && git merge upstream/master
    undo = reset head~
    unstage = reset HEAD
    wdiff = diff --word-diff
    who = shortlog -s -e --
2013-03-12 18:37:36 -04:00
Iristyle
3e9c281e7b EthanBrown.GitConfiguration
- A number of "standard" Git config options on Win
    core.autocrlf       true
    core.safecrlf       false
    rebase.autosquash   true
    help.format         html
    push.default        simple
    core.editor         Notepad++

    diff.tool           DiffMerge
    diff.guitool        DiffMerge
    merge.tool          DiffMerge
2013-03-12 18:05:22 -04:00
Iristyle
3d6bd3dbea VS2010 Shell (Integrated) Redistributable 10.0.30319.1 2013-03-12 07:26:35 -04:00
Ethan J. Brown
1c665758a4 FIX: JSON helper ConvertTo-DoubleEscapedQuotes
Can't taken in $Name from the pipeline dummy!
2013-03-08 13:53:27 -05:00
Iristyle
3f98133490 EthanBrown.SublimeText2.EditorPackages
- Sublime package featuring the best text editing packages
   - Abacus, Block Cursor Everywhere, Bracketeer, Bracket Highlighter,
      Clipboard Manager, ExportHtml, FileDiffs, LiveReload,
      Markdown Preview, Missing Palette Commands, Related Files,
      SmartMarkdown, Solarized Color Scheme, StringEncode, SublimeTODO,
      TrailingSpace
 - Also includes a custom keybinding package hosted on GitHub
 - Merges in customized settings for User Preferences
 - Waiting on RelatedFiles plugin update to finish AngularJS settings
2013-03-08 10:10:40 -05:00
Iristyle
90c2036390 EthanBrown.SublimeText2.GitPackages
- Sublime package featuring the best Git helpers
   - EditorConfig, Git, GitHubinator, Modific, SideBarGit,
      Github Gists
 - Also includes a custom keybinding package hosted on GitHub
 - Merges in customized settings for User Preferences
2013-03-07 22:15:14 -05:00
Iristyle
4801bdf0fb EthanBrown.SublimeText2.UtilPackages
- Sublime package featuring the best general utility, file manipulation,
   navigation, sidebar enhancements, themes, color schemes, etc
   - AdvancedNewFile, ConsoleExec, EncodingHelper, KeymapManager,
     MoveTab, Navigation History, Open Recent Files, OpenSearchResult,
     RecentActiveFiles, Search Anywhere, SideBarEnhancements,
     Sublime Files, Soda Theme
 - Also includes a custom keybinding package hosted on GitHub
 - Merges in customized settings for User Preferences
 - Fixed minor bug in JSON helpers when adding to a simple map
2013-03-07 21:43:17 -05:00
Iristyle
6f6ef5cb09 EthanBrown.SublimeText2.WebPackages
- Sublime package featuring the best web-oriented packages
   - AnguarlJS, AutoFileName, Chai, Emmet, CoffeeComplete Plus,
     Hayaku, jQuery, LESS, LiveReload, SublimeLinter (custom that
     features CoffeeLint support), Twitter Bootstrap Snippets
 - Also includes a custom keybinding package hosted on GitHub
 - Merges in customized settings for User Preferences
2013-03-07 21:18:40 -05:00
Iristyle
a96bf479f8 Helpers for merging JSON / PSCustomObject
- For instance, take a stock file and merge in a partial JSON file, filling
   in the differences
 - Handles merging arrays of strings, sorting and removing dupes
 - Handles merging named primitive values over
 - Handles merging together two simple key/value pair maps
 - Handles merging an array of simple key/value pair maps
 - Can convert ConvertTo-Json's hideous Unicode escaping to real chars
 - Provides a workaround for a PS3 bug where JSON strings cannot
   contain " characters
   https://connect.microsoft.com/PowerShell/feedback/details/735978/convertto-json-in-psv3-beta-does-not-support-values-containing-double-quotes
2013-03-07 20:43:18 -05:00
Iristyle
03d686432d Bumped SourceCodePro to 1.017
- Totally overhauled font install process since the previous version
 required lots of interaction / prompting to upgrade existing fonts
 AND had a clunky UI dialog when installing fonts for the first time
 - Leveraging Windows Powershell sample script that compiles C# on
 the fly to call Win32 APIs that deal with fonts
 - Elevate to admin to run the new stuff - no reboot required
2013-03-07 15:33:12 -05:00
Iristyle
dda4898b0d EthanBrown.ChromeDevExtensions 0.0.1
Includes

Batarang
Clear Cache
DevTools AutoSave
PageSpeed Insights
Simple REST Client
Speed Tracer
CoffeeConsole
YSlow

Does Not Include

CoffeeScript IDE - Requires login
PostMan - Requires login
LiveReload - Not necessary with grunt
Grunt DevTools - Evaluating
Tincr - Might be superceded by Chrome workspaces
2013-03-01 14:45:50 -05:00
Iristyle
4eeec18ce9 EthanBrown.ChromeCanaryDevExtensions 0.0.1
Includes

Batarang
Clear Cache
DevTools AutoSave
PageSpeed Insights
Simple REST Client
Speed Tracer
CoffeeConsole
YSlow

Does Not Include

CoffeeScript IDE - Requires login
PostMan - Requires login
LiveReload - Not necessary with grunt
Grunt DevTools - Evaluating
Tincr - Might be superceded by Chrome workspaces
2013-03-01 14:41:15 -05:00
Iristyle
7a84f6df89 Add ToolsRoot so Chocolatey_Bin_Root is \tools 2012-12-03 14:31:12 -05:00
Iristyle
ddbf24cbf7 Set OPENSSL_CONF variable to point to openssl.cfg 2012-11-27 23:09:20 -05:00
Iristyle
fc3c34104a CouchPotato is touchy about paths
Only add "" around a file if it has spaces
2012-11-04 18:16:53 -05:00
Iristyle
44f5b0d162 CouchPotato
Installs CouchPotato from source
- Registers as Windows Service
- Configures SABNzbd+
- Configures alternative post-processing script
2012-11-04 12:35:18 -05:00
Iristyle
d2519cc82c SickBeard warns about SABnzbd+ scripts, doesn't delete
Behavioral change since it's possible that these scripts are being
used by CouchPotato as well
2012-11-04 11:55:55 -05:00
Iristyle
fba8dcf8df CouchPotato alternate post-processing scripts
https://couchpota.to/forum/showthread.php?tid=343
2012-11-04 11:37:19 -05:00
Iristyle
df53bf35c1 Changed package name to SickBeard 2012-11-04 11:01:00 -05:00
Iristyle
45bbd1f522 Minor updates to Ini scripts
- Allow files ending in .conf in addition to .ini
- Space out values for readability in final output
2012-11-04 10:59:39 -05:00
Iristyle
e232bf45aa SABnzbd Upgraded to 0.7.5 2012-11-04 10:18:43 -05:00
Iristyle
8047727bed PyWin32 - Python Extensions for Windows Build 218 2012-11-03 20:28:56 -04:00
Iristyle
9bd5055f3a Updated ResourceKit 2003 tags
Fixed version to use year first
2012-11-02 14:21:32 -04:00
Iristyle
eebee0a022 HipChat 1.2.103402 (really 1.20120926103402) 2012-10-24 09:01:05 -04:00