Skip to content

Commit b82dbf6

Browse files
author
haghish
committed
1.3.2
1 parent 378c8ee commit b82dbf6

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

github.ado

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*** DO NOT EDIT THIS LINE -----------------------------------------------------
2-
Version: 1.3.1
2+
Version: 1.3.2
33
Title: github
44
Description: search, install, and uninstall Stata packages with a particular
55
version (release) as well as their dependencies from
@@ -75,10 +75,9 @@ searching for a keyword. The table shows the options accordingly:
7575
{synopt:{opt v:ersion(str)}}specifies a particular version (release tags) for
7676
installing a new repository{p_end}
7777
{synopt:{opt force}}specifies that the downloaded files be installed even if the
78-
__packagename.pkg__ and __Stata.toc__ files are missing. when searching for
79-
repositories on github, packages that lack the __pkg__ and __toc__ files appear
80-
as "(__force__)" in the result table, which indicates they are installed with
81-
the __force__ option. {p_end}
78+
__packagename.pkg__ and __Stata.toc__ files are missing. Use this option
79+
wisely because by forcing the installation, you are installing a software that
80+
is not prepared for installation. {p_end}
8281
8382
{syntab:Search Options}
8483
{synopt:{opt language(str)}}specifies the programming language of the repository.
@@ -250,7 +249,7 @@ prog define github
250249
// List
251250
// ---------
252251
else if "`1'" == "list" {
253-
githublist `2' , language(`language') reference(`reference') ///
252+
githublist `2' , language(`language') ///
254253
save(`save') created(`created') pushed(`pushed') `debug' `append' ///
255254
`replace'
256255
exit

github.sthlp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{smcl}
2-
{right:version 1.3.1}
2+
{right:version 1.3.2}
33
{title:Title}
44

55
{phang}
@@ -77,10 +77,9 @@ searching for a keyword. The table shows the options accordingly:
7777
{synopt:{opt v:ersion(str)}}specifies a particular version (release tags) for
7878
installing a new repository{p_end}
7979
{synopt:{opt force}}specifies that the downloaded files be installed even if the
80-
{bf:packagename.pkg} and {bf:Stata.toc} files are missing. when searching for
81-
repositories on github, packages that lack the {bf:pkg} and {bf:toc} files appear
82-
as "({it:_force_})" in the result table, which indicates they are installed with
83-
the {bf:force} option. {p_end}
80+
{bf:packagename.pkg} and {bf:Stata.toc} files are missing. Use this option
81+
wisely because by forcing the installation, you are installing a software that
82+
is not prepared for installation. {p_end}
8483

8584
{syntab:Search Options}
8685
{synopt:{opt language(str)}}specifies the programming language of the repository.

githublist.ado

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
prog githublist
33

44
syntax [anything] [, language(str) save(str) in(str) all created(str) ///
5-
pushed(str) duration(numlist max=1) replace append quiet]
5+
pushed(str) duration(numlist max=1) replace append quiet] reference(str)
66

77
// Packages before 2012
88
// ======================================================================

0 commit comments

Comments
 (0)