Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
Rosekey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
freelynetwork
Rosekey
Commits
6a45bb21
Unverified
Commit
6a45bb21
authored
6 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
#2668 の一部をRevert
parent
5d4e9aa9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/client/app/config.ts
+0
-2
0 additions, 2 deletions
src/client/app/config.ts
src/client/app/mios.ts
+2
-2
2 additions, 2 deletions
src/client/app/mios.ts
webpack.config.ts
+1
-3
1 addition, 3 deletions
webpack.config.ts
with
3 additions
and
7 deletions
src/client/app/config.ts
+
0
−
2
View file @
6a45bb21
...
...
@@ -5,7 +5,6 @@ declare const _COPYRIGHT_: string;
declare
const
_VERSION_
:
string
;
declare
const
_CODENAME_
:
string
;
declare
const
_ENV_
:
string
;
declare
const
_NAME_
:
string
;
const
address
=
new
URL
(
location
.
href
);
...
...
@@ -21,4 +20,3 @@ export const copyright = _COPYRIGHT_;
export
const
version
=
_VERSION_
;
export
const
codename
=
_CODENAME_
;
export
const
env
=
_ENV_
;
export
const
name
=
_NAME_
;
This diff is collapsed.
Click to expand it.
src/client/app/mios.ts
+
2
−
2
View file @
6a45bb21
...
...
@@ -3,7 +3,7 @@ import { EventEmitter } from 'eventemitter3';
import
*
as
uuid
from
'
uuid
'
;
import
initStore
from
'
./store
'
;
import
{
apiUrl
,
version
,
lang
,
name
}
from
'
./config
'
;
import
{
apiUrl
,
version
,
lang
}
from
'
./config
'
;
import
Progress
from
'
./common/scripts/loading
'
;
import
Connection
from
'
./common/scripts/streaming/stream
'
;
import
{
HomeStreamManager
}
from
'
./common/scripts/streaming/home
'
;
...
...
@@ -72,7 +72,7 @@ export default class MiOS extends EventEmitter {
};
public
get
instanceName
()
{
return
this
.
meta
?
this
.
meta
.
data
.
name
:
name
;
return
this
.
meta
?
this
.
meta
.
data
.
name
:
'
Misskey
'
;
}
private
isMetaFetching
=
false
;
...
...
This diff is collapsed.
Click to expand it.
webpack.config.ts
+
1
−
3
View file @
6a45bb21
...
...
@@ -22,7 +22,6 @@ const locales = require('./locales');
const
meta
=
require
(
'
./package.json
'
);
const
version
=
`
${
meta
.
clientVersion
}
-
${
rndstr
({
length
:
8
,
chars
:
'
0-9a-z
'
})}
`
;
const
codename
=
meta
.
codename
;
import
config
from
'
./src/config
'
;
declare
var
global
:
{
faReplacement
:
typeof
faReplacement
;
...
...
@@ -76,8 +75,7 @@ const consts = {
_CODENAME_
:
codename
,
_LANG_
:
'
%lang%
'
,
_LANGS_
:
Object
.
keys
(
locales
).
map
(
l
=>
[
l
,
locales
[
l
].
meta
.
lang
]),
_ENV_
:
process
.
env
.
NODE_ENV
,
_NAME_
:
config
.
name
_ENV_
:
process
.
env
.
NODE_ENV
};
const
_consts
:
{
[
key
:
string
]:
any
}
=
{};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment