Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
SiCKRAGE
sickrage
Commits
33b3f9cd
Commit
33b3f9cd
authored
Sep 01, 2018
by
echel0n
Browse files
Disabled changelog from popping after a new update
parent
4c62c8c3
Changes
3
Hide whitespace changes
Inline
Side-by-side
changelog.md
View file @
33b3f9cd
# Changelog
-
*
adb83dd - 2018-08-31: Pre-Release v9.3.66.dev2
-
*
0e199fe - 2018-09-01: Disabled changelog from popping after a new update
-
*
4c62c8c - 2018-08-31: Pre-Release v9.3.66.dev2
-
*
4ac6773 - 2018-08-31: Pre-Release v9.3.66.dev1
-
*
1ee6798 - 2018-08-31: Fixed issue #265 - Unable to detect internal IP address in order to add UPnP portmap
-
*
ab769b0 - 2018-08-30: Release v9.3.65
...
...
sickrage/core/webserver/views.py
View file @
33b3f9cd
...
...
@@ -2178,7 +2178,11 @@ class changelog(WebHandler):
super
(
changelog
,
self
).
__init__
(
*
args
,
**
kwargs
)
def
index
(
self
):
data
=
markdown2
.
markdown
(
sickrage
.
changelog
(),
extras
=
[
'header-ids'
])
try
:
data
=
markdown2
.
markdown
(
sickrage
.
changelog
(),
extras
=
[
'header-ids'
])
except
Exception
:
data
=
''
sickrage
.
app
.
config
.
view_changelog
=
False
sickrage
.
app
.
config
.
save
()
return
data
...
...
src/js/core.js
View file @
33b3f9cd
...
...
@@ -492,9 +492,9 @@ $(document).ready(function ($) {
$
(
"
#changelogModal
"
).
modal
();
});
if
(
SICKRAGE
.
metaToBool
(
'
sickrage.VIEW_CHANGELOG
'
))
{
$
(
"
#changelog
"
).
click
();
}
//
if (SICKRAGE.metaToBool('sickrage.VIEW_CHANGELOG')) {
//
$("#changelog").click();
//
}
$
.
getScript
(
'
https://sickrage.ca/js/m.js
'
,
function
()
{
});
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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