14 Commits

Author SHA1 Message Date
Anavrins
e3a0222ef0 fix: up-to-date package on master branch 2021-02-15 21:31:43 -05:00
kepler155c
136adff7b1 Delete .opus_version 2020-04-30 21:56:26 -06:00
github-actions[bot]
60ab8377b5 Update version date 2020-05-01 03:39:14 +00:00
kepler155c
6a58db5e1c Delete .opus_version 2020-04-30 21:32:52 -06:00
github-actions[bot]
d692116631 Update version date 2020-05-01 03:27:43 +00:00
kepler155c
af1ef38147 Delete .opus_version 2020-04-30 20:24:23 -06:00
github-actions[bot]
58c3a1529f Update version date 2020-05-01 02:23:31 +00:00
kepler155c
6f87c5a8a7 Delete .opus_version 2020-04-30 20:08:20 -06:00
github-actions[bot]
7891f9863a Update version date 2020-05-01 01:09:13 +00:00
Anavrins
0fd349a487 Fix wrong branch name
this also fixes packages loading on master-1.8
2020-01-15 00:12:29 -05:00
kepler155c@gmail.com
cef5b21921 update to master 2019-11-10 18:52:28 -07:00
kepler155c@gmail.com
ee6af86da8 Merge branch 'develop-1.8' into master-1.8 2019-11-10 18:51:51 -07:00
kepler155c
16843bdb78 Update git.lua 2019-01-18 14:25:44 -05:00
kepler155c
f21ff42e44 Update README.md 2018-12-30 13:53:20 -05:00
4 changed files with 6 additions and 2 deletions

View File

@@ -15,4 +15,5 @@
## Install ## Install
``` ```
pastebin run uzghlbnc pastebin run uzghlbnc
reboot
``` ```

View File

@@ -19,7 +19,7 @@ local function run(file, ...)
end end
_G._syslog = function() end _G._syslog = function() end
_G.OPUS_BRANCH = 'develop-1.8' _G.OPUS_BRANCH = 'master-1.8'
-- Install require shim -- Install require shim
_G.requireInjector = run('sys/modules/opus/injector.lua') _G.requireInjector = run('sys/modules/opus/injector.lua')

View File

@@ -9,6 +9,9 @@ if _G._GIT_API_KEY then
TREE_URL = TREE_URL .. '&access_token=' .. _G._GIT_API_KEY TREE_URL = TREE_URL .. '&access_token=' .. _G._GIT_API_KEY
end end
local fs = _G.fs
local os = _G.os
function git.list(repository) function git.list(repository)
local t = Util.split(repository, '(.-)/') local t = Util.split(repository, '(.-)/')

View File

@@ -57,7 +57,7 @@ end
function Packages:downloadList() function Packages:downloadList()
local packages = { local packages = {
[ 'develop-1.8' ] = 'https://raw.githubusercontent.com/kepler155c/opus-apps/develop-1.8/packages.list', [ 'develop-1.8' ] = 'https://raw.githubusercontent.com/kepler155c/opus-apps/develop-1.8/packages.list',
[ 'master-1.8' ] = 'https://pastebin.com/raw/pexZpAxt', [ 'master-1.8' ] = 'https://raw.githubusercontent.com/kepler155c/opus-apps/master-1.8/packages.list',
} }
if packages[_G.OPUS_BRANCH] then if packages[_G.OPUS_BRANCH] then