Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
package_control_channel
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Gaurav Kukreja
package_control_channel
Commits
ac80f82f
Commit
ac80f82f
authored
Aug 12, 2013
by
Skullmonkey
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master'
parents
0d8d158e
0a78d959
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
33 additions
and
8 deletions
+33
-8
channel.json
channel.json
+0
-1
a.json
repository/a.json
+13
-2
c.json
repository/c.json
+1
-1
e.json
repository/e.json
+1
-1
t.json
repository/t.json
+11
-0
migrator.py
utils/migrator.py
+7
-3
No files found.
channel.json
View file @
ac80f82f
...
...
@@ -18,7 +18,6 @@
"https://raw.github.com/akalongman/sublimetext-stringutilities/master/packages.json"
,
"https://raw.github.com/amazedkoumei/SublimeKnifeSolo/master/packages.json"
,
"https://raw.github.com/Andr3as/Sublime-SurroundWith/master/packages.json"
,
"https://raw.github.com/angular-ui/AngularJS-sublime-package/master/packages.json"
,
"https://raw.github.com/aparajita/active4d-sublime/master/package_control.json"
,
"https://raw.github.com/apophys/sublime-packages/master/packages.json"
,
"https://raw.github.com/bits/ExpandSelectionToWhitespace-SublimeText/master/packages.json"
,
...
...
repository/a.json
View file @
ac80f82f
...
...
@@ -115,7 +115,7 @@
"details"
:
"https://github.com/randy3k/AlignTab"
,
"releases"
:
[
{
"sublime_text"
:
"
<3000
"
,
"sublime_text"
:
"
*
"
,
"details"
:
"https://github.com/randy3k/AlignTab/tree/master"
}
]
...
...
@@ -262,6 +262,17 @@
}
]
},
{
"name"
:
"AngularJS"
,
"details"
:
"https://github.com/angular-ui/AngularJS-sublime-package"
,
"labels"
:
[
"auto-complete"
,
"code navigation"
,
"snippets"
],
"releases"
:
[
{
"sublime_text"
:
"*"
,
"details"
:
"https://github.com/angular-ui/AngularJS-sublime-package/tags"
}
]
},
{
"name"
:
"AngularJS (CoffeeScript)"
,
"details"
:
"https://github.com/Iristyle/Sublime-AngularJS-Coffee-Completions"
,
...
...
@@ -659,7 +670,7 @@
"details"
:
"https://github.com/randy3k/AutoWrap"
,
"releases"
:
[
{
"sublime_text"
:
"
<3000
"
,
"sublime_text"
:
"
*
"
,
"details"
:
"https://github.com/randy3k/AutoWrap/tree/master"
}
]
...
...
repository/c.json
View file @
ac80f82f
...
...
@@ -167,7 +167,7 @@
"details"
:
"https://github.com/randy3k/ChangeList"
,
"releases"
:
[
{
"sublime_text"
:
"
<3000
"
,
"sublime_text"
:
"
*
"
,
"details"
:
"https://github.com/randy3k/ChangeList/tree/master"
}
],
...
...
repository/e.json
View file @
ac80f82f
...
...
@@ -219,7 +219,7 @@
"details"
:
"https://github.com/randy3k/Enhanced-R"
,
"releases"
:
[
{
"sublime_text"
:
"
<3000
"
,
"sublime_text"
:
"
*
"
,
"details"
:
"https://github.com/randy3k/Enhanced-R/tree/master"
}
],
...
...
repository/t.json
View file @
ac80f82f
...
...
@@ -195,6 +195,17 @@
"Theme - Soda Refined"
]
},
{
"name"
:
"Theme - Brackets"
,
"details"
:
"https://github.com/leszekr/Theme-Brackets"
,
"labels"
:
[
"theme"
],
"releases"
:
[
{
"sublime_text"
:
"<3000"
,
"details"
:
"https://github.com/leszekr/Theme-Brackets/tree/master"
}
]
},
{
"name"
:
"Theme - Centurion"
,
"details"
:
"https://github.com/allanhortle/Centurion"
,
...
...
utils/migrator.py
View file @
ac80f82f
...
...
@@ -732,6 +732,10 @@ with open(old_repositories_json_path, encoding='utf-8') as of:
repositories
.
append
(
repository
)
def
dump
(
data
,
f
):
json
.
dump
(
data
,
f
,
indent
=
"
\t
"
,
separators
=
(
','
,
': '
))
includes
=
[]
if
not
os
.
path
.
exists
(
new_repository_subfolder_path
):
...
...
@@ -750,17 +754,17 @@ for letter in names:
(
'packages'
,
[])
])
data
[
'packages'
]
=
sorted_packages
json
.
dump
(
data
,
f
,
indent
=
"
\t
"
)
dump
(
data
,
f
)
with
open
(
new_channel_path
,
'w'
,
encoding
=
'utf-8'
)
as
f
:
data
=
OrderedDict
()
data
[
'schema_version'
]
=
'2.0'
data
[
'repositories'
]
=
repositories
json
.
dump
(
data
,
f
,
indent
=
"
\t
"
)
dump
(
data
,
f
)
with
open
(
new_repository_path
,
'w'
,
encoding
=
'utf-8'
)
as
f
:
data
=
OrderedDict
()
data
[
'schema_version'
]
=
'2.0'
data
[
'packages'
]
=
[]
data
[
'includes'
]
=
sorted
(
includes
)
json
.
dump
(
data
,
f
,
indent
=
"
\t
"
)
dump
(
data
,
f
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment